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 e521dfb..fe70543 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": 1201, + "state": 1133, "sym": "end", "errorInfo": { "title": "Unclosed Span", @@ -10,7 +10,7 @@ "captures": [ { "column": 3, - "lrState": 67, + "lrState": 241, "row": 0, "size": 1, "sym": "[", @@ -30,7 +30,7 @@ { "column": 20, "row": 0, - "state": 2520, + "state": 2557, "sym": "class_specifier", "errorInfo": { "title": "Key-value Pair Before Class Specifier in Attribute", @@ -38,7 +38,7 @@ "captures": [ { "column": 10, - "lrState": 2632, + "lrState": 2618, "row": 0, "size": 3, "sym": "key_value_key", @@ -46,7 +46,7 @@ }, { "column": 14, - "lrState": 2473, + "lrState": 2464, "row": 0, "size": 5, "sym": "key_value_value_token1", @@ -67,7 +67,7 @@ { "column": 18, "row": 0, - "state": 1902, + "state": 1926, "sym": "_error", "errorInfo": { "title": "Mismatched Delimiter in Attribute Specifier", @@ -75,7 +75,7 @@ "captures": [ { "column": 17, - "lrState": 1902, + "lrState": 1926, "row": 0, "size": 1, "sym": "{", @@ -95,7 +95,7 @@ { "column": 3, "row": 0, - "state": 772, + "state": 932, "sym": "{", "errorInfo": { "title": "Missing Space After Div Fence", @@ -103,7 +103,7 @@ "captures": [ { "column": 0, - "lrState": 772, + "lrState": 932, "row": 0, "size": 3, "sym": "_fenced_div_start", @@ -111,7 +111,7 @@ }, { "column": 3, - "lrState": 582, + "lrState": 689, "row": 0, "size": 1, "sym": "{", diff --git a/crates/quarto-markdown-pandoc/src/readers/qmd_error_messages.rs b/crates/quarto-markdown-pandoc/src/readers/qmd_error_messages.rs index b00f031..f615abf 100644 --- a/crates/quarto-markdown-pandoc/src/readers/qmd_error_messages.rs +++ b/crates/quarto-markdown-pandoc/src/readers/qmd_error_messages.rs @@ -411,16 +411,18 @@ pub fn produce_error_message_json( })); } - // when erroring, produce the errors only for the - // first failing state. - return serde_json::to_string_pretty(&serde_json::json!({ - "tokens": tokens, - "errorStates": error_states, - })) - .unwrap() - .lines() - .map(|s| s.to_string()) - .collect(); + if error_states.len() > 0 { + // when erroring, produce the errors only for the + // first failing state. + return serde_json::to_string_pretty(&serde_json::json!({ + "tokens": tokens, + "errorStates": error_states, + })) + .unwrap() + .lines() + .map(|s| s.to_string()) + .collect(); + } } } vec![] diff --git a/crates/quarto-markdown-pandoc/src/utils/tree_sitter_log_observer.rs b/crates/quarto-markdown-pandoc/src/utils/tree_sitter_log_observer.rs index 0f63286..4a2bbc3 100644 --- a/crates/quarto-markdown-pandoc/src/utils/tree_sitter_log_observer.rs +++ b/crates/quarto-markdown-pandoc/src/utils/tree_sitter_log_observer.rs @@ -42,26 +42,27 @@ pub struct TreeSitterParseLog { #[derive(Debug)] pub struct TreeSitterProcessLog { pub found_accept: bool, + pub found_bad_message: bool, pub error_states: Vec, pub current_message: Option, } impl TreeSitterProcessLog { pub fn is_good(&self) -> bool { - self.found_accept && self.error_states.is_empty() + self.found_accept && self.error_states.is_empty() && !self.found_bad_message } } impl TreeSitterParseLog { pub fn is_good(&self) -> bool { - // for every process, there needs to be at least one version that reached an accept state - // with no error states + // for every process, there can't be any version that reached a state + // with error states for (_, process) in &self.processes { - if process.is_good() { - return true; + if !process.is_good() { + return false; } } - false + true } } @@ -165,6 +166,7 @@ impl TreeSitterLogObserver { let current_process = current_parse.processes.entry(version).or_insert_with(|| { TreeSitterProcessLog { found_accept: false, + found_bad_message: false, error_states: vec![], current_message: None, } @@ -179,7 +181,7 @@ impl TreeSitterLogObserver { }); current_parse.current_process = Some(version); } - "detect_error" | "skip_token" | "recover_to_previous" => { + "detect_error" => { let current_parse = self .parses .last_mut() @@ -245,6 +247,19 @@ impl TreeSitterLogObserver { sym: current_process_message.sym.clone(), // TODO would prefer not to clone here }) } + "skip_token" | "recover_to_previous" => { + // we want to mark these processes as bad, but we don't want to record the state here + // because we only care about states we find via "detect_error" + let current_parse = self + .parses + .last_mut() + .expect("No current parse to log process to"); + let current_process = current_parse + .processes + .get_mut(¤t_parse.current_process.expect("No current process")) + .expect("No current process message"); + current_process.found_bad_message = true; + } "lex_external" | "lex_internal" | "reduce" => {} "accept" => { let current_parse = self 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 ba11f9c..d57a3ff 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown-inline/grammar.js +++ b/crates/tree-sitter-qmd/tree-sitter-markdown-inline/grammar.js @@ -423,7 +423,7 @@ module.exports = grammar(add_inline_rules({ "--", "---", "...", - common.punctuation_without($, ['[', '{', '}', ']', "@", "_"]), + common.punctuation_without($, ['[', '{', '}', ']', "@", "_", "*"]), $._whitespace, )), _code_span_text_base: $ => prec.right(choice( @@ -461,12 +461,6 @@ function add_inline_rules(grammar) { alias($['_emphasis_underscore' + suffix_link], $.emphasis), alias($['_strong_emphasis_underscore' + suffix_link], $.strong_emphasis), ]; - if (delimiter !== "star") { - elements.push($._emphasis_open_star); - } - if (delimiter !== "underscore") { - elements.push($._emphasis_open_underscore); - } if (link) { elements = elements.concat([ $.inline_link, 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 37bfa65..d02b2f4 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 @@ -3936,10 +3936,6 @@ "type": "STRING", "value": ")" }, - { - "type": "STRING", - "value": "*" - }, { "type": "STRING", "value": "+" @@ -4237,14 +4233,6 @@ "named": true, "value": "strong_emphasis" }, - { - "type": "SYMBOL", - "name": "_emphasis_open_star" - }, - { - "type": "SYMBOL", - "name": "_emphasis_open_underscore" - }, { "type": "SYMBOL", "name": "inline_link" @@ -4301,10 +4289,6 @@ "named": true, "value": "strong_emphasis" }, - { - "type": "SYMBOL", - "name": "_emphasis_open_underscore" - }, { "type": "SYMBOL", "name": "inline_link" @@ -4361,10 +4345,6 @@ "named": true, "value": "strong_emphasis" }, - { - "type": "SYMBOL", - "name": "_emphasis_open_star" - }, { "type": "SYMBOL", "name": "inline_link" @@ -4421,14 +4401,6 @@ "named": true, "value": "strong_emphasis" }, - { - "type": "SYMBOL", - "name": "_emphasis_open_star" - }, - { - "type": "SYMBOL", - "name": "_emphasis_open_underscore" - }, { "type": "SYMBOL", "name": "inline_link" @@ -4632,14 +4604,6 @@ }, "named": true, "value": "strong_emphasis" - }, - { - "type": "SYMBOL", - "name": "_emphasis_open_star" - }, - { - "type": "SYMBOL", - "name": "_emphasis_open_underscore" } ] }, @@ -4692,10 +4656,6 @@ }, "named": true, "value": "strong_emphasis" - }, - { - "type": "SYMBOL", - "name": "_emphasis_open_underscore" } ] }, @@ -4748,10 +4708,6 @@ }, "named": true, "value": "strong_emphasis" - }, - { - "type": "SYMBOL", - "name": "_emphasis_open_star" } ] }, @@ -4804,14 +4760,6 @@ }, "named": true, "value": "strong_emphasis" - }, - { - "type": "SYMBOL", - "name": "_emphasis_open_star" - }, - { - "type": "SYMBOL", - "name": "_emphasis_open_underscore" } ] }, 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 d981417..cf49946 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 @@ -24,7 +24,7 @@ #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 25 +#define PRODUCTION_ID_COUNT 24 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -298,8 +298,8 @@ static const char * const ts_symbol_names[] = { [sym__trigger_error] = "_trigger_error", [sym__code_span_start] = "code_span_delimiter", [sym__code_span_close] = "code_span_delimiter", - [sym__emphasis_open_star] = "_emphasis_open_star", - [sym__emphasis_open_underscore] = "_emphasis_open_underscore", + [sym__emphasis_open_star] = "emphasis_delimiter", + [sym__emphasis_open_underscore] = "emphasis_delimiter", [sym__emphasis_close_star] = "emphasis_delimiter", [sym__emphasis_close_underscore] = "emphasis_delimiter", [sym__last_token_whitespace] = "_last_token_whitespace", @@ -492,9 +492,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__code_span_start] = sym__code_span_start, [sym__code_span_close] = sym__code_span_start, [sym__emphasis_open_star] = sym__emphasis_open_star, - [sym__emphasis_open_underscore] = sym__emphasis_open_underscore, - [sym__emphasis_close_star] = sym__emphasis_close_star, - [sym__emphasis_close_underscore] = sym__emphasis_close_star, + [sym__emphasis_open_underscore] = sym__emphasis_open_star, + [sym__emphasis_close_star] = sym__emphasis_open_star, + [sym__emphasis_close_underscore] = sym__emphasis_open_star, [sym__last_token_whitespace] = sym__last_token_whitespace, [sym__last_token_punctuation] = sym__last_token_punctuation, [sym__strikeout_open] = sym__strikeout_open, @@ -518,10 +518,10 @@ static const TSSymbol ts_symbol_map[] = { [sym__shortcode_open] = sym__shortcode_open_escaped, [sym__shortcode_close] = sym__shortcode_open_escaped, [sym__unclosed_span] = sym__unclosed_span, - [sym__strong_emphasis_open_star] = sym__emphasis_close_star, - [sym__strong_emphasis_close_star] = sym__emphasis_close_star, - [sym__strong_emphasis_open_underscore] = sym__emphasis_close_star, - [sym__strong_emphasis_close_underscore] = sym__emphasis_close_star, + [sym__strong_emphasis_open_star] = sym__emphasis_open_star, + [sym__strong_emphasis_close_star] = sym__emphasis_open_star, + [sym__strong_emphasis_open_underscore] = sym__emphasis_open_star, + [sym__strong_emphasis_close_underscore] = sym__emphasis_open_star, [sym_inline] = sym_inline, [sym_backslash_escape] = sym_backslash_escape, [sym_link_destination] = sym_link_destination, @@ -919,11 +919,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, }, [sym__emphasis_open_star] = { - .visible = false, + .visible = true, .named = true, }, [sym__emphasis_open_underscore] = { - .visible = false, + .visible = true, .named = true, }, [sym__emphasis_close_star] = { @@ -1392,61 +1392,58 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = alias_sym_code_content, }, [8] = { - [0] = sym__emphasis_close_star, - }, - [9] = { [1] = alias_sym_latex_content, }, - [10] = { + [9] = { [2] = sym__cite_author_in_text_with_open_bracket, }, - [11] = { + [10] = { [1] = alias_sym_citation_id_suppress_author, [2] = sym__cite_author_in_text_with_open_bracket, }, - [12] = { + [11] = { [1] = alias_sym_link_text, }, - [13] = { + [12] = { [2] = aux_sym_delete_token1, }, - [14] = { + [13] = { [2] = aux_sym_highlight_token1, }, - [15] = { + [14] = { [2] = aux_sym_edit_comment_token1, }, - [16] = { + [15] = { [1] = anon_sym_CARET_LBRACK, [2] = anon_sym_CARET_LBRACK, }, - [17] = { + [16] = { [2] = anon_sym_CARET_LBRACK, }, - [18] = { + [17] = { [1] = alias_sym_note_reference_id, [2] = anon_sym_LBRACK_CARET, }, - [19] = { + [18] = { [2] = alias_sym_image_description, }, - [20] = { + [19] = { [1] = anon_sym_CARET_LBRACK, [2] = anon_sym_CARET_LBRACK, [3] = anon_sym_CARET_LBRACK, }, - [21] = { + [20] = { [1] = anon_sym_CARET_LBRACK, [3] = anon_sym_CARET_LBRACK, }, - [22] = { + [21] = { [2] = anon_sym_CARET_LBRACK, [3] = anon_sym_CARET_LBRACK, }, - [23] = { + [22] = { [1] = alias_sym_language, }, - [24] = { + [23] = { [1] = anon_sym_CARET_LBRACK, [3] = anon_sym_CARET_LBRACK, [4] = anon_sym_CARET_LBRACK, @@ -1477,37 +1474,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, - [4] = 4, - [5] = 5, + [3] = 2, + [4] = 2, + [5] = 2, [6] = 2, - [7] = 3, - [8] = 4, - [9] = 5, + [7] = 2, + [8] = 2, + [9] = 2, [10] = 2, - [11] = 3, + [11] = 2, [12] = 2, - [13] = 3, - [14] = 2, - [15] = 3, - [16] = 2, - [17] = 3, - [18] = 2, - [19] = 3, - [20] = 2, - [21] = 3, + [13] = 2, + [14] = 14, + [15] = 15, + [16] = 16, + [17] = 17, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 21, [22] = 22, - [23] = 22, - [24] = 22, - [25] = 22, - [26] = 22, - [27] = 22, - [28] = 22, - [29] = 22, - [30] = 22, - [31] = 22, - [32] = 22, - [33] = 22, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 32, + [33] = 33, [34] = 34, [35] = 35, [36] = 36, @@ -1519,646 +1516,646 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [42] = 42, [43] = 43, [44] = 44, - [45] = 45, - [46] = 46, - [47] = 47, - [48] = 48, - [49] = 49, - [50] = 50, - [51] = 51, - [52] = 52, - [53] = 53, - [54] = 54, - [55] = 34, + [45] = 36, + [46] = 38, + [47] = 40, + [48] = 41, + [49] = 41, + [50] = 41, + [51] = 41, + [52] = 41, + [53] = 41, + [54] = 44, + [55] = 14, [56] = 56, [57] = 57, [58] = 58, [59] = 59, [60] = 60, [61] = 61, - [62] = 52, - [63] = 54, - [64] = 56, - [65] = 57, - [66] = 57, - [67] = 67, - [68] = 57, - [69] = 69, - [70] = 57, - [71] = 71, - [72] = 72, - [73] = 57, - [74] = 74, - [75] = 57, - [76] = 76, - [77] = 77, - [78] = 78, - [79] = 60, - [80] = 61, - [81] = 67, - [82] = 69, - [83] = 71, - [84] = 72, - [85] = 74, - [86] = 76, - [87] = 87, - [88] = 35, - [89] = 37, - [90] = 38, - [91] = 39, - [92] = 40, - [93] = 41, - [94] = 42, - [95] = 43, - [96] = 45, - [97] = 46, - [98] = 47, - [99] = 48, - [100] = 49, - [101] = 50, - [102] = 51, - [103] = 53, - [104] = 59, - [105] = 76, - [106] = 77, - [107] = 78, - [108] = 60, - [109] = 61, - [110] = 67, - [111] = 69, - [112] = 71, - [113] = 72, - [114] = 87, - [115] = 35, - [116] = 37, - [117] = 38, - [118] = 39, - [119] = 40, - [120] = 41, - [121] = 42, - [122] = 43, - [123] = 45, - [124] = 46, - [125] = 47, - [126] = 48, - [127] = 49, - [128] = 50, - [129] = 51, - [130] = 53, - [131] = 34, - [132] = 59, - [133] = 76, - [134] = 77, - [135] = 78, - [136] = 60, - [137] = 61, - [138] = 67, - [139] = 69, - [140] = 71, - [141] = 72, - [142] = 74, - [143] = 143, - [144] = 87, - [145] = 35, - [146] = 37, - [147] = 38, - [148] = 39, - [149] = 40, - [150] = 41, - [151] = 42, - [152] = 43, - [153] = 45, - [154] = 46, - [155] = 47, - [156] = 48, - [157] = 49, - [158] = 50, - [159] = 51, - [160] = 53, - [161] = 34, - [162] = 59, - [163] = 76, - [164] = 77, - [165] = 78, - [166] = 60, - [167] = 61, - [168] = 67, - [169] = 69, - [170] = 71, - [171] = 72, - [172] = 74, - [173] = 87, - [174] = 35, - [175] = 37, - [176] = 38, - [177] = 39, - [178] = 40, - [179] = 41, - [180] = 42, - [181] = 43, - [182] = 45, - [183] = 46, - [184] = 47, - [185] = 48, - [186] = 49, - [187] = 50, - [188] = 51, - [189] = 53, - [190] = 34, - [191] = 59, - [192] = 76, - [193] = 77, - [194] = 78, - [195] = 60, - [196] = 61, - [197] = 67, - [198] = 69, - [199] = 71, - [200] = 72, - [201] = 74, - [202] = 87, - [203] = 35, - [204] = 37, - [205] = 38, - [206] = 39, - [207] = 40, - [208] = 41, - [209] = 42, - [210] = 43, - [211] = 45, - [212] = 46, - [213] = 47, - [214] = 48, - [215] = 49, - [216] = 50, - [217] = 51, - [218] = 53, - [219] = 34, - [220] = 59, - [221] = 76, - [222] = 77, - [223] = 78, - [224] = 60, - [225] = 61, - [226] = 67, - [227] = 69, - [228] = 71, - [229] = 72, - [230] = 74, - [231] = 231, - [232] = 87, - [233] = 35, - [234] = 37, - [235] = 38, - [236] = 39, - [237] = 40, - [238] = 41, - [239] = 42, - [240] = 43, - [241] = 45, - [242] = 46, - [243] = 47, - [244] = 48, - [245] = 49, - [246] = 50, - [247] = 51, - [248] = 53, - [249] = 34, - [250] = 59, - [251] = 76, - [252] = 77, - [253] = 78, - [254] = 60, - [255] = 61, - [256] = 67, - [257] = 69, - [258] = 71, - [259] = 72, - [260] = 74, - [261] = 77, - [262] = 87, - [263] = 35, - [264] = 37, - [265] = 38, - [266] = 39, - [267] = 40, - [268] = 41, - [269] = 42, - [270] = 43, - [271] = 45, - [272] = 46, - [273] = 47, - [274] = 48, - [275] = 49, - [276] = 50, - [277] = 51, - [278] = 53, - [279] = 34, - [280] = 59, - [281] = 76, - [282] = 77, - [283] = 78, - [284] = 60, - [285] = 61, - [286] = 67, - [287] = 69, - [288] = 71, - [289] = 72, - [290] = 74, - [291] = 87, - [292] = 35, - [293] = 37, - [294] = 38, - [295] = 39, - [296] = 40, - [297] = 41, - [298] = 42, - [299] = 43, - [300] = 45, - [301] = 46, - [302] = 47, - [303] = 48, - [304] = 49, - [305] = 50, - [306] = 51, - [307] = 53, - [308] = 34, - [309] = 59, - [310] = 76, - [311] = 77, - [312] = 78, - [313] = 60, - [314] = 61, - [315] = 67, - [316] = 69, - [317] = 71, - [318] = 72, - [319] = 74, - [320] = 87, - [321] = 87, - [322] = 35, - [323] = 37, - [324] = 38, - [325] = 39, - [326] = 40, - [327] = 41, - [328] = 42, - [329] = 43, - [330] = 45, - [331] = 46, - [332] = 47, - [333] = 48, - [334] = 49, - [335] = 50, - [336] = 51, - [337] = 53, - [338] = 34, - [339] = 59, - [340] = 76, - [341] = 77, - [342] = 78, - [343] = 60, - [344] = 61, - [345] = 67, - [346] = 69, - [347] = 71, - [348] = 72, - [349] = 74, - [350] = 78, - [351] = 87, - [352] = 35, - [353] = 37, - [354] = 38, - [355] = 39, - [356] = 40, - [357] = 41, - [358] = 42, - [359] = 43, - [360] = 45, - [361] = 46, - [362] = 47, - [363] = 48, - [364] = 49, - [365] = 50, - [366] = 51, - [367] = 53, - [368] = 34, - [369] = 59, - [370] = 76, - [371] = 77, - [372] = 78, - [373] = 60, - [374] = 61, - [375] = 67, - [376] = 69, - [377] = 71, - [378] = 72, - [379] = 74, - [380] = 380, - [381] = 87, - [382] = 35, - [383] = 37, - [384] = 38, - [385] = 39, - [386] = 40, - [387] = 41, - [388] = 42, - [389] = 43, - [390] = 45, - [391] = 46, - [392] = 47, - [393] = 48, - [394] = 49, - [395] = 50, - [396] = 51, - [397] = 53, - [398] = 34, - [399] = 59, - [400] = 231, - [401] = 380, - [402] = 74, + [62] = 62, + [63] = 15, + [64] = 14, + [65] = 18, + [66] = 19, + [67] = 21, + [68] = 22, + [69] = 23, + [70] = 24, + [71] = 25, + [72] = 26, + [73] = 27, + [74] = 29, + [75] = 30, + [76] = 31, + [77] = 32, + [78] = 33, + [79] = 34, + [80] = 35, + [81] = 37, + [82] = 39, + [83] = 43, + [84] = 44, + [85] = 14, + [86] = 56, + [87] = 57, + [88] = 58, + [89] = 59, + [90] = 60, + [91] = 61, + [92] = 62, + [93] = 15, + [94] = 56, + [95] = 18, + [96] = 19, + [97] = 21, + [98] = 22, + [99] = 23, + [100] = 24, + [101] = 25, + [102] = 26, + [103] = 27, + [104] = 29, + [105] = 30, + [106] = 31, + [107] = 32, + [108] = 33, + [109] = 34, + [110] = 35, + [111] = 37, + [112] = 39, + [113] = 43, + [114] = 44, + [115] = 14, + [116] = 56, + [117] = 57, + [118] = 58, + [119] = 59, + [120] = 60, + [121] = 61, + [122] = 62, + [123] = 15, + [124] = 57, + [125] = 18, + [126] = 19, + [127] = 21, + [128] = 22, + [129] = 23, + [130] = 24, + [131] = 25, + [132] = 26, + [133] = 27, + [134] = 29, + [135] = 30, + [136] = 31, + [137] = 32, + [138] = 33, + [139] = 34, + [140] = 35, + [141] = 37, + [142] = 39, + [143] = 43, + [144] = 44, + [145] = 56, + [146] = 57, + [147] = 147, + [148] = 59, + [149] = 60, + [150] = 61, + [151] = 62, + [152] = 15, + [153] = 58, + [154] = 18, + [155] = 19, + [156] = 21, + [157] = 22, + [158] = 23, + [159] = 24, + [160] = 25, + [161] = 26, + [162] = 27, + [163] = 29, + [164] = 30, + [165] = 31, + [166] = 32, + [167] = 33, + [168] = 34, + [169] = 35, + [170] = 37, + [171] = 39, + [172] = 43, + [173] = 44, + [174] = 14, + [175] = 56, + [176] = 57, + [177] = 58, + [178] = 59, + [179] = 60, + [180] = 61, + [181] = 62, + [182] = 15, + [183] = 18, + [184] = 19, + [185] = 21, + [186] = 22, + [187] = 23, + [188] = 24, + [189] = 25, + [190] = 26, + [191] = 27, + [192] = 29, + [193] = 30, + [194] = 31, + [195] = 32, + [196] = 33, + [197] = 34, + [198] = 35, + [199] = 37, + [200] = 39, + [201] = 43, + [202] = 44, + [203] = 14, + [204] = 56, + [205] = 57, + [206] = 58, + [207] = 59, + [208] = 60, + [209] = 61, + [210] = 62, + [211] = 15, + [212] = 18, + [213] = 19, + [214] = 21, + [215] = 22, + [216] = 23, + [217] = 24, + [218] = 25, + [219] = 26, + [220] = 27, + [221] = 29, + [222] = 30, + [223] = 31, + [224] = 32, + [225] = 33, + [226] = 34, + [227] = 35, + [228] = 37, + [229] = 39, + [230] = 43, + [231] = 44, + [232] = 14, + [233] = 56, + [234] = 57, + [235] = 58, + [236] = 59, + [237] = 60, + [238] = 61, + [239] = 62, + [240] = 15, + [241] = 59, + [242] = 18, + [243] = 19, + [244] = 21, + [245] = 22, + [246] = 23, + [247] = 24, + [248] = 25, + [249] = 26, + [250] = 27, + [251] = 29, + [252] = 30, + [253] = 31, + [254] = 32, + [255] = 33, + [256] = 34, + [257] = 35, + [258] = 37, + [259] = 39, + [260] = 43, + [261] = 44, + [262] = 14, + [263] = 56, + [264] = 57, + [265] = 58, + [266] = 59, + [267] = 60, + [268] = 61, + [269] = 62, + [270] = 15, + [271] = 18, + [272] = 19, + [273] = 21, + [274] = 22, + [275] = 23, + [276] = 24, + [277] = 25, + [278] = 26, + [279] = 27, + [280] = 29, + [281] = 30, + [282] = 31, + [283] = 32, + [284] = 33, + [285] = 34, + [286] = 35, + [287] = 37, + [288] = 39, + [289] = 43, + [290] = 44, + [291] = 14, + [292] = 56, + [293] = 57, + [294] = 58, + [295] = 59, + [296] = 60, + [297] = 61, + [298] = 62, + [299] = 15, + [300] = 60, + [301] = 18, + [302] = 19, + [303] = 21, + [304] = 22, + [305] = 23, + [306] = 24, + [307] = 25, + [308] = 26, + [309] = 27, + [310] = 29, + [311] = 30, + [312] = 31, + [313] = 32, + [314] = 33, + [315] = 34, + [316] = 35, + [317] = 37, + [318] = 39, + [319] = 43, + [320] = 44, + [321] = 14, + [322] = 56, + [323] = 57, + [324] = 58, + [325] = 59, + [326] = 60, + [327] = 61, + [328] = 62, + [329] = 15, + [330] = 61, + [331] = 18, + [332] = 19, + [333] = 21, + [334] = 22, + [335] = 23, + [336] = 24, + [337] = 25, + [338] = 26, + [339] = 27, + [340] = 29, + [341] = 30, + [342] = 31, + [343] = 32, + [344] = 33, + [345] = 34, + [346] = 35, + [347] = 37, + [348] = 39, + [349] = 43, + [350] = 44, + [351] = 14, + [352] = 56, + [353] = 57, + [354] = 58, + [355] = 59, + [356] = 60, + [357] = 61, + [358] = 62, + [359] = 15, + [360] = 62, + [361] = 18, + [362] = 19, + [363] = 21, + [364] = 22, + [365] = 23, + [366] = 24, + [367] = 25, + [368] = 26, + [369] = 27, + [370] = 29, + [371] = 30, + [372] = 31, + [373] = 32, + [374] = 33, + [375] = 34, + [376] = 35, + [377] = 37, + [378] = 39, + [379] = 43, + [380] = 147, + [381] = 16, + [382] = 147, + [383] = 16, + [384] = 147, + [385] = 16, + [386] = 147, + [387] = 16, + [388] = 147, + [389] = 16, + [390] = 147, + [391] = 16, + [392] = 147, + [393] = 16, + [394] = 147, + [395] = 16, + [396] = 147, + [397] = 16, + [398] = 147, + [399] = 16, + [400] = 147, + [401] = 16, + [402] = 58, [403] = 403, [404] = 404, - [405] = 405, - [406] = 406, - [407] = 403, + [405] = 403, + [406] = 404, + [407] = 407, [408] = 408, - [409] = 404, + [409] = 409, [410] = 403, - [411] = 405, + [411] = 404, [412] = 408, - [413] = 404, + [413] = 409, [414] = 403, - [415] = 405, + [415] = 404, [416] = 408, - [417] = 404, + [417] = 409, [418] = 403, - [419] = 405, + [419] = 404, [420] = 408, - [421] = 404, - [422] = 403, - [423] = 405, - [424] = 408, - [425] = 404, - [426] = 405, + [421] = 409, + [422] = 408, + [423] = 408, + [424] = 409, + [425] = 403, + [426] = 404, [427] = 408, - [428] = 408, - [429] = 404, - [430] = 403, - [431] = 405, - [432] = 408, - [433] = 404, - [434] = 403, - [435] = 405, - [436] = 408, - [437] = 404, - [438] = 403, - [439] = 405, - [440] = 408, - [441] = 404, - [442] = 403, - [443] = 405, - [444] = 408, - [445] = 404, + [428] = 409, + [429] = 403, + [430] = 404, + [431] = 408, + [432] = 409, + [433] = 403, + [434] = 404, + [435] = 408, + [436] = 409, + [437] = 403, + [438] = 404, + [439] = 408, + [440] = 409, + [441] = 403, + [442] = 404, + [443] = 408, + [444] = 409, + [445] = 409, [446] = 403, - [447] = 405, + [447] = 404, [448] = 408, - [449] = 404, + [449] = 409, [450] = 403, - [451] = 405, + [451] = 404, [452] = 452, - [453] = 452, - [454] = 454, + [453] = 453, + [454] = 453, [455] = 452, - [456] = 454, + [456] = 453, [457] = 452, - [458] = 454, - [459] = 454, + [458] = 453, + [459] = 453, [460] = 452, - [461] = 454, + [461] = 453, [462] = 452, - [463] = 454, - [464] = 452, - [465] = 454, - [466] = 452, - [467] = 454, + [463] = 452, + [464] = 453, + [465] = 452, + [466] = 453, + [467] = 452, [468] = 452, - [469] = 454, - [470] = 452, - [471] = 454, - [472] = 452, - [473] = 454, - [474] = 454, + [469] = 453, + [470] = 453, + [471] = 452, + [472] = 453, + [473] = 452, + [474] = 453, [475] = 452, [476] = 476, [477] = 477, [478] = 478, [479] = 479, [480] = 480, - [481] = 480, + [481] = 481, [482] = 482, - [483] = 477, + [483] = 480, [484] = 484, [485] = 485, - [486] = 478, - [487] = 487, + [486] = 486, + [487] = 476, [488] = 488, [489] = 489, [490] = 490, [491] = 491, - [492] = 476, - [493] = 484, + [492] = 492, + [493] = 493, [494] = 494, - [495] = 495, - [496] = 487, - [497] = 497, - [498] = 498, - [499] = 488, - [500] = 479, - [501] = 480, - [502] = 482, - [503] = 477, - [504] = 484, - [505] = 485, - [506] = 478, - [507] = 487, - [508] = 489, - [509] = 488, - [510] = 489, - [511] = 490, - [512] = 491, - [513] = 476, - [514] = 477, - [515] = 494, - [516] = 495, - [517] = 490, - [518] = 497, - [519] = 498, - [520] = 491, - [521] = 479, - [522] = 484, - [523] = 480, - [524] = 482, - [525] = 477, - [526] = 484, - [527] = 497, - [528] = 485, - [529] = 478, - [530] = 487, - [531] = 488, - [532] = 489, - [533] = 490, - [534] = 491, - [535] = 476, - [536] = 485, - [537] = 478, - [538] = 494, - [539] = 495, - [540] = 476, - [541] = 497, - [542] = 498, - [543] = 480, - [544] = 479, - [545] = 487, - [546] = 480, - [547] = 482, - [548] = 477, - [549] = 484, - [550] = 485, - [551] = 478, - [552] = 487, - [553] = 488, - [554] = 489, - [555] = 490, - [556] = 491, - [557] = 476, - [558] = 488, - [559] = 482, - [560] = 494, - [561] = 495, - [562] = 495, - [563] = 497, - [564] = 498, - [565] = 479, - [566] = 489, + [495] = 477, + [496] = 478, + [497] = 479, + [498] = 480, + [499] = 481, + [500] = 482, + [501] = 484, + [502] = 485, + [503] = 481, + [504] = 486, + [505] = 476, + [506] = 488, + [507] = 489, + [508] = 490, + [509] = 491, + [510] = 492, + [511] = 493, + [512] = 494, + [513] = 477, + [514] = 478, + [515] = 479, + [516] = 480, + [517] = 481, + [518] = 482, + [519] = 482, + [520] = 484, + [521] = 485, + [522] = 489, + [523] = 486, + [524] = 476, + [525] = 488, + [526] = 489, + [527] = 490, + [528] = 491, + [529] = 492, + [530] = 493, + [531] = 494, + [532] = 477, + [533] = 478, + [534] = 479, + [535] = 480, + [536] = 481, + [537] = 482, + [538] = 484, + [539] = 484, + [540] = 485, + [541] = 485, + [542] = 486, + [543] = 476, + [544] = 488, + [545] = 489, + [546] = 490, + [547] = 491, + [548] = 492, + [549] = 493, + [550] = 494, + [551] = 477, + [552] = 478, + [553] = 479, + [554] = 480, + [555] = 476, + [556] = 488, + [557] = 489, + [558] = 490, + [559] = 491, + [560] = 492, + [561] = 490, + [562] = 493, + [563] = 494, + [564] = 477, + [565] = 478, + [566] = 479, [567] = 480, - [568] = 482, - [569] = 477, - [570] = 484, - [571] = 485, - [572] = 478, - [573] = 487, - [574] = 488, - [575] = 489, - [576] = 490, - [577] = 491, - [578] = 479, - [579] = 494, - [580] = 495, - [581] = 497, - [582] = 498, - [583] = 479, - [584] = 480, - [585] = 482, - [586] = 477, - [587] = 484, - [588] = 485, - [589] = 478, - [590] = 487, - [591] = 488, - [592] = 489, - [593] = 490, - [594] = 491, - [595] = 476, - [596] = 494, - [597] = 495, - [598] = 497, - [599] = 498, - [600] = 479, - [601] = 480, - [602] = 482, - [603] = 477, - [604] = 484, - [605] = 485, - [606] = 478, - [607] = 487, - [608] = 488, - [609] = 489, - [610] = 490, - [611] = 491, - [612] = 476, - [613] = 494, - [614] = 495, - [615] = 497, - [616] = 498, - [617] = 479, - [618] = 480, - [619] = 482, - [620] = 477, - [621] = 484, - [622] = 485, - [623] = 478, - [624] = 487, - [625] = 488, - [626] = 489, - [627] = 490, - [628] = 491, - [629] = 476, - [630] = 494, - [631] = 495, - [632] = 497, - [633] = 498, - [634] = 494, - [635] = 479, - [636] = 480, - [637] = 482, - [638] = 477, - [639] = 484, - [640] = 485, - [641] = 478, - [642] = 487, - [643] = 488, - [644] = 489, - [645] = 490, - [646] = 491, - [647] = 476, - [648] = 494, - [649] = 495, - [650] = 495, - [651] = 497, - [652] = 477, - [653] = 484, - [654] = 498, - [655] = 485, - [656] = 478, - [657] = 487, - [658] = 488, - [659] = 489, - [660] = 490, - [661] = 491, - [662] = 476, - [663] = 490, - [664] = 491, - [665] = 476, - [666] = 479, - [667] = 498, - [668] = 494, - [669] = 495, - [670] = 485, - [671] = 497, - [672] = 498, - [673] = 497, - [674] = 479, - [675] = 498, - [676] = 480, - [677] = 482, + [568] = 485, + [569] = 481, + [570] = 482, + [571] = 486, + [572] = 484, + [573] = 485, + [574] = 476, + [575] = 486, + [576] = 486, + [577] = 484, + [578] = 488, + [579] = 476, + [580] = 488, + [581] = 489, + [582] = 490, + [583] = 491, + [584] = 492, + [585] = 493, + [586] = 488, + [587] = 477, + [588] = 478, + [589] = 479, + [590] = 480, + [591] = 481, + [592] = 482, + [593] = 489, + [594] = 484, + [595] = 485, + [596] = 490, + [597] = 486, + [598] = 481, + [599] = 476, + [600] = 488, + [601] = 489, + [602] = 490, + [603] = 491, + [604] = 492, + [605] = 493, + [606] = 494, + [607] = 477, + [608] = 478, + [609] = 479, + [610] = 480, + [611] = 481, + [612] = 482, + [613] = 491, + [614] = 484, + [615] = 485, + [616] = 492, + [617] = 486, + [618] = 493, + [619] = 476, + [620] = 488, + [621] = 489, + [622] = 494, + [623] = 477, + [624] = 478, + [625] = 479, + [626] = 490, + [627] = 491, + [628] = 480, + [629] = 491, + [630] = 492, + [631] = 493, + [632] = 481, + [633] = 482, + [634] = 492, + [635] = 484, + [636] = 494, + [637] = 477, + [638] = 485, + [639] = 493, + [640] = 486, + [641] = 494, + [642] = 478, + [643] = 479, + [644] = 476, + [645] = 488, + [646] = 489, + [647] = 490, + [648] = 480, + [649] = 491, + [650] = 492, + [651] = 493, + [652] = 494, + [653] = 481, + [654] = 477, + [655] = 478, + [656] = 479, + [657] = 480, + [658] = 482, + [659] = 481, + [660] = 482, + [661] = 477, + [662] = 484, + [663] = 485, + [664] = 484, + [665] = 485, + [666] = 478, + [667] = 486, + [668] = 479, + [669] = 476, + [670] = 488, + [671] = 489, + [672] = 490, + [673] = 491, + [674] = 486, + [675] = 482, + [676] = 492, + [677] = 493, [678] = 494, - [679] = 482, + [679] = 494, [680] = 680, [681] = 681, - [682] = 680, - [683] = 681, - [684] = 680, + [682] = 681, + [683] = 680, + [684] = 681, [685] = 680, [686] = 680, [687] = 681, @@ -2166,114 +2163,114 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [689] = 681, [690] = 681, [691] = 680, - [692] = 680, - [693] = 681, - [694] = 680, - [695] = 681, - [696] = 681, + [692] = 681, + [693] = 680, + [694] = 681, + [695] = 680, + [696] = 680, [697] = 681, - [698] = 680, - [699] = 681, + [698] = 681, + [699] = 680, [700] = 680, [701] = 681, [702] = 680, [703] = 681, [704] = 704, [705] = 705, - [706] = 706, + [706] = 704, [707] = 707, - [708] = 705, - [709] = 705, + [708] = 708, + [709] = 709, [710] = 710, - [711] = 704, - [712] = 707, - [713] = 713, + [711] = 711, + [712] = 712, + [713] = 705, [714] = 704, [715] = 707, - [716] = 706, - [717] = 713, + [716] = 708, + [717] = 709, [718] = 710, - [719] = 710, - [720] = 713, - [721] = 721, - [722] = 710, - [723] = 710, - [724] = 706, - [725] = 725, - [726] = 705, - [727] = 707, - [728] = 705, - [729] = 706, - [730] = 706, - [731] = 721, - [732] = 721, - [733] = 725, + [719] = 711, + [720] = 712, + [721] = 705, + [722] = 704, + [723] = 709, + [724] = 705, + [725] = 704, + [726] = 707, + [727] = 708, + [728] = 709, + [729] = 710, + [730] = 711, + [731] = 712, + [732] = 709, + [733] = 705, [734] = 704, - [735] = 704, - [736] = 705, - [737] = 706, - [738] = 721, - [739] = 725, - [740] = 721, - [741] = 721, - [742] = 707, - [743] = 725, - [744] = 707, - [745] = 713, - [746] = 713, - [747] = 707, + [735] = 708, + [736] = 707, + [737] = 709, + [738] = 710, + [739] = 711, + [740] = 712, + [741] = 705, + [742] = 704, + [743] = 707, + [744] = 708, + [745] = 710, + [746] = 711, + [747] = 709, [748] = 710, - [749] = 721, - [750] = 721, - [751] = 705, - [752] = 704, - [753] = 706, - [754] = 704, - [755] = 707, - [756] = 725, - [757] = 725, - [758] = 704, - [759] = 704, - [760] = 707, - [761] = 704, - [762] = 713, - [763] = 710, - [764] = 710, - [765] = 713, - [766] = 710, - [767] = 713, - [768] = 710, - [769] = 707, - [770] = 705, - [771] = 707, - [772] = 713, - [773] = 706, - [774] = 704, - [775] = 707, - [776] = 721, - [777] = 725, - [778] = 725, - [779] = 721, - [780] = 710, - [781] = 705, - [782] = 705, - [783] = 706, - [784] = 706, - [785] = 725, - [786] = 725, - [787] = 713, - [788] = 725, - [789] = 705, - [790] = 721, - [791] = 706, - [792] = 705, - [793] = 706, - [794] = 710, - [795] = 713, - [796] = 721, - [797] = 704, - [798] = 725, - [799] = 713, + [749] = 711, + [750] = 712, + [751] = 712, + [752] = 712, + [753] = 704, + [754] = 707, + [755] = 708, + [756] = 709, + [757] = 710, + [758] = 711, + [759] = 712, + [760] = 705, + [761] = 707, + [762] = 708, + [763] = 707, + [764] = 708, + [765] = 705, + [766] = 704, + [767] = 707, + [768] = 708, + [769] = 709, + [770] = 710, + [771] = 711, + [772] = 710, + [773] = 712, + [774] = 707, + [775] = 711, + [776] = 705, + [777] = 704, + [778] = 707, + [779] = 708, + [780] = 709, + [781] = 710, + [782] = 711, + [783] = 712, + [784] = 712, + [785] = 705, + [786] = 704, + [787] = 707, + [788] = 708, + [789] = 709, + [790] = 710, + [791] = 711, + [792] = 712, + [793] = 705, + [794] = 704, + [795] = 708, + [796] = 709, + [797] = 710, + [798] = 711, + [799] = 705, [800] = 800, [801] = 801, [802] = 802, @@ -2290,930 +2287,930 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [813] = 813, [814] = 814, [815] = 815, - [816] = 816, + [816] = 803, [817] = 817, - [818] = 818, + [818] = 817, [819] = 819, - [820] = 820, + [820] = 800, [821] = 821, [822] = 822, [823] = 823, - [824] = 824, + [824] = 819, [825] = 825, [826] = 826, [827] = 827, - [828] = 828, + [828] = 821, [829] = 829, - [830] = 830, + [830] = 822, [831] = 831, [832] = 832, [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, + [834] = 803, + [835] = 817, + [836] = 823, [837] = 837, - [838] = 838, + [838] = 819, [839] = 839, - [840] = 840, + [840] = 825, [841] = 841, [842] = 842, [843] = 843, - [844] = 844, + [844] = 827, [845] = 845, - [846] = 846, - [847] = 847, + [846] = 812, + [847] = 841, [848] = 848, [849] = 849, [850] = 850, - [851] = 842, + [851] = 851, [852] = 852, [853] = 853, - [854] = 854, + [854] = 829, [855] = 855, [856] = 856, [857] = 857, [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, + [859] = 800, + [860] = 837, + [861] = 845, [862] = 862, [863] = 863, [864] = 864, - [865] = 865, - [866] = 852, - [867] = 867, + [865] = 848, + [866] = 866, + [867] = 831, [868] = 868, [869] = 869, - [870] = 809, + [870] = 870, [871] = 871, [872] = 872, [873] = 873, [874] = 874, [875] = 875, - [876] = 853, - [877] = 801, - [878] = 800, - [879] = 802, - [880] = 803, - [881] = 804, - [882] = 805, - [883] = 806, - [884] = 807, - [885] = 808, - [886] = 809, - [887] = 810, - [888] = 811, - [889] = 854, - [890] = 812, - [891] = 813, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 885, + [886] = 821, + [887] = 887, + [888] = 822, + [889] = 889, + [890] = 832, + [891] = 833, [892] = 892, - [893] = 814, - [894] = 815, - [895] = 816, - [896] = 817, - [897] = 818, - [898] = 819, - [899] = 820, - [900] = 821, - [901] = 822, - [902] = 823, - [903] = 824, - [904] = 855, - [905] = 825, - [906] = 826, - [907] = 827, - [908] = 828, - [909] = 829, - [910] = 830, - [911] = 831, - [912] = 832, - [913] = 833, - [914] = 834, - [915] = 835, - [916] = 836, - [917] = 837, - [918] = 838, - [919] = 839, - [920] = 840, - [921] = 841, - [922] = 843, - [923] = 844, - [924] = 845, - [925] = 846, - [926] = 847, - [927] = 848, - [928] = 849, - [929] = 850, - [930] = 842, - [931] = 852, - [932] = 853, - [933] = 854, - [934] = 855, - [935] = 856, - [936] = 857, - [937] = 858, - [938] = 859, - [939] = 856, - [940] = 860, - [941] = 861, - [942] = 862, - [943] = 863, - [944] = 864, - [945] = 857, - [946] = 865, - [947] = 867, - [948] = 868, - [949] = 869, - [950] = 871, - [951] = 872, - [952] = 873, - [953] = 874, - [954] = 875, - [955] = 801, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 823, + [898] = 898, + [899] = 899, + [900] = 801, + [901] = 802, + [902] = 804, + [903] = 825, + [904] = 805, + [905] = 806, + [906] = 807, + [907] = 808, + [908] = 809, + [909] = 810, + [910] = 811, + [911] = 833, + [912] = 813, + [913] = 814, + [914] = 815, + [915] = 803, + [916] = 817, + [917] = 839, + [918] = 819, + [919] = 862, + [920] = 821, + [921] = 822, + [922] = 823, + [923] = 825, + [924] = 842, + [925] = 827, + [926] = 843, + [927] = 829, + [928] = 826, + [929] = 831, + [930] = 832, + [931] = 833, + [932] = 827, + [933] = 863, + [934] = 829, + [935] = 864, + [936] = 839, + [937] = 812, + [938] = 841, + [939] = 842, + [940] = 843, + [941] = 848, + [942] = 849, + [943] = 812, + [944] = 841, + [945] = 848, + [946] = 849, + [947] = 850, + [948] = 851, + [949] = 852, + [950] = 853, + [951] = 850, + [952] = 855, + [953] = 856, + [954] = 857, + [955] = 858, [956] = 800, - [957] = 802, - [958] = 803, - [959] = 804, - [960] = 805, - [961] = 806, - [962] = 807, - [963] = 808, - [964] = 809, - [965] = 810, - [966] = 811, - [967] = 812, - [968] = 813, - [969] = 892, - [970] = 814, - [971] = 815, - [972] = 816, - [973] = 817, - [974] = 818, - [975] = 819, - [976] = 820, - [977] = 821, - [978] = 822, - [979] = 823, - [980] = 824, - [981] = 825, - [982] = 826, - [983] = 827, - [984] = 828, - [985] = 829, - [986] = 830, - [987] = 831, - [988] = 832, - [989] = 833, - [990] = 834, - [991] = 835, - [992] = 836, - [993] = 837, - [994] = 838, - [995] = 839, - [996] = 840, - [997] = 858, - [998] = 841, - [999] = 843, - [1000] = 844, - [1001] = 845, - [1002] = 846, - [1003] = 847, - [1004] = 848, - [1005] = 849, - [1006] = 850, - [1007] = 842, - [1008] = 810, - [1009] = 852, - [1010] = 853, - [1011] = 854, - [1012] = 855, - [1013] = 856, - [1014] = 857, - [1015] = 858, - [1016] = 859, - [1017] = 860, - [1018] = 861, - [1019] = 862, - [1020] = 863, - [1021] = 864, - [1022] = 859, - [1023] = 865, - [1024] = 867, - [1025] = 868, - [1026] = 869, - [1027] = 871, - [1028] = 872, - [1029] = 873, - [1030] = 874, - [1031] = 875, - [1032] = 801, - [1033] = 860, - [1034] = 800, - [1035] = 861, - [1036] = 802, - [1037] = 803, - [1038] = 862, - [1039] = 804, - [1040] = 805, - [1041] = 806, - [1042] = 807, - [1043] = 808, - [1044] = 809, - [1045] = 810, - [1046] = 811, - [1047] = 812, - [1048] = 813, - [1049] = 892, - [1050] = 814, - [1051] = 815, - [1052] = 816, - [1053] = 817, - [1054] = 818, - [1055] = 819, - [1056] = 820, - [1057] = 821, - [1058] = 822, - [1059] = 823, - [1060] = 824, - [1061] = 825, - [1062] = 826, - [1063] = 827, - [1064] = 828, - [1065] = 829, - [1066] = 830, - [1067] = 831, - [1068] = 832, - [1069] = 833, - [1070] = 834, - [1071] = 835, - [1072] = 836, - [1073] = 837, - [1074] = 838, - [1075] = 839, - [1076] = 840, - [1077] = 863, - [1078] = 841, - [1079] = 843, - [1080] = 844, - [1081] = 845, - [1082] = 846, - [1083] = 847, - [1084] = 848, - [1085] = 849, - [1086] = 850, - [1087] = 842, - [1088] = 852, - [1089] = 853, - [1090] = 854, - [1091] = 855, - [1092] = 856, - [1093] = 857, - [1094] = 858, - [1095] = 864, - [1096] = 859, - [1097] = 860, - [1098] = 861, - [1099] = 862, - [1100] = 863, - [1101] = 864, - [1102] = 865, - [1103] = 867, - [1104] = 868, - [1105] = 869, - [1106] = 865, - [1107] = 871, - [1108] = 872, - [1109] = 873, - [1110] = 874, - [1111] = 875, - [1112] = 801, - [1113] = 867, - [1114] = 868, - [1115] = 800, - [1116] = 869, - [1117] = 802, - [1118] = 803, - [1119] = 871, - [1120] = 804, - [1121] = 805, - [1122] = 806, - [1123] = 807, - [1124] = 808, - [1125] = 809, - [1126] = 810, - [1127] = 811, - [1128] = 811, - [1129] = 812, - [1130] = 813, - [1131] = 892, - [1132] = 814, - [1133] = 815, - [1134] = 816, - [1135] = 817, - [1136] = 819, - [1137] = 820, - [1138] = 821, - [1139] = 822, - [1140] = 823, - [1141] = 824, - [1142] = 825, - [1143] = 826, - [1144] = 827, - [1145] = 828, - [1146] = 829, - [1147] = 830, - [1148] = 831, - [1149] = 832, - [1150] = 833, - [1151] = 834, - [1152] = 835, - [1153] = 836, + [957] = 837, + [958] = 845, + [959] = 831, + [960] = 862, + [961] = 863, + [962] = 864, + [963] = 851, + [964] = 866, + [965] = 852, + [966] = 868, + [967] = 869, + [968] = 870, + [969] = 871, + [970] = 872, + [971] = 873, + [972] = 874, + [973] = 875, + [974] = 876, + [975] = 877, + [976] = 878, + [977] = 879, + [978] = 880, + [979] = 881, + [980] = 882, + [981] = 883, + [982] = 884, + [983] = 885, + [984] = 832, + [985] = 887, + [986] = 833, + [987] = 889, + [988] = 853, + [989] = 892, + [990] = 893, + [991] = 894, + [992] = 895, + [993] = 896, + [994] = 809, + [995] = 898, + [996] = 899, + [997] = 801, + [998] = 802, + [999] = 855, + [1000] = 804, + [1001] = 856, + [1002] = 805, + [1003] = 806, + [1004] = 807, + [1005] = 808, + [1006] = 809, + [1007] = 810, + [1008] = 858, + [1009] = 811, + [1010] = 800, + [1011] = 813, + [1012] = 814, + [1013] = 815, + [1014] = 803, + [1015] = 817, + [1016] = 837, + [1017] = 819, + [1018] = 845, + [1019] = 821, + [1020] = 822, + [1021] = 823, + [1022] = 810, + [1023] = 825, + [1024] = 863, + [1025] = 827, + [1026] = 864, + [1027] = 829, + [1028] = 849, + [1029] = 831, + [1030] = 832, + [1031] = 833, + [1032] = 810, + [1033] = 811, + [1034] = 866, + [1035] = 839, + [1036] = 866, + [1037] = 868, + [1038] = 842, + [1039] = 843, + [1040] = 850, + [1041] = 869, + [1042] = 812, + [1043] = 841, + [1044] = 848, + [1045] = 849, + [1046] = 850, + [1047] = 851, + [1048] = 852, + [1049] = 853, + [1050] = 855, + [1051] = 856, + [1052] = 857, + [1053] = 858, + [1054] = 800, + [1055] = 837, + [1056] = 845, + [1057] = 839, + [1058] = 863, + [1059] = 864, + [1060] = 870, + [1061] = 866, + [1062] = 868, + [1063] = 869, + [1064] = 870, + [1065] = 871, + [1066] = 872, + [1067] = 873, + [1068] = 874, + [1069] = 875, + [1070] = 876, + [1071] = 877, + [1072] = 878, + [1073] = 879, + [1074] = 880, + [1075] = 881, + [1076] = 882, + [1077] = 883, + [1078] = 884, + [1079] = 885, + [1080] = 887, + [1081] = 889, + [1082] = 871, + [1083] = 872, + [1084] = 892, + [1085] = 893, + [1086] = 894, + [1087] = 895, + [1088] = 896, + [1089] = 842, + [1090] = 898, + [1091] = 899, + [1092] = 801, + [1093] = 802, + [1094] = 873, + [1095] = 804, + [1096] = 874, + [1097] = 805, + [1098] = 806, + [1099] = 807, + [1100] = 808, + [1101] = 809, + [1102] = 810, + [1103] = 875, + [1104] = 811, + [1105] = 876, + [1106] = 813, + [1107] = 814, + [1108] = 815, + [1109] = 803, + [1110] = 817, + [1111] = 877, + [1112] = 819, + [1113] = 878, + [1114] = 821, + [1115] = 822, + [1116] = 823, + [1117] = 879, + [1118] = 825, + [1119] = 880, + [1120] = 827, + [1121] = 881, + [1122] = 829, + [1123] = 882, + [1124] = 831, + [1125] = 832, + [1126] = 833, + [1127] = 843, + [1128] = 857, + [1129] = 883, + [1130] = 811, + [1131] = 884, + [1132] = 812, + [1133] = 839, + [1134] = 885, + [1135] = 841, + [1136] = 842, + [1137] = 843, + [1138] = 887, + [1139] = 848, + [1140] = 812, + [1141] = 841, + [1142] = 848, + [1143] = 849, + [1144] = 850, + [1145] = 851, + [1146] = 852, + [1147] = 853, + [1148] = 889, + [1149] = 855, + [1150] = 856, + [1151] = 857, + [1152] = 858, + [1153] = 800, [1154] = 837, - [1155] = 838, - [1156] = 839, - [1157] = 872, - [1158] = 840, - [1159] = 841, - [1160] = 873, - [1161] = 843, - [1162] = 844, - [1163] = 845, - [1164] = 846, - [1165] = 847, - [1166] = 848, - [1167] = 849, - [1168] = 850, - [1169] = 842, - [1170] = 874, - [1171] = 852, - [1172] = 875, - [1173] = 853, - [1174] = 854, - [1175] = 855, - [1176] = 856, - [1177] = 857, - [1178] = 858, - [1179] = 859, - [1180] = 812, - [1181] = 860, - [1182] = 861, - [1183] = 862, - [1184] = 863, - [1185] = 864, - [1186] = 801, - [1187] = 865, - [1188] = 813, - [1189] = 867, - [1190] = 868, - [1191] = 869, - [1192] = 871, - [1193] = 872, - [1194] = 873, - [1195] = 874, - [1196] = 875, - [1197] = 801, - [1198] = 800, - [1199] = 802, - [1200] = 803, - [1201] = 800, - [1202] = 1202, - [1203] = 802, - [1204] = 803, - [1205] = 804, - [1206] = 805, - [1207] = 806, - [1208] = 807, - [1209] = 808, - [1210] = 809, - [1211] = 810, - [1212] = 811, - [1213] = 892, - [1214] = 812, - [1215] = 813, - [1216] = 892, - [1217] = 814, - [1218] = 815, - [1219] = 816, - [1220] = 817, - [1221] = 804, - [1222] = 818, - [1223] = 819, - [1224] = 820, - [1225] = 805, - [1226] = 821, - [1227] = 806, - [1228] = 822, - [1229] = 823, - [1230] = 824, - [1231] = 825, - [1232] = 826, - [1233] = 827, - [1234] = 828, - [1235] = 829, - [1236] = 830, - [1237] = 831, - [1238] = 832, - [1239] = 833, - [1240] = 834, - [1241] = 835, - [1242] = 836, - [1243] = 837, - [1244] = 838, - [1245] = 839, - [1246] = 807, - [1247] = 840, - [1248] = 808, - [1249] = 841, - [1250] = 809, + [1155] = 845, + [1156] = 849, + [1157] = 862, + [1158] = 863, + [1159] = 864, + [1160] = 868, + [1161] = 866, + [1162] = 851, + [1163] = 868, + [1164] = 869, + [1165] = 870, + [1166] = 871, + [1167] = 872, + [1168] = 873, + [1169] = 874, + [1170] = 875, + [1171] = 876, + [1172] = 877, + [1173] = 878, + [1174] = 879, + [1175] = 880, + [1176] = 881, + [1177] = 882, + [1178] = 883, + [1179] = 884, + [1180] = 885, + [1181] = 850, + [1182] = 887, + [1183] = 851, + [1184] = 889, + [1185] = 892, + [1186] = 893, + [1187] = 892, + [1188] = 893, + [1189] = 894, + [1190] = 895, + [1191] = 896, + [1192] = 852, + [1193] = 898, + [1194] = 899, + [1195] = 801, + [1196] = 802, + [1197] = 894, + [1198] = 804, + [1199] = 895, + [1200] = 805, + [1201] = 806, + [1202] = 807, + [1203] = 808, + [1204] = 809, + [1205] = 810, + [1206] = 896, + [1207] = 811, + [1208] = 853, + [1209] = 813, + [1210] = 814, + [1211] = 815, + [1212] = 803, + [1213] = 817, + [1214] = 898, + [1215] = 819, + [1216] = 899, + [1217] = 821, + [1218] = 822, + [1219] = 823, + [1220] = 801, + [1221] = 825, + [1222] = 802, + [1223] = 827, + [1224] = 852, + [1225] = 829, + [1226] = 804, + [1227] = 831, + [1228] = 832, + [1229] = 833, + [1230] = 858, + [1231] = 855, + [1232] = 869, + [1233] = 856, + [1234] = 805, + [1235] = 857, + [1236] = 839, + [1237] = 806, + [1238] = 807, + [1239] = 842, + [1240] = 843, + [1241] = 808, + [1242] = 809, + [1243] = 812, + [1244] = 841, + [1245] = 848, + [1246] = 849, + [1247] = 850, + [1248] = 851, + [1249] = 852, + [1250] = 853, [1251] = 810, - [1252] = 843, - [1253] = 844, - [1254] = 845, - [1255] = 846, - [1256] = 847, - [1257] = 811, - [1258] = 848, - [1259] = 849, - [1260] = 850, - [1261] = 842, - [1262] = 814, - [1263] = 852, - [1264] = 812, - [1265] = 853, - [1266] = 854, - [1267] = 855, - [1268] = 856, - [1269] = 857, - [1270] = 858, - [1271] = 813, - [1272] = 859, - [1273] = 860, - [1274] = 861, - [1275] = 862, - [1276] = 863, - [1277] = 864, - [1278] = 814, - [1279] = 865, - [1280] = 815, - [1281] = 867, - [1282] = 868, - [1283] = 869, - [1284] = 816, - [1285] = 871, - [1286] = 817, - [1287] = 872, - [1288] = 801, - [1289] = 873, - [1290] = 874, - [1291] = 875, - [1292] = 801, - [1293] = 819, - [1294] = 820, - [1295] = 815, - [1296] = 821, - [1297] = 800, - [1298] = 816, - [1299] = 822, - [1300] = 802, - [1301] = 803, - [1302] = 823, - [1303] = 804, - [1304] = 805, - [1305] = 806, - [1306] = 807, - [1307] = 808, - [1308] = 809, - [1309] = 810, - [1310] = 811, - [1311] = 817, - [1312] = 812, - [1313] = 813, - [1314] = 892, - [1315] = 814, - [1316] = 815, - [1317] = 816, - [1318] = 817, - [1319] = 824, - [1320] = 818, - [1321] = 819, - [1322] = 820, + [1252] = 855, + [1253] = 856, + [1254] = 857, + [1255] = 858, + [1256] = 837, + [1257] = 845, + [1258] = 858, + [1259] = 862, + [1260] = 863, + [1261] = 864, + [1262] = 839, + [1263] = 866, + [1264] = 811, + [1265] = 868, + [1266] = 869, + [1267] = 870, + [1268] = 871, + [1269] = 872, + [1270] = 873, + [1271] = 874, + [1272] = 875, + [1273] = 876, + [1274] = 877, + [1275] = 878, + [1276] = 879, + [1277] = 880, + [1278] = 881, + [1279] = 882, + [1280] = 883, + [1281] = 884, + [1282] = 885, + [1283] = 800, + [1284] = 887, + [1285] = 837, + [1286] = 889, + [1287] = 870, + [1288] = 813, + [1289] = 892, + [1290] = 893, + [1291] = 894, + [1292] = 895, + [1293] = 896, + [1294] = 845, + [1295] = 898, + [1296] = 899, + [1297] = 801, + [1298] = 802, + [1299] = 814, + [1300] = 804, + [1301] = 815, + [1302] = 805, + [1303] = 806, + [1304] = 807, + [1305] = 808, + [1306] = 809, + [1307] = 810, + [1308] = 803, + [1309] = 811, + [1310] = 817, + [1311] = 813, + [1312] = 814, + [1313] = 815, + [1314] = 803, + [1315] = 817, + [1316] = 819, + [1317] = 819, + [1318] = 821, + [1319] = 822, + [1320] = 823, + [1321] = 871, + [1322] = 825, [1323] = 821, - [1324] = 825, + [1324] = 827, [1325] = 822, - [1326] = 823, - [1327] = 824, - [1328] = 825, - [1329] = 826, - [1330] = 827, - [1331] = 828, - [1332] = 829, - [1333] = 830, - [1334] = 831, - [1335] = 832, - [1336] = 833, - [1337] = 834, - [1338] = 835, - [1339] = 800, - [1340] = 837, - [1341] = 838, - [1342] = 839, - [1343] = 826, - [1344] = 840, - [1345] = 827, - [1346] = 841, - [1347] = 828, - [1348] = 829, - [1349] = 843, - [1350] = 844, - [1351] = 845, - [1352] = 846, - [1353] = 847, - [1354] = 830, - [1355] = 848, - [1356] = 849, - [1357] = 850, + [1326] = 829, + [1327] = 823, + [1328] = 831, + [1329] = 832, + [1330] = 833, + [1331] = 862, + [1332] = 863, + [1333] = 857, + [1334] = 862, + [1335] = 864, + [1336] = 813, + [1337] = 857, + [1338] = 862, + [1339] = 872, + [1340] = 825, + [1341] = 873, + [1342] = 827, + [1343] = 874, + [1344] = 829, + [1345] = 875, + [1346] = 831, + [1347] = 832, + [1348] = 833, + [1349] = 866, + [1350] = 814, + [1351] = 876, + [1352] = 868, + [1353] = 877, + [1354] = 869, + [1355] = 839, + [1356] = 878, + [1357] = 853, [1358] = 842, - [1359] = 831, - [1360] = 852, - [1361] = 832, - [1362] = 853, - [1363] = 854, - [1364] = 855, - [1365] = 856, - [1366] = 857, - [1367] = 858, - [1368] = 833, - [1369] = 859, - [1370] = 834, - [1371] = 860, - [1372] = 861, - [1373] = 862, - [1374] = 863, - [1375] = 864, - [1376] = 835, - [1377] = 865, - [1378] = 836, - [1379] = 867, - [1380] = 868, - [1381] = 869, - [1382] = 837, - [1383] = 871, - [1384] = 838, - [1385] = 872, - [1386] = 839, - [1387] = 873, - [1388] = 874, - [1389] = 875, - [1390] = 801, - [1391] = 840, - [1392] = 892, - [1393] = 818, - [1394] = 841, - [1395] = 892, - [1396] = 818, - [1397] = 843, - [1398] = 844, - [1399] = 845, - [1400] = 846, - [1401] = 847, - [1402] = 848, - [1403] = 849, - [1404] = 850, - [1405] = 842, - [1406] = 818, - [1407] = 852, - [1408] = 853, - [1409] = 854, - [1410] = 855, - [1411] = 856, - [1412] = 857, - [1413] = 858, - [1414] = 859, - [1415] = 819, - [1416] = 860, - [1417] = 861, - [1418] = 862, - [1419] = 863, - [1420] = 864, - [1421] = 820, - [1422] = 865, - [1423] = 867, - [1424] = 868, - [1425] = 869, - [1426] = 871, - [1427] = 872, - [1428] = 821, - [1429] = 873, - [1430] = 874, - [1431] = 875, - [1432] = 804, - [1433] = 801, - [1434] = 802, - [1435] = 822, - [1436] = 805, - [1437] = 823, - [1438] = 800, - [1439] = 824, - [1440] = 806, - [1441] = 802, - [1442] = 803, - [1443] = 825, - [1444] = 804, - [1445] = 805, - [1446] = 806, - [1447] = 807, - [1448] = 808, - [1449] = 809, - [1450] = 810, - [1451] = 811, - [1452] = 826, - [1453] = 812, - [1454] = 813, - [1455] = 892, - [1456] = 814, - [1457] = 815, - [1458] = 816, - [1459] = 817, - [1460] = 827, - [1461] = 818, - [1462] = 819, - [1463] = 820, - [1464] = 828, - [1465] = 821, - [1466] = 829, - [1467] = 822, - [1468] = 823, - [1469] = 824, - [1470] = 830, - [1471] = 825, - [1472] = 826, - [1473] = 827, - [1474] = 828, - [1475] = 829, - [1476] = 830, - [1477] = 831, - [1478] = 832, - [1479] = 833, - [1480] = 834, - [1481] = 835, - [1482] = 836, - [1483] = 837, - [1484] = 838, - [1485] = 839, - [1486] = 840, - [1487] = 841, - [1488] = 831, - [1489] = 832, - [1490] = 843, - [1491] = 844, - [1492] = 845, - [1493] = 846, - [1494] = 847, - [1495] = 848, - [1496] = 849, - [1497] = 850, - [1498] = 842, - [1499] = 852, - [1500] = 833, - [1501] = 853, - [1502] = 854, - [1503] = 855, - [1504] = 856, - [1505] = 857, - [1506] = 858, - [1507] = 834, - [1508] = 859, - [1509] = 835, - [1510] = 860, - [1511] = 861, - [1512] = 862, - [1513] = 863, - [1514] = 864, - [1515] = 865, - [1516] = 867, - [1517] = 868, - [1518] = 869, - [1519] = 871, - [1520] = 872, - [1521] = 873, - [1522] = 874, - [1523] = 875, - [1524] = 801, - [1525] = 836, - [1526] = 837, - [1527] = 838, - [1528] = 800, - [1529] = 839, - [1530] = 803, - [1531] = 802, - [1532] = 803, - [1533] = 807, - [1534] = 840, - [1535] = 804, - [1536] = 805, - [1537] = 806, - [1538] = 807, - [1539] = 808, - [1540] = 809, - [1541] = 810, - [1542] = 811, - [1543] = 1202, - [1544] = 812, - [1545] = 813, - [1546] = 892, - [1547] = 814, - [1548] = 815, - [1549] = 816, - [1550] = 817, - [1551] = 841, - [1552] = 818, - [1553] = 819, - [1554] = 820, - [1555] = 821, - [1556] = 822, - [1557] = 823, - [1558] = 824, - [1559] = 825, - [1560] = 826, - [1561] = 827, - [1562] = 828, - [1563] = 829, - [1564] = 830, - [1565] = 831, - [1566] = 832, - [1567] = 833, - [1568] = 834, - [1569] = 835, - [1570] = 836, - [1571] = 837, - [1572] = 838, - [1573] = 839, - [1574] = 840, - [1575] = 841, - [1576] = 843, - [1577] = 844, - [1578] = 845, - [1579] = 846, - [1580] = 847, - [1581] = 848, - [1582] = 849, - [1583] = 850, - [1584] = 842, - [1585] = 852, - [1586] = 808, - [1587] = 853, - [1588] = 854, - [1589] = 855, - [1590] = 856, - [1591] = 857, - [1592] = 858, - [1593] = 859, - [1594] = 860, - [1595] = 861, - [1596] = 862, - [1597] = 863, - [1598] = 864, - [1599] = 865, - [1600] = 867, - [1601] = 868, - [1602] = 869, - [1603] = 871, - [1604] = 872, - [1605] = 873, - [1606] = 843, - [1607] = 874, - [1608] = 875, - [1609] = 844, - [1610] = 845, - [1611] = 800, - [1612] = 846, - [1613] = 802, - [1614] = 803, - [1615] = 804, - [1616] = 805, - [1617] = 806, - [1618] = 807, - [1619] = 808, - [1620] = 809, - [1621] = 810, - [1622] = 811, - [1623] = 812, - [1624] = 813, - [1625] = 892, - [1626] = 814, - [1627] = 815, - [1628] = 816, - [1629] = 817, - [1630] = 818, - [1631] = 819, - [1632] = 820, - [1633] = 821, - [1634] = 822, - [1635] = 823, - [1636] = 824, - [1637] = 825, - [1638] = 826, - [1639] = 827, - [1640] = 828, - [1641] = 829, - [1642] = 830, - [1643] = 831, - [1644] = 832, - [1645] = 833, - [1646] = 834, - [1647] = 835, - [1648] = 836, - [1649] = 837, - [1650] = 838, - [1651] = 839, - [1652] = 840, - [1653] = 847, - [1654] = 841, - [1655] = 848, - [1656] = 843, - [1657] = 844, - [1658] = 845, - [1659] = 846, - [1660] = 847, - [1661] = 849, - [1662] = 848, - [1663] = 849, - [1664] = 850, - [1665] = 842, - [1666] = 852, - [1667] = 853, - [1668] = 854, - [1669] = 855, - [1670] = 856, - [1671] = 857, - [1672] = 858, - [1673] = 850, - [1674] = 859, - [1675] = 860, - [1676] = 861, - [1677] = 862, - [1678] = 863, - [1679] = 864, - [1680] = 865, - [1681] = 867, - [1682] = 868, - [1683] = 869, - [1684] = 871, - [1685] = 872, - [1686] = 873, - [1687] = 874, - [1688] = 875, - [1689] = 836, + [1359] = 808, + [1360] = 879, + [1361] = 880, + [1362] = 812, + [1363] = 841, + [1364] = 848, + [1365] = 849, + [1366] = 850, + [1367] = 851, + [1368] = 852, + [1369] = 853, + [1370] = 881, + [1371] = 855, + [1372] = 856, + [1373] = 857, + [1374] = 858, + [1375] = 800, + [1376] = 837, + [1377] = 845, + [1378] = 870, + [1379] = 862, + [1380] = 863, + [1381] = 864, + [1382] = 882, + [1383] = 866, + [1384] = 883, + [1385] = 868, + [1386] = 869, + [1387] = 870, + [1388] = 884, + [1389] = 871, + [1390] = 872, + [1391] = 873, + [1392] = 874, + [1393] = 875, + [1394] = 876, + [1395] = 877, + [1396] = 878, + [1397] = 879, + [1398] = 880, + [1399] = 881, + [1400] = 882, + [1401] = 883, + [1402] = 884, + [1403] = 885, + [1404] = 815, + [1405] = 887, + [1406] = 871, + [1407] = 889, + [1408] = 885, + [1409] = 872, + [1410] = 892, + [1411] = 893, + [1412] = 894, + [1413] = 895, + [1414] = 896, + [1415] = 873, + [1416] = 898, + [1417] = 899, + [1418] = 801, + [1419] = 802, + [1420] = 874, + [1421] = 804, + [1422] = 887, + [1423] = 805, + [1424] = 806, + [1425] = 807, + [1426] = 808, + [1427] = 809, + [1428] = 810, + [1429] = 875, + [1430] = 811, + [1431] = 889, + [1432] = 813, + [1433] = 814, + [1434] = 815, + [1435] = 803, + [1436] = 817, + [1437] = 819, + [1438] = 821, + [1439] = 822, + [1440] = 823, + [1441] = 825, + [1442] = 827, + [1443] = 829, + [1444] = 831, + [1445] = 832, + [1446] = 833, + [1447] = 876, + [1448] = 877, + [1449] = 842, + [1450] = 878, + [1451] = 879, + [1452] = 839, + [1453] = 843, + [1454] = 842, + [1455] = 843, + [1456] = 892, + [1457] = 893, + [1458] = 812, + [1459] = 841, + [1460] = 848, + [1461] = 849, + [1462] = 850, + [1463] = 851, + [1464] = 852, + [1465] = 853, + [1466] = 894, + [1467] = 855, + [1468] = 856, + [1469] = 857, + [1470] = 858, + [1471] = 800, + [1472] = 837, + [1473] = 845, + [1474] = 880, + [1475] = 862, + [1476] = 863, + [1477] = 864, + [1478] = 895, + [1479] = 866, + [1480] = 868, + [1481] = 869, + [1482] = 870, + [1483] = 871, + [1484] = 872, + [1485] = 873, + [1486] = 874, + [1487] = 875, + [1488] = 876, + [1489] = 877, + [1490] = 878, + [1491] = 879, + [1492] = 880, + [1493] = 881, + [1494] = 882, + [1495] = 883, + [1496] = 884, + [1497] = 885, + [1498] = 881, + [1499] = 887, + [1500] = 882, + [1501] = 889, + [1502] = 896, + [1503] = 883, + [1504] = 892, + [1505] = 893, + [1506] = 894, + [1507] = 895, + [1508] = 896, + [1509] = 884, + [1510] = 898, + [1511] = 899, + [1512] = 801, + [1513] = 802, + [1514] = 898, + [1515] = 804, + [1516] = 899, + [1517] = 805, + [1518] = 806, + [1519] = 807, + [1520] = 808, + [1521] = 809, + [1522] = 810, + [1523] = 801, + [1524] = 811, + [1525] = 813, + [1526] = 814, + [1527] = 815, + [1528] = 803, + [1529] = 817, + [1530] = 819, + [1531] = 821, + [1532] = 822, + [1533] = 823, + [1534] = 825, + [1535] = 827, + [1536] = 829, + [1537] = 831, + [1538] = 832, + [1539] = 885, + [1540] = 813, + [1541] = 887, + [1542] = 814, + [1543] = 839, + [1544] = 842, + [1545] = 843, + [1546] = 812, + [1547] = 841, + [1548] = 848, + [1549] = 849, + [1550] = 850, + [1551] = 851, + [1552] = 852, + [1553] = 853, + [1554] = 855, + [1555] = 856, + [1556] = 857, + [1557] = 858, + [1558] = 800, + [1559] = 837, + [1560] = 845, + [1561] = 889, + [1562] = 862, + [1563] = 863, + [1564] = 864, + [1565] = 866, + [1566] = 868, + [1567] = 869, + [1568] = 870, + [1569] = 871, + [1570] = 872, + [1571] = 873, + [1572] = 874, + [1573] = 875, + [1574] = 876, + [1575] = 877, + [1576] = 878, + [1577] = 879, + [1578] = 880, + [1579] = 881, + [1580] = 882, + [1581] = 883, + [1582] = 884, + [1583] = 885, + [1584] = 887, + [1585] = 889, + [1586] = 892, + [1587] = 893, + [1588] = 894, + [1589] = 895, + [1590] = 896, + [1591] = 892, + [1592] = 898, + [1593] = 899, + [1594] = 801, + [1595] = 802, + [1596] = 804, + [1597] = 805, + [1598] = 806, + [1599] = 807, + [1600] = 808, + [1601] = 809, + [1602] = 810, + [1603] = 811, + [1604] = 813, + [1605] = 814, + [1606] = 815, + [1607] = 803, + [1608] = 817, + [1609] = 819, + [1610] = 802, + [1611] = 821, + [1612] = 822, + [1613] = 823, + [1614] = 855, + [1615] = 825, + [1616] = 827, + [1617] = 804, + [1618] = 829, + [1619] = 856, + [1620] = 831, + [1621] = 832, + [1622] = 833, + [1623] = 893, + [1624] = 894, + [1625] = 805, + [1626] = 806, + [1627] = 895, + [1628] = 839, + [1629] = 807, + [1630] = 842, + [1631] = 843, + [1632] = 808, + [1633] = 812, + [1634] = 841, + [1635] = 848, + [1636] = 849, + [1637] = 850, + [1638] = 851, + [1639] = 852, + [1640] = 853, + [1641] = 809, + [1642] = 855, + [1643] = 856, + [1644] = 858, + [1645] = 800, + [1646] = 837, + [1647] = 845, + [1648] = 896, + [1649] = 862, + [1650] = 863, + [1651] = 864, + [1652] = 866, + [1653] = 868, + [1654] = 869, + [1655] = 870, + [1656] = 871, + [1657] = 872, + [1658] = 873, + [1659] = 874, + [1660] = 875, + [1661] = 876, + [1662] = 877, + [1663] = 878, + [1664] = 879, + [1665] = 880, + [1666] = 881, + [1667] = 882, + [1668] = 883, + [1669] = 884, + [1670] = 885, + [1671] = 815, + [1672] = 887, + [1673] = 898, + [1674] = 889, + [1675] = 892, + [1676] = 893, + [1677] = 894, + [1678] = 895, + [1679] = 896, + [1680] = 899, + [1681] = 898, + [1682] = 899, + [1683] = 801, + [1684] = 802, + [1685] = 804, + [1686] = 805, + [1687] = 806, + [1688] = 807, + [1689] = 843, [1690] = 1690, - [1691] = 1691, + [1691] = 1690, [1692] = 1692, [1693] = 1693, [1694] = 1692, - [1695] = 1695, - [1696] = 1691, - [1697] = 1690, - [1698] = 1692, - [1699] = 1695, - [1700] = 1691, - [1701] = 1695, - [1702] = 1691, - [1703] = 1690, - [1704] = 1692, - [1705] = 1690, - [1706] = 1692, - [1707] = 1695, - [1708] = 1691, - [1709] = 1695, + [1695] = 1693, + [1696] = 1692, + [1697] = 1697, + [1698] = 1690, + [1699] = 1697, + [1700] = 1690, + [1701] = 1693, + [1702] = 1692, + [1703] = 1697, + [1704] = 1690, + [1705] = 1697, + [1706] = 1690, + [1707] = 1693, + [1708] = 1692, + [1709] = 1697, [1710] = 1690, - [1711] = 1692, - [1712] = 1691, - [1713] = 1695, - [1714] = 1691, - [1715] = 1690, - [1716] = 1695, - [1717] = 1691, - [1718] = 1690, - [1719] = 1692, - [1720] = 1695, - [1721] = 1691, + [1711] = 1693, + [1712] = 1692, + [1713] = 1697, + [1714] = 1693, + [1715] = 1692, + [1716] = 1697, + [1717] = 1690, + [1718] = 1718, + [1719] = 1693, + [1720] = 1692, + [1721] = 1697, [1722] = 1690, - [1723] = 1692, - [1724] = 1690, - [1725] = 1692, - [1726] = 1695, - [1727] = 1695, - [1728] = 1691, - [1729] = 1691, + [1723] = 1723, + [1724] = 1692, + [1725] = 1693, + [1726] = 1692, + [1727] = 1693, + [1728] = 1697, + [1729] = 1697, [1730] = 1690, - [1731] = 1690, + [1731] = 1693, [1732] = 1692, - [1733] = 1690, - [1734] = 1692, - [1735] = 1695, - [1736] = 1691, - [1737] = 1695, - [1738] = 1738, - [1739] = 1692, + [1733] = 1697, + [1734] = 1690, + [1735] = 1693, + [1736] = 1692, + [1737] = 1690, + [1738] = 1697, + [1739] = 1693, [1740] = 1740, [1741] = 1741, [1742] = 1742, @@ -3235,64 +3232,64 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1758] = 1758, [1759] = 1759, [1760] = 1760, - [1761] = 1760, - [1762] = 1759, + [1761] = 1758, + [1762] = 1758, [1763] = 1759, - [1764] = 1760, - [1765] = 1760, - [1766] = 1760, - [1767] = 1760, - [1768] = 1760, - [1769] = 1760, - [1770] = 1759, - [1771] = 1759, + [1764] = 1764, + [1765] = 1758, + [1766] = 1758, + [1767] = 1758, + [1768] = 1759, + [1769] = 1759, + [1770] = 1758, + [1771] = 1771, [1772] = 1772, [1773] = 1759, - [1774] = 1774, - [1775] = 1760, - [1776] = 1760, + [1774] = 1758, + [1775] = 1758, + [1776] = 1758, [1777] = 1759, - [1778] = 1759, + [1778] = 1758, [1779] = 1759, - [1780] = 1759, + [1780] = 1780, [1781] = 1759, - [1782] = 1782, - [1783] = 1783, - [1784] = 1760, - [1785] = 1760, + [1782] = 1758, + [1783] = 1759, + [1784] = 1759, + [1785] = 1759, [1786] = 1759, [1787] = 1787, [1788] = 1788, [1789] = 1789, [1790] = 1790, [1791] = 1791, - [1792] = 713, + [1792] = 1792, [1793] = 1793, - [1794] = 1794, + [1794] = 707, [1795] = 1795, [1796] = 1796, - [1797] = 710, + [1797] = 708, [1798] = 1798, [1799] = 1799, [1800] = 1800, [1801] = 1801, [1802] = 1802, - [1803] = 801, + [1803] = 1803, [1804] = 1804, [1805] = 1805, [1806] = 1806, [1807] = 1807, [1808] = 1808, - [1809] = 1809, + [1809] = 857, [1810] = 1810, [1811] = 1811, [1812] = 1812, [1813] = 1813, [1814] = 1814, - [1815] = 1815, - [1816] = 1816, - [1817] = 892, - [1818] = 818, + [1815] = 833, + [1816] = 862, + [1817] = 1817, + [1818] = 1818, [1819] = 1819, [1820] = 1820, [1821] = 1821, @@ -3302,629 +3299,629 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1825] = 1825, [1826] = 1826, [1827] = 1827, - [1828] = 710, - [1829] = 1829, - [1830] = 713, + [1828] = 1828, + [1829] = 708, + [1830] = 707, [1831] = 1831, [1832] = 1832, - [1833] = 818, - [1834] = 1834, - [1835] = 713, - [1836] = 713, - [1837] = 892, - [1838] = 1838, - [1839] = 1839, - [1840] = 1840, - [1841] = 1841, - [1842] = 892, - [1843] = 892, + [1833] = 1833, + [1834] = 707, + [1835] = 707, + [1836] = 1836, + [1837] = 1837, + [1838] = 857, + [1839] = 862, + [1840] = 857, + [1841] = 857, + [1842] = 1842, + [1843] = 1843, [1844] = 1844, [1845] = 1845, [1846] = 1846, - [1847] = 1846, - [1848] = 1848, - [1849] = 1849, + [1847] = 1847, + [1848] = 1847, + [1849] = 1847, [1850] = 1850, - [1851] = 1846, - [1852] = 1848, - [1853] = 1849, + [1851] = 1851, + [1852] = 1846, + [1853] = 1847, [1854] = 1850, - [1855] = 1846, - [1856] = 1848, - [1857] = 1849, - [1858] = 1850, - [1859] = 1846, - [1860] = 1848, - [1861] = 1849, - [1862] = 1850, - [1863] = 1846, - [1864] = 1848, - [1865] = 1849, - [1866] = 1850, + [1855] = 1847, + [1856] = 1850, + [1857] = 1851, + [1858] = 1846, + [1859] = 1851, + [1860] = 1846, + [1861] = 1850, + [1862] = 1851, + [1863] = 1847, + [1864] = 1850, + [1865] = 1851, + [1866] = 1846, [1867] = 1846, - [1868] = 1848, - [1869] = 1849, + [1868] = 1850, + [1869] = 1847, [1870] = 1850, - [1871] = 1846, - [1872] = 1848, - [1873] = 1849, + [1871] = 1851, + [1872] = 1846, + [1873] = 1847, [1874] = 1850, - [1875] = 1846, - [1876] = 1848, - [1877] = 1849, + [1875] = 1851, + [1876] = 1846, + [1877] = 1847, [1878] = 1850, - [1879] = 1849, - [1880] = 1850, - [1881] = 1846, - [1882] = 1848, - [1883] = 1849, + [1879] = 1851, + [1880] = 1846, + [1881] = 1850, + [1882] = 1851, + [1883] = 1847, [1884] = 1850, - [1885] = 1846, - [1886] = 1848, - [1887] = 1849, + [1885] = 1851, + [1886] = 1846, + [1887] = 1846, [1888] = 1850, - [1889] = 1848, - [1890] = 1850, - [1891] = 1848, - [1892] = 1849, + [1889] = 1846, + [1890] = 1851, + [1891] = 1846, + [1892] = 1847, [1893] = 1850, - [1894] = 1846, - [1895] = 1848, + [1894] = 1851, + [1895] = 1847, [1896] = 1896, [1897] = 1897, [1898] = 1898, [1899] = 1899, - [1900] = 1900, + [1900] = 1899, [1901] = 1901, - [1902] = 1899, + [1902] = 1902, [1903] = 1903, [1904] = 1899, - [1905] = 1901, - [1906] = 1906, - [1907] = 1901, - [1908] = 1906, - [1909] = 1903, - [1910] = 1900, - [1911] = 1900, - [1912] = 1899, - [1913] = 1906, + [1905] = 1905, + [1906] = 1905, + [1907] = 1905, + [1908] = 1903, + [1909] = 1901, + [1910] = 1899, + [1911] = 1901, + [1912] = 1902, + [1913] = 1903, [1914] = 1899, - [1915] = 1901, - [1916] = 1906, - [1917] = 1903, - [1918] = 1900, - [1919] = 1903, - [1920] = 1900, - [1921] = 1900, - [1922] = 1899, - [1923] = 1899, - [1924] = 1901, - [1925] = 1906, - [1926] = 1903, - [1927] = 1900, + [1915] = 1902, + [1916] = 1903, + [1917] = 1899, + [1918] = 1905, + [1919] = 708, + [1920] = 1901, + [1921] = 1902, + [1922] = 708, + [1923] = 1903, + [1924] = 1899, + [1925] = 1905, + [1926] = 1905, + [1927] = 1903, [1928] = 1901, - [1929] = 1906, - [1930] = 1899, - [1931] = 1903, - [1932] = 1901, - [1933] = 1906, - [1934] = 1903, - [1935] = 1900, - [1936] = 1900, + [1929] = 1902, + [1930] = 1901, + [1931] = 1902, + [1932] = 1903, + [1933] = 1899, + [1934] = 1901, + [1935] = 1902, + [1936] = 1903, [1937] = 1899, - [1938] = 1901, + [1938] = 1903, [1939] = 1899, - [1940] = 1903, - [1941] = 1901, - [1942] = 1906, + [1940] = 1901, + [1941] = 1902, + [1942] = 1901, [1943] = 1903, - [1944] = 1900, - [1945] = 1899, - [1946] = 1899, - [1947] = 710, - [1948] = 1901, - [1949] = 1901, - [1950] = 1906, - [1951] = 1906, + [1944] = 1899, + [1945] = 1901, + [1946] = 1905, + [1947] = 1902, + [1948] = 1905, + [1949] = 1905, + [1950] = 1901, + [1951] = 1902, [1952] = 1903, - [1953] = 1900, - [1954] = 710, - [1955] = 1903, - [1956] = 1900, - [1957] = 1901, - [1958] = 1906, - [1959] = 1903, - [1960] = 1906, + [1953] = 1902, + [1954] = 1905, + [1955] = 1905, + [1956] = 1901, + [1957] = 1902, + [1958] = 1903, + [1959] = 1899, + [1960] = 1905, [1961] = 1961, [1962] = 1962, - [1963] = 1962, + [1963] = 1963, [1964] = 1964, - [1965] = 1962, + [1965] = 862, [1966] = 1964, - [1967] = 1961, - [1968] = 1962, - [1969] = 1962, - [1970] = 1964, - [1971] = 1971, - [1972] = 1971, - [1973] = 1971, - [1974] = 1961, - [1975] = 1964, - [1976] = 1964, - [1977] = 710, - [1978] = 1961, - [1979] = 1964, - [1980] = 1971, - [1981] = 1962, - [1982] = 1964, - [1983] = 1962, - [1984] = 1971, - [1985] = 1964, - [1986] = 1971, - [1987] = 1961, - [1988] = 1961, - [1989] = 1772, - [1990] = 710, - [1991] = 1971, - [1992] = 1962, - [1993] = 1964, - [1994] = 1961, - [1995] = 1971, + [1967] = 1962, + [1968] = 1963, + [1969] = 1771, + [1970] = 1963, + [1971] = 1963, + [1972] = 1961, + [1973] = 1961, + [1974] = 1964, + [1975] = 1962, + [1976] = 1961, + [1977] = 1964, + [1978] = 1962, + [1979] = 1963, + [1980] = 708, + [1981] = 1961, + [1982] = 1963, + [1983] = 1963, + [1984] = 1963, + [1985] = 1962, + [1986] = 1961, + [1987] = 1963, + [1988] = 1962, + [1989] = 1961, + [1990] = 1961, + [1991] = 1964, + [1992] = 1964, + [1993] = 862, + [1994] = 1962, + [1995] = 1963, [1996] = 1961, - [1997] = 1961, - [1998] = 1962, - [1999] = 818, - [2000] = 1962, - [2001] = 1961, - [2002] = 1964, - [2003] = 1971, - [2004] = 1971, + [1997] = 1964, + [1998] = 1964, + [1999] = 1961, + [2000] = 2000, + [2001] = 1962, + [2002] = 708, + [2003] = 1962, + [2004] = 1964, [2005] = 1964, - [2006] = 1971, - [2007] = 1971, - [2008] = 1961, - [2009] = 1962, - [2010] = 1961, - [2011] = 2011, - [2012] = 818, - [2013] = 1962, - [2014] = 1964, + [2006] = 1963, + [2007] = 1964, + [2008] = 1962, + [2009] = 1964, + [2010] = 1962, + [2011] = 1961, + [2012] = 1962, + [2013] = 1963, + [2014] = 1961, [2015] = 2015, - [2016] = 818, - [2017] = 2017, - [2018] = 2018, - [2019] = 2018, - [2020] = 2015, - [2021] = 2018, - [2022] = 2015, - [2023] = 2018, - [2024] = 2017, - [2025] = 2015, - [2026] = 2018, - [2027] = 2017, - [2028] = 2017, - [2029] = 2017, - [2030] = 2015, - [2031] = 2018, - [2032] = 2018, - [2033] = 2017, - [2034] = 2015, - [2035] = 2015, - [2036] = 2018, - [2037] = 2015, - [2038] = 2018, - [2039] = 2018, - [2040] = 2017, - [2041] = 2017, - [2042] = 2017, - [2043] = 2015, + [2016] = 2016, + [2017] = 2015, + [2018] = 2016, + [2019] = 2015, + [2020] = 2016, + [2021] = 2016, + [2022] = 2016, + [2023] = 2016, + [2024] = 2024, + [2025] = 2024, + [2026] = 2015, + [2027] = 2015, + [2028] = 2024, + [2029] = 2015, + [2030] = 2016, + [2031] = 2024, + [2032] = 862, + [2033] = 862, + [2034] = 2016, + [2035] = 2024, + [2036] = 2015, + [2037] = 2016, + [2038] = 2015, + [2039] = 2024, + [2040] = 2016, + [2041] = 2024, + [2042] = 2024, + [2043] = 2024, [2044] = 2015, - [2045] = 2018, - [2046] = 2015, - [2047] = 2015, - [2048] = 2017, - [2049] = 2017, - [2050] = 818, - [2051] = 2018, - [2052] = 2017, - [2053] = 713, + [2045] = 2015, + [2046] = 2024, + [2047] = 2024, + [2048] = 2015, + [2049] = 2024, + [2050] = 2016, + [2051] = 2015, + [2052] = 2016, + [2053] = 707, [2054] = 2054, [2055] = 2055, [2056] = 2056, - [2057] = 2054, + [2057] = 2057, [2058] = 2058, [2059] = 2059, [2060] = 2060, [2061] = 2061, - [2062] = 2054, + [2062] = 2062, [2063] = 2063, - [2064] = 2060, - [2065] = 2063, + [2064] = 2056, + [2065] = 2065, [2066] = 2066, [2067] = 2067, [2068] = 2068, [2069] = 2069, [2070] = 2070, - [2071] = 2066, - [2072] = 2067, - [2073] = 2068, - [2074] = 2069, - [2075] = 2075, - [2076] = 2076, - [2077] = 2070, - [2078] = 2078, - [2079] = 2075, - [2080] = 2080, - [2081] = 2054, - [2082] = 2082, - [2083] = 2083, - [2084] = 2084, - [2085] = 2085, - [2086] = 2078, - [2087] = 2087, - [2088] = 2075, - [2089] = 2055, - [2090] = 2090, - [2091] = 2058, - [2092] = 2060, - [2093] = 2078, - [2094] = 2078, - [2095] = 2080, - [2096] = 2083, - [2097] = 2058, - [2098] = 2080, - [2099] = 2078, - [2100] = 2080, - [2101] = 2082, - [2102] = 2085, - [2103] = 2087, - [2104] = 2085, + [2071] = 2071, + [2072] = 2057, + [2073] = 2058, + [2074] = 2062, + [2075] = 2056, + [2076] = 2057, + [2077] = 2058, + [2078] = 2063, + [2079] = 2061, + [2080] = 2061, + [2081] = 2081, + [2082] = 2062, + [2083] = 2063, + [2084] = 2062, + [2085] = 2063, + [2086] = 2065, + [2087] = 2066, + [2088] = 2067, + [2089] = 2068, + [2090] = 2069, + [2091] = 2065, + [2092] = 2065, + [2093] = 2081, + [2094] = 2070, + [2095] = 2071, + [2096] = 2066, + [2097] = 2067, + [2098] = 2068, + [2099] = 2070, + [2100] = 2069, + [2101] = 2054, + [2102] = 2102, + [2103] = 2103, + [2104] = 2070, [2105] = 2105, - [2106] = 2075, - [2107] = 2082, - [2108] = 2090, - [2109] = 2090, - [2110] = 2083, - [2111] = 2105, - [2112] = 2083, - [2113] = 2084, - [2114] = 2055, - [2115] = 2056, - [2116] = 2105, - [2117] = 2069, - [2118] = 2059, - [2119] = 2080, - [2120] = 2061, - [2121] = 2054, - [2122] = 2084, - [2123] = 2060, + [2106] = 2106, + [2107] = 2071, + [2108] = 2066, + [2109] = 2067, + [2110] = 2110, + [2111] = 2068, + [2112] = 2055, + [2113] = 2059, + [2114] = 2060, + [2115] = 2069, + [2116] = 2056, + [2117] = 2057, + [2118] = 2058, + [2119] = 2070, + [2120] = 2071, + [2121] = 2061, + [2122] = 2054, + [2123] = 2062, [2124] = 2063, - [2125] = 2066, - [2126] = 2067, - [2127] = 2068, - [2128] = 2069, - [2129] = 2070, - [2130] = 2087, - [2131] = 2105, - [2132] = 2055, - [2133] = 2075, - [2134] = 2084, - [2135] = 2082, - [2136] = 2055, - [2137] = 2056, - [2138] = 2090, - [2139] = 2083, - [2140] = 2105, - [2141] = 2085, - [2142] = 2056, - [2143] = 2087, - [2144] = 2058, - [2145] = 2084, - [2146] = 2055, - [2147] = 2056, - [2148] = 2059, - [2149] = 2068, - [2150] = 2058, - [2151] = 2085, - [2152] = 2075, - [2153] = 801, - [2154] = 2078, - [2155] = 2080, - [2156] = 2059, - [2157] = 2061, - [2158] = 2058, - [2159] = 2085, - [2160] = 2078, - [2161] = 2080, - [2162] = 2061, - [2163] = 2085, - [2164] = 2087, - [2165] = 2054, - [2166] = 2087, - [2167] = 2054, - [2168] = 2082, - [2169] = 2075, - [2170] = 2090, - [2171] = 2083, - [2172] = 2105, - [2173] = 2059, - [2174] = 2084, - [2175] = 2055, - [2176] = 2056, - [2177] = 2082, - [2178] = 2087, - [2179] = 2059, - [2180] = 2090, - [2181] = 2061, - [2182] = 2054, - [2183] = 2083, - [2184] = 2060, - [2185] = 2063, - [2186] = 2066, - [2187] = 2067, - [2188] = 2068, - [2189] = 2069, - [2190] = 2070, - [2191] = 2105, - [2192] = 2061, - [2193] = 2060, - [2194] = 2082, - [2195] = 2084, - [2196] = 2063, - [2197] = 2066, - [2198] = 2067, - [2199] = 2068, - [2200] = 2069, - [2201] = 2070, - [2202] = 2059, + [2125] = 2065, + [2126] = 2066, + [2127] = 2067, + [2128] = 2068, + [2129] = 2069, + [2130] = 2070, + [2131] = 2071, + [2132] = 2054, + [2133] = 2071, + [2134] = 2102, + [2135] = 2103, + [2136] = 2110, + [2137] = 2061, + [2138] = 2081, + [2139] = 2081, + [2140] = 2062, + [2141] = 2081, + [2142] = 2105, + [2143] = 2063, + [2144] = 2106, + [2145] = 2054, + [2146] = 2146, + [2147] = 2054, + [2148] = 2102, + [2149] = 2102, + [2150] = 2103, + [2151] = 2103, + [2152] = 2105, + [2153] = 2106, + [2154] = 2054, + [2155] = 2105, + [2156] = 2106, + [2157] = 2110, + [2158] = 2065, + [2159] = 2055, + [2160] = 2059, + [2161] = 2060, + [2162] = 2056, + [2163] = 2057, + [2164] = 2058, + [2165] = 2102, + [2166] = 2110, + [2167] = 2061, + [2168] = 2062, + [2169] = 2063, + [2170] = 2110, + [2171] = 2065, + [2172] = 2066, + [2173] = 2067, + [2174] = 2068, + [2175] = 2069, + [2176] = 2070, + [2177] = 2071, + [2178] = 2055, + [2179] = 2102, + [2180] = 2103, + [2181] = 2059, + [2182] = 2060, + [2183] = 2105, + [2184] = 2106, + [2185] = 2081, + [2186] = 2056, + [2187] = 2057, + [2188] = 2110, + [2189] = 2058, + [2190] = 2055, + [2191] = 2059, + [2192] = 2060, + [2193] = 2056, + [2194] = 2057, + [2195] = 2061, + [2196] = 2081, + [2197] = 2058, + [2198] = 2081, + [2199] = 2062, + [2200] = 2061, + [2201] = 2063, + [2202] = 2062, [2203] = 2055, - [2204] = 2056, - [2205] = 892, - [2206] = 2056, - [2207] = 2058, - [2208] = 2054, - [2209] = 2084, - [2210] = 2059, - [2211] = 2075, - [2212] = 2061, - [2213] = 2054, - [2214] = 2058, - [2215] = 2060, - [2216] = 2058, - [2217] = 2078, - [2218] = 2080, - [2219] = 2085, - [2220] = 2087, - [2221] = 2063, - [2222] = 2066, - [2223] = 2082, - [2224] = 2067, - [2225] = 2090, - [2226] = 2083, - [2227] = 2105, - [2228] = 2068, - [2229] = 2084, - [2230] = 2055, - [2231] = 2056, - [2232] = 2069, - [2233] = 2070, - [2234] = 2059, - [2235] = 2078, - [2236] = 2061, - [2237] = 2054, - [2238] = 2060, - [2239] = 2060, - [2240] = 2063, - [2241] = 2066, - [2242] = 2067, - [2243] = 2068, - [2244] = 2069, - [2245] = 2070, - [2246] = 2080, - [2247] = 2063, - [2248] = 2063, - [2249] = 2066, - [2250] = 2067, - [2251] = 2085, - [2252] = 2066, - [2253] = 2087, - [2254] = 2068, - [2255] = 2075, - [2256] = 2069, - [2257] = 2070, - [2258] = 2060, - [2259] = 2061, - [2260] = 2063, - [2261] = 2082, - [2262] = 2075, - [2263] = 2090, - [2264] = 2066, - [2265] = 2058, - [2266] = 2090, - [2267] = 2075, - [2268] = 2058, - [2269] = 2078, - [2270] = 2080, - [2271] = 2085, - [2272] = 2087, - [2273] = 2078, - [2274] = 2083, - [2275] = 2105, - [2276] = 2082, - [2277] = 2067, - [2278] = 2090, - [2279] = 2083, - [2280] = 2105, - [2281] = 2070, - [2282] = 2084, - [2283] = 2055, - [2284] = 2056, - [2285] = 2080, - [2286] = 2084, - [2287] = 2059, - [2288] = 2055, - [2289] = 2061, - [2290] = 2054, - [2291] = 2058, - [2292] = 2060, - [2293] = 2063, - [2294] = 2066, - [2295] = 2067, - [2296] = 2068, - [2297] = 2069, - [2298] = 2070, - [2299] = 2056, - [2300] = 2078, - [2301] = 2085, - [2302] = 2087, - [2303] = 2080, - [2304] = 2068, - [2305] = 2085, - [2306] = 2082, - [2307] = 2087, - [2308] = 2090, - [2309] = 2083, - [2310] = 2105, - [2311] = 2069, - [2312] = 2084, - [2313] = 2055, - [2314] = 2056, - [2315] = 2059, - [2316] = 2082, - [2317] = 2059, - [2318] = 2070, + [2204] = 2054, + [2205] = 2063, + [2206] = 2102, + [2207] = 2103, + [2208] = 2065, + [2209] = 2105, + [2210] = 2106, + [2211] = 2065, + [2212] = 2066, + [2213] = 2067, + [2214] = 2110, + [2215] = 2068, + [2216] = 2055, + [2217] = 2059, + [2218] = 2060, + [2219] = 2069, + [2220] = 2056, + [2221] = 2057, + [2222] = 2058, + [2223] = 2070, + [2224] = 2071, + [2225] = 2061, + [2226] = 2059, + [2227] = 2062, + [2228] = 2063, + [2229] = 2081, + [2230] = 2065, + [2231] = 2066, + [2232] = 2067, + [2233] = 2060, + [2234] = 2069, + [2235] = 2070, + [2236] = 2071, + [2237] = 2060, + [2238] = 2066, + [2239] = 2067, + [2240] = 2068, + [2241] = 2069, + [2242] = 2070, + [2243] = 2071, + [2244] = 2066, + [2245] = 2067, + [2246] = 2105, + [2247] = 2055, + [2248] = 857, + [2249] = 2059, + [2250] = 2068, + [2251] = 2060, + [2252] = 2069, + [2253] = 2056, + [2254] = 2057, + [2255] = 2054, + [2256] = 2058, + [2257] = 2081, + [2258] = 2106, + [2259] = 2056, + [2260] = 2057, + [2261] = 2058, + [2262] = 2102, + [2263] = 2103, + [2264] = 2054, + [2265] = 2054, + [2266] = 2102, + [2267] = 2103, + [2268] = 2105, + [2269] = 2106, + [2270] = 2102, + [2271] = 2081, + [2272] = 2110, + [2273] = 2105, + [2274] = 2055, + [2275] = 2059, + [2276] = 2060, + [2277] = 2106, + [2278] = 2056, + [2279] = 2057, + [2280] = 2058, + [2281] = 2103, + [2282] = 2105, + [2283] = 2061, + [2284] = 2106, + [2285] = 2062, + [2286] = 2063, + [2287] = 2110, + [2288] = 2065, + [2289] = 2066, + [2290] = 2067, + [2291] = 2068, + [2292] = 2069, + [2293] = 2070, + [2294] = 2071, + [2295] = 2103, + [2296] = 2054, + [2297] = 2081, + [2298] = 2055, + [2299] = 833, + [2300] = 2102, + [2301] = 2103, + [2302] = 2102, + [2303] = 2103, + [2304] = 2059, + [2305] = 2105, + [2306] = 2106, + [2307] = 2105, + [2308] = 2106, + [2309] = 2060, + [2310] = 2110, + [2311] = 2110, + [2312] = 2055, + [2313] = 2059, + [2314] = 2060, + [2315] = 2056, + [2316] = 2057, + [2317] = 2058, + [2318] = 2110, [2319] = 2061, - [2320] = 2090, - [2321] = 2083, - [2322] = 2060, - [2323] = 2063, - [2324] = 2066, - [2325] = 2067, - [2326] = 2068, - [2327] = 2069, - [2328] = 2070, - [2329] = 2067, - [2330] = 2105, - [2331] = 2061, - [2332] = 2075, + [2320] = 2061, + [2321] = 2062, + [2322] = 2063, + [2323] = 2055, + [2324] = 2065, + [2325] = 2066, + [2326] = 2067, + [2327] = 2068, + [2328] = 2069, + [2329] = 2070, + [2330] = 2071, + [2331] = 2059, + [2332] = 2068, [2333] = 2333, [2334] = 2334, [2335] = 2335, - [2336] = 2336, - [2337] = 2336, + [2336] = 2335, + [2337] = 2337, [2338] = 2338, - [2339] = 2338, - [2340] = 2340, + [2339] = 2335, + [2340] = 2335, [2341] = 2341, - [2342] = 2342, - [2343] = 2341, + [2342] = 2337, + [2343] = 2343, [2344] = 2344, [2345] = 2341, - [2346] = 2338, - [2347] = 2344, - [2348] = 2348, + [2346] = 2346, + [2347] = 2337, + [2348] = 2341, [2349] = 2349, - [2350] = 2338, - [2351] = 2344, - [2352] = 2338, - [2353] = 2341, + [2350] = 2337, + [2351] = 2343, + [2352] = 2352, + [2353] = 2353, [2354] = 2344, - [2355] = 2338, - [2356] = 2356, - [2357] = 2338, - [2358] = 2349, - [2359] = 2338, - [2360] = 2349, - [2361] = 2349, - [2362] = 2341, - [2363] = 2341, - [2364] = 2341, - [2365] = 2344, - [2366] = 2349, - [2367] = 2338, - [2368] = 2349, + [2355] = 2355, + [2356] = 2335, + [2357] = 2343, + [2358] = 2341, + [2359] = 2349, + [2360] = 2343, + [2361] = 2352, + [2362] = 2353, + [2363] = 2344, + [2364] = 2355, + [2365] = 2349, + [2366] = 2335, + [2367] = 2352, + [2368] = 2353, [2369] = 2344, - [2370] = 2344, - [2371] = 2338, - [2372] = 2349, + [2370] = 2355, + [2371] = 2337, + [2372] = 2335, [2373] = 2373, - [2374] = 2344, - [2375] = 2349, - [2376] = 2341, - [2377] = 2338, - [2378] = 2341, - [2379] = 2338, - [2380] = 2341, - [2381] = 2344, - [2382] = 2349, - [2383] = 2344, - [2384] = 2384, - [2385] = 2341, + [2374] = 2349, + [2375] = 2343, + [2376] = 2352, + [2377] = 2353, + [2378] = 2344, + [2379] = 2355, + [2380] = 2343, + [2381] = 2343, + [2382] = 2341, + [2383] = 2352, + [2384] = 2349, + [2385] = 2343, [2386] = 2335, - [2387] = 2384, - [2388] = 2340, - [2389] = 2389, - [2390] = 2336, - [2391] = 2335, - [2392] = 2341, - [2393] = 2384, - [2394] = 2340, - [2395] = 2389, - [2396] = 2336, - [2397] = 2335, - [2398] = 2384, - [2399] = 2340, - [2400] = 2389, - [2401] = 2336, - [2402] = 2335, - [2403] = 2384, - [2404] = 2340, - [2405] = 2389, - [2406] = 2336, - [2407] = 2335, - [2408] = 2384, - [2409] = 2340, - [2410] = 2389, - [2411] = 2336, - [2412] = 2349, - [2413] = 2335, - [2414] = 2344, - [2415] = 2384, - [2416] = 2340, - [2417] = 2389, - [2418] = 2336, - [2419] = 2419, - [2420] = 2335, - [2421] = 2384, - [2422] = 2340, - [2423] = 2389, - [2424] = 2336, - [2425] = 2335, - [2426] = 2384, - [2427] = 2340, - [2428] = 2389, - [2429] = 2336, - [2430] = 2335, - [2431] = 2384, - [2432] = 2340, - [2433] = 2389, - [2434] = 2336, - [2435] = 2435, - [2436] = 2349, - [2437] = 2335, - [2438] = 2344, - [2439] = 2384, - [2440] = 2340, - [2441] = 2389, - [2442] = 2336, - [2443] = 2389, - [2444] = 2335, - [2445] = 2384, - [2446] = 2340, - [2447] = 2389, - [2448] = 2336, - [2449] = 2340, - [2450] = 2349, + [2387] = 2352, + [2388] = 2353, + [2389] = 2344, + [2390] = 2355, + [2391] = 2343, + [2392] = 2337, + [2393] = 2341, + [2394] = 2349, + [2395] = 2395, + [2396] = 2352, + [2397] = 2353, + [2398] = 2344, + [2399] = 2355, + [2400] = 2335, + [2401] = 2341, + [2402] = 2343, + [2403] = 2341, + [2404] = 2349, + [2405] = 2341, + [2406] = 2406, + [2407] = 2352, + [2408] = 2353, + [2409] = 2344, + [2410] = 2355, + [2411] = 2335, + [2412] = 2337, + [2413] = 2341, + [2414] = 2349, + [2415] = 2337, + [2416] = 2352, + [2417] = 2353, + [2418] = 2344, + [2419] = 2355, + [2420] = 2343, + [2421] = 2353, + [2422] = 2341, + [2423] = 2349, + [2424] = 2337, + [2425] = 2343, + [2426] = 2352, + [2427] = 2353, + [2428] = 2344, + [2429] = 2355, + [2430] = 2337, + [2431] = 2341, + [2432] = 2349, + [2433] = 2355, + [2434] = 2337, + [2435] = 2352, + [2436] = 2353, + [2437] = 2344, + [2438] = 2355, + [2439] = 2439, + [2440] = 2349, + [2441] = 2335, + [2442] = 2349, + [2443] = 2335, + [2444] = 2352, + [2445] = 2353, + [2446] = 2344, + [2447] = 2355, + [2448] = 2353, + [2449] = 2355, + [2450] = 2337, [2451] = 2451, [2452] = 2452, [2453] = 2453, @@ -3934,349 +3931,349 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2457] = 2457, [2458] = 2458, [2459] = 2459, - [2460] = 2460, + [2460] = 2458, [2461] = 2461, - [2462] = 2454, - [2463] = 2456, + [2462] = 2462, + [2463] = 2451, [2464] = 2464, - [2465] = 2465, - [2466] = 2466, - [2467] = 2461, - [2468] = 2468, - [2469] = 2454, - [2470] = 2456, - [2471] = 2464, - [2472] = 2461, - [2473] = 2473, - [2474] = 2454, - [2475] = 2456, - [2476] = 2464, - [2477] = 2461, - [2478] = 2454, - [2479] = 2456, - [2480] = 2464, - [2481] = 2461, - [2482] = 2454, - [2483] = 2456, - [2484] = 2464, - [2485] = 2485, - [2486] = 2461, - [2487] = 2487, - [2488] = 2456, - [2489] = 2464, - [2490] = 2490, - [2491] = 2461, - [2492] = 2454, - [2493] = 2456, - [2494] = 2464, - [2495] = 2461, - [2496] = 2454, - [2497] = 2456, - [2498] = 2464, - [2499] = 2464, - [2500] = 2500, - [2501] = 2461, - [2502] = 2454, - [2503] = 2456, - [2504] = 2464, - [2505] = 2505, - [2506] = 2461, + [2465] = 2458, + [2466] = 2461, + [2467] = 2462, + [2468] = 2451, + [2469] = 2469, + [2470] = 2462, + [2471] = 2471, + [2472] = 2458, + [2473] = 2461, + [2474] = 2462, + [2475] = 2451, + [2476] = 2476, + [2477] = 2477, + [2478] = 2458, + [2479] = 2461, + [2480] = 2462, + [2481] = 2451, + [2482] = 2482, + [2483] = 2458, + [2484] = 2461, + [2485] = 2462, + [2486] = 2451, + [2487] = 2451, + [2488] = 2461, + [2489] = 2462, + [2490] = 2451, + [2491] = 2491, + [2492] = 2458, + [2493] = 2493, + [2494] = 2461, + [2495] = 2462, + [2496] = 2496, + [2497] = 2497, + [2498] = 2458, + [2499] = 2461, + [2500] = 2462, + [2501] = 2451, + [2502] = 2461, + [2503] = 2458, + [2504] = 2461, + [2505] = 2462, + [2506] = 2451, [2507] = 2507, - [2508] = 2454, - [2509] = 2456, - [2510] = 2464, - [2511] = 2461, - [2512] = 2461, - [2513] = 2454, - [2514] = 2456, - [2515] = 2464, - [2516] = 2454, - [2517] = 2464, - [2518] = 2454, - [2519] = 2519, + [2508] = 2458, + [2509] = 2461, + [2510] = 2462, + [2511] = 2451, + [2512] = 2451, + [2513] = 2458, + [2514] = 2461, + [2515] = 2462, + [2516] = 2451, + [2517] = 2461, + [2518] = 2458, + [2519] = 708, [2520] = 2520, [2521] = 2521, [2522] = 2522, - [2523] = 2521, - [2524] = 2522, - [2525] = 2521, - [2526] = 2526, - [2527] = 2527, - [2528] = 2528, - [2529] = 2527, - [2530] = 2528, - [2531] = 2521, - [2532] = 2528, - [2533] = 2526, - [2534] = 2522, - [2535] = 2527, - [2536] = 2522, + [2523] = 2523, + [2524] = 2524, + [2525] = 2525, + [2526] = 2521, + [2527] = 2525, + [2528] = 2523, + [2529] = 2524, + [2530] = 2523, + [2531] = 2524, + [2532] = 2521, + [2533] = 2525, + [2534] = 2523, + [2535] = 2525, + [2536] = 2524, [2537] = 2521, - [2538] = 2528, - [2539] = 2526, - [2540] = 2522, - [2541] = 2526, - [2542] = 2526, - [2543] = 2527, - [2544] = 2527, - [2545] = 2521, - [2546] = 710, - [2547] = 2521, - [2548] = 2528, - [2549] = 2528, - [2550] = 2526, - [2551] = 2522, - [2552] = 2528, - [2553] = 2522, + [2538] = 2521, + [2539] = 2524, + [2540] = 2525, + [2541] = 2525, + [2542] = 2523, + [2543] = 2522, + [2544] = 2524, + [2545] = 2523, + [2546] = 2523, + [2547] = 2524, + [2548] = 2524, + [2549] = 2521, + [2550] = 2523, + [2551] = 2524, + [2552] = 708, + [2553] = 2520, [2554] = 2522, - [2555] = 2528, + [2555] = 2522, [2556] = 2521, - [2557] = 2527, - [2558] = 2522, - [2559] = 2526, - [2560] = 2527, - [2561] = 2528, - [2562] = 2526, - [2563] = 2563, - [2564] = 2527, - [2565] = 2527, + [2557] = 2557, + [2558] = 2523, + [2559] = 2522, + [2560] = 2560, + [2561] = 2522, + [2562] = 2521, + [2563] = 2525, + [2564] = 2524, + [2565] = 2520, [2566] = 2521, - [2567] = 2528, - [2568] = 2521, - [2569] = 2527, - [2570] = 2527, + [2567] = 2525, + [2568] = 2524, + [2569] = 2522, + [2570] = 2525, [2571] = 2522, - [2572] = 2522, - [2573] = 2526, - [2574] = 2519, - [2575] = 2522, - [2576] = 2528, - [2577] = 710, - [2578] = 2527, + [2572] = 2521, + [2573] = 2523, + [2574] = 2524, + [2575] = 2521, + [2576] = 2525, + [2577] = 2522, + [2578] = 2578, [2579] = 2521, - [2580] = 2521, - [2581] = 2528, - [2582] = 2526, - [2583] = 2528, - [2584] = 2526, - [2585] = 2526, - [2586] = 2586, - [2587] = 2563, - [2588] = 2519, - [2589] = 2563, - [2590] = 2519, - [2591] = 2563, - [2592] = 2519, - [2593] = 2563, - [2594] = 2519, - [2595] = 2563, - [2596] = 2519, - [2597] = 2563, - [2598] = 2519, - [2599] = 2563, - [2600] = 2519, - [2601] = 2563, - [2602] = 2563, - [2603] = 2519, - [2604] = 2563, - [2605] = 2519, - [2606] = 2563, - [2607] = 2519, - [2608] = 2519, - [2609] = 2526, + [2580] = 2522, + [2581] = 2525, + [2582] = 2525, + [2583] = 2525, + [2584] = 2523, + [2585] = 2524, + [2586] = 2523, + [2587] = 2522, + [2588] = 2578, + [2589] = 2520, + [2590] = 2578, + [2591] = 2520, + [2592] = 2578, + [2593] = 2520, + [2594] = 2578, + [2595] = 2520, + [2596] = 2578, + [2597] = 2520, + [2598] = 2578, + [2599] = 2520, + [2600] = 2578, + [2601] = 2520, + [2602] = 2578, + [2603] = 2520, + [2604] = 2578, + [2605] = 2520, + [2606] = 2578, + [2607] = 2520, + [2608] = 2578, + [2609] = 2522, [2610] = 2610, [2611] = 2611, - [2612] = 713, - [2613] = 2610, - [2614] = 854, - [2615] = 2610, - [2616] = 2610, - [2617] = 2617, - [2618] = 2610, - [2619] = 2610, - [2620] = 2617, + [2612] = 2612, + [2613] = 2613, + [2614] = 862, + [2615] = 822, + [2616] = 2613, + [2617] = 2611, + [2618] = 2618, + [2619] = 2611, + [2620] = 2613, [2621] = 2621, - [2622] = 2622, - [2623] = 861, - [2624] = 2610, - [2625] = 2625, - [2626] = 2617, - [2627] = 2627, - [2628] = 868, - [2629] = 2617, + [2622] = 2613, + [2623] = 2611, + [2624] = 2611, + [2625] = 2611, + [2626] = 2613, + [2627] = 2611, + [2628] = 2613, + [2629] = 2611, [2630] = 2630, - [2631] = 2617, + [2631] = 2613, [2632] = 2632, - [2633] = 818, - [2634] = 2617, - [2635] = 2617, - [2636] = 2617, - [2637] = 2637, - [2638] = 2610, - [2639] = 2610, - [2640] = 2610, - [2641] = 2617, - [2642] = 2610, - [2643] = 2617, - [2644] = 2610, - [2645] = 2617, + [2633] = 2611, + [2634] = 2613, + [2635] = 2611, + [2636] = 2613, + [2637] = 2613, + [2638] = 2611, + [2639] = 2613, + [2640] = 2613, + [2641] = 806, + [2642] = 2611, + [2643] = 814, + [2644] = 862, + [2645] = 707, [2646] = 2646, - [2647] = 818, - [2648] = 2617, + [2647] = 2647, + [2648] = 2648, [2649] = 2649, [2650] = 2650, [2651] = 2651, [2652] = 2652, - [2653] = 2653, + [2653] = 2650, [2654] = 2654, - [2655] = 2653, + [2655] = 2651, [2656] = 2656, [2657] = 2657, - [2658] = 2658, - [2659] = 2653, + [2658] = 2656, + [2659] = 2659, [2660] = 2660, - [2661] = 2651, - [2662] = 2653, - [2663] = 2650, - [2664] = 2660, - [2665] = 2650, - [2666] = 2660, + [2661] = 2659, + [2662] = 2650, + [2663] = 2663, + [2664] = 2664, + [2665] = 2652, + [2666] = 2659, [2667] = 2654, - [2668] = 2654, - [2669] = 2660, - [2670] = 2654, - [2671] = 2671, + [2668] = 2668, + [2669] = 2651, + [2670] = 2670, + [2671] = 2650, [2672] = 2656, - [2673] = 2657, - [2674] = 2652, - [2675] = 2671, - [2676] = 2653, - [2677] = 2651, - [2678] = 2678, - [2679] = 2654, - [2680] = 2650, - [2681] = 2678, - [2682] = 2682, + [2673] = 2673, + [2674] = 2654, + [2675] = 2650, + [2676] = 2657, + [2677] = 2656, + [2678] = 2656, + [2679] = 2664, + [2680] = 2652, + [2681] = 2681, + [2682] = 2664, [2683] = 2652, - [2684] = 2652, - [2685] = 2660, + [2684] = 2659, + [2685] = 2654, [2686] = 2650, - [2687] = 2650, - [2688] = 2656, - [2689] = 2657, - [2690] = 2652, - [2691] = 2653, - [2692] = 2656, - [2693] = 2651, - [2694] = 2657, - [2695] = 2695, - [2696] = 2653, - [2697] = 2678, - [2698] = 2651, - [2699] = 2654, - [2700] = 2671, - [2701] = 2650, - [2702] = 2652, - [2703] = 2652, - [2704] = 2656, - [2705] = 2657, - [2706] = 2653, - [2707] = 2654, - [2708] = 2650, - [2709] = 2651, - [2710] = 2650, - [2711] = 2678, - [2712] = 2652, - [2713] = 2713, - [2714] = 2656, - [2715] = 2657, - [2716] = 2671, - [2717] = 2678, - [2718] = 2660, - [2719] = 2651, - [2720] = 2656, - [2721] = 2657, - [2722] = 2653, - [2723] = 2654, - [2724] = 2656, - [2725] = 2651, - [2726] = 2671, - [2727] = 2660, - [2728] = 2678, - [2729] = 2729, - [2730] = 2650, - [2731] = 2678, - [2732] = 2732, - [2733] = 2660, - [2734] = 2656, - [2735] = 2657, - [2736] = 2656, - [2737] = 2657, - [2738] = 2660, - [2739] = 2671, - [2740] = 2660, + [2687] = 2651, + [2688] = 2651, + [2689] = 2656, + [2690] = 2651, + [2691] = 2673, + [2692] = 2673, + [2693] = 2656, + [2694] = 2659, + [2695] = 2673, + [2696] = 2649, + [2697] = 857, + [2698] = 2673, + [2699] = 2659, + [2700] = 2664, + [2701] = 2652, + [2702] = 2649, + [2703] = 2649, + [2704] = 2657, + [2705] = 2651, + [2706] = 2654, + [2707] = 2707, + [2708] = 2708, + [2709] = 2657, + [2710] = 2659, + [2711] = 2654, + [2712] = 2649, + [2713] = 2657, + [2714] = 2673, + [2715] = 2649, + [2716] = 2650, + [2717] = 2657, + [2718] = 2664, + [2719] = 2652, + [2720] = 2664, + [2721] = 2652, + [2722] = 2659, + [2723] = 2651, + [2724] = 2649, + [2725] = 2649, + [2726] = 2657, + [2727] = 2673, + [2728] = 2654, + [2729] = 2651, + [2730] = 2654, + [2731] = 2673, + [2732] = 2650, + [2733] = 2659, + [2734] = 2673, + [2735] = 2664, + [2736] = 2664, + [2737] = 2652, + [2738] = 2654, + [2739] = 2650, + [2740] = 2740, [2741] = 2651, - [2742] = 2671, - [2743] = 2651, - [2744] = 2671, - [2745] = 2678, - [2746] = 2660, - [2747] = 2654, - [2748] = 2678, - [2749] = 2671, - [2750] = 2652, - [2751] = 2650, - [2752] = 2678, - [2753] = 2652, - [2754] = 2656, - [2755] = 2657, - [2756] = 2756, - [2757] = 2649, - [2758] = 2756, - [2759] = 2649, - [2760] = 2756, - [2761] = 2649, - [2762] = 2756, - [2763] = 2649, - [2764] = 2756, - [2765] = 2649, - [2766] = 2756, - [2767] = 2649, - [2768] = 2756, - [2769] = 892, - [2770] = 2756, - [2771] = 2649, - [2772] = 2756, - [2773] = 2649, - [2774] = 2756, - [2775] = 2649, - [2776] = 2756, - [2777] = 2649, - [2778] = 2649, - [2779] = 2652, - [2780] = 2653, - [2781] = 2654, - [2782] = 2651, - [2783] = 2653, + [2742] = 2656, + [2743] = 2673, + [2744] = 2654, + [2745] = 2656, + [2746] = 2650, + [2747] = 2656, + [2748] = 2652, + [2749] = 2656, + [2750] = 2673, + [2751] = 2673, + [2752] = 2649, + [2753] = 2659, + [2754] = 2652, + [2755] = 2654, + [2756] = 2663, + [2757] = 2757, + [2758] = 2663, + [2759] = 2757, + [2760] = 2663, + [2761] = 2757, + [2762] = 2663, + [2763] = 2757, + [2764] = 2663, + [2765] = 2757, + [2766] = 2663, + [2767] = 2757, + [2768] = 2663, + [2769] = 2757, + [2770] = 2663, + [2771] = 2757, + [2772] = 2663, + [2773] = 2757, + [2774] = 2663, + [2775] = 2757, + [2776] = 2663, + [2777] = 2757, + [2778] = 2757, + [2779] = 2757, + [2780] = 2664, + [2781] = 2652, + [2782] = 2782, + [2783] = 2650, [2784] = 2654, - [2785] = 2649, - [2786] = 2657, - [2787] = 2650, - [2788] = 2671, - [2789] = 2671, - [2790] = 2678, - [2791] = 2652, - [2792] = 2792, - [2793] = 2656, + [2785] = 2651, + [2786] = 2659, + [2787] = 2664, + [2788] = 2657, + [2789] = 2650, + [2790] = 2649, + [2791] = 2649, + [2792] = 2656, + [2793] = 2657, [2794] = 2657, - [2795] = 2653, - [2796] = 2654, - [2797] = 2671, - [2798] = 2651, - [2799] = 2678, - [2800] = 2756, - [2801] = 2660, - [2802] = 2802, + [2795] = 2664, + [2796] = 2651, + [2797] = 2649, + [2798] = 2664, + [2799] = 2652, + [2800] = 2657, + [2801] = 2659, + [2802] = 2657, }; static const TSCharacterRange aux_sym_key_value_value_token1_character_set_1[] = { @@ -4459,7 +4456,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 2196, '(', 2228, ')', 2229, - '*', 2197, '+', 2198, ',', 2199, '-', 2201, @@ -4537,7 +4533,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 2208, '@', 2209, '[', 2210, - '\\', 2214, + '\\', 2216, ']', 2218, '^', 2220, '_', 2222, @@ -4579,7 +4575,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 2208, '@', 2209, '[', 2210, - '\\', 2216, + '\\', 2214, ']', 2218, '^', 2220, '_', 2222, @@ -13690,7 +13686,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 2196, '(', 2228, ')', 2229, - '*', 2197, '+', 2198, ',', 2199, '-', 2201, @@ -26853,1697 +26848,1697 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 2181, .external_lex_state = 2}, [2] = {.lex_state = 2181, .external_lex_state = 3}, - [3] = {.lex_state = 2181, .external_lex_state = 4}, - [4] = {.lex_state = 2181, .external_lex_state = 5}, - [5] = {.lex_state = 2181, .external_lex_state = 6}, - [6] = {.lex_state = 2181, .external_lex_state = 7}, - [7] = {.lex_state = 2181, .external_lex_state = 7}, - [8] = {.lex_state = 2181, .external_lex_state = 8}, - [9] = {.lex_state = 2181, .external_lex_state = 9}, - [10] = {.lex_state = 2181, .external_lex_state = 10}, - [11] = {.lex_state = 2181, .external_lex_state = 10}, - [12] = {.lex_state = 2181, .external_lex_state = 11}, - [13] = {.lex_state = 2181, .external_lex_state = 11}, - [14] = {.lex_state = 2181, .external_lex_state = 12}, - [15] = {.lex_state = 2181, .external_lex_state = 12}, - [16] = {.lex_state = 2181, .external_lex_state = 4}, - [17] = {.lex_state = 2181, .external_lex_state = 3}, - [18] = {.lex_state = 2181, .external_lex_state = 4}, - [19] = {.lex_state = 2181, .external_lex_state = 4}, - [20] = {.lex_state = 4, .external_lex_state = 4}, - [21] = {.lex_state = 4, .external_lex_state = 4}, + [3] = {.lex_state = 2181, .external_lex_state = 3}, + [4] = {.lex_state = 2181, .external_lex_state = 3}, + [5] = {.lex_state = 2181, .external_lex_state = 3}, + [6] = {.lex_state = 2181, .external_lex_state = 3}, + [7] = {.lex_state = 2181, .external_lex_state = 3}, + [8] = {.lex_state = 2181, .external_lex_state = 3}, + [9] = {.lex_state = 2181, .external_lex_state = 3}, + [10] = {.lex_state = 2181, .external_lex_state = 3}, + [11] = {.lex_state = 2181, .external_lex_state = 3}, + [12] = {.lex_state = 2181, .external_lex_state = 3}, + [13] = {.lex_state = 2181, .external_lex_state = 3}, + [14] = {.lex_state = 2181, .external_lex_state = 4}, + [15] = {.lex_state = 4, .external_lex_state = 5}, + [16] = {.lex_state = 2181, .external_lex_state = 3}, + [17] = {.lex_state = 2181, .external_lex_state = 5}, + [18] = {.lex_state = 2181, .external_lex_state = 6}, + [19] = {.lex_state = 2181, .external_lex_state = 7}, + [20] = {.lex_state = 2181, .external_lex_state = 5}, + [21] = {.lex_state = 2181, .external_lex_state = 8}, [22] = {.lex_state = 2181, .external_lex_state = 4}, - [23] = {.lex_state = 2181, .external_lex_state = 4}, - [24] = {.lex_state = 2181, .external_lex_state = 4}, - [25] = {.lex_state = 2181, .external_lex_state = 4}, - [26] = {.lex_state = 2181, .external_lex_state = 4}, - [27] = {.lex_state = 2181, .external_lex_state = 4}, - [28] = {.lex_state = 2181, .external_lex_state = 4}, - [29] = {.lex_state = 2181, .external_lex_state = 4}, - [30] = {.lex_state = 2181, .external_lex_state = 4}, - [31] = {.lex_state = 2181, .external_lex_state = 4}, - [32] = {.lex_state = 2181, .external_lex_state = 4}, - [33] = {.lex_state = 2181, .external_lex_state = 4}, - [34] = {.lex_state = 2181, .external_lex_state = 13}, - [35] = {.lex_state = 2181, .external_lex_state = 13}, - [36] = {.lex_state = 2181, .external_lex_state = 14}, - [37] = {.lex_state = 2181, .external_lex_state = 15}, - [38] = {.lex_state = 2181, .external_lex_state = 16}, - [39] = {.lex_state = 2181, .external_lex_state = 17}, - [40] = {.lex_state = 2181, .external_lex_state = 18}, - [41] = {.lex_state = 2181, .external_lex_state = 19}, - [42] = {.lex_state = 2181, .external_lex_state = 20}, - [43] = {.lex_state = 2181, .external_lex_state = 21}, - [44] = {.lex_state = 2181, .external_lex_state = 14}, - [45] = {.lex_state = 2181, .external_lex_state = 14}, - [46] = {.lex_state = 4, .external_lex_state = 14}, - [47] = {.lex_state = 4, .external_lex_state = 14}, - [48] = {.lex_state = 4, .external_lex_state = 14}, - [49] = {.lex_state = 4, .external_lex_state = 14}, - [50] = {.lex_state = 2181, .external_lex_state = 14}, - [51] = {.lex_state = 2181, .external_lex_state = 14}, - [52] = {.lex_state = 2181, .external_lex_state = 14}, - [53] = {.lex_state = 2181, .external_lex_state = 22}, - [54] = {.lex_state = 2181, .external_lex_state = 22}, - [55] = {.lex_state = 2181, .external_lex_state = 13}, - [56] = {.lex_state = 2181, .external_lex_state = 13}, - [57] = {.lex_state = 2181, .external_lex_state = 15}, - [58] = {.lex_state = 2181, .external_lex_state = 14}, - [59] = {.lex_state = 2181, .external_lex_state = 14}, - [60] = {.lex_state = 2181, .external_lex_state = 18}, - [61] = {.lex_state = 2181, .external_lex_state = 19}, - [62] = {.lex_state = 2181, .external_lex_state = 14}, - [63] = {.lex_state = 2181, .external_lex_state = 20}, - [64] = {.lex_state = 2181, .external_lex_state = 21}, - [65] = {.lex_state = 2181, .external_lex_state = 16}, - [66] = {.lex_state = 2181, .external_lex_state = 17}, - [67] = {.lex_state = 2181, .external_lex_state = 14}, - [68] = {.lex_state = 2181, .external_lex_state = 18}, - [69] = {.lex_state = 4, .external_lex_state = 14}, - [70] = {.lex_state = 2181, .external_lex_state = 19}, - [71] = {.lex_state = 4, .external_lex_state = 14}, - [72] = {.lex_state = 4, .external_lex_state = 14}, - [73] = {.lex_state = 4, .external_lex_state = 14}, - [74] = {.lex_state = 4, .external_lex_state = 14}, - [75] = {.lex_state = 2181, .external_lex_state = 14}, - [76] = {.lex_state = 2181, .external_lex_state = 15}, - [77] = {.lex_state = 2181, .external_lex_state = 16}, - [78] = {.lex_state = 2181, .external_lex_state = 17}, - [79] = {.lex_state = 2181, .external_lex_state = 18}, - [80] = {.lex_state = 2181, .external_lex_state = 19}, - [81] = {.lex_state = 2181, .external_lex_state = 14}, - [82] = {.lex_state = 4, .external_lex_state = 14}, - [83] = {.lex_state = 4, .external_lex_state = 14}, - [84] = {.lex_state = 4, .external_lex_state = 14}, - [85] = {.lex_state = 4, .external_lex_state = 14}, - [86] = {.lex_state = 2181, .external_lex_state = 15}, - [87] = {.lex_state = 2181, .external_lex_state = 22}, - [88] = {.lex_state = 2181, .external_lex_state = 13}, - [89] = {.lex_state = 2181, .external_lex_state = 15}, - [90] = {.lex_state = 2181, .external_lex_state = 16}, - [91] = {.lex_state = 2181, .external_lex_state = 17}, - [92] = {.lex_state = 2181, .external_lex_state = 18}, - [93] = {.lex_state = 2181, .external_lex_state = 19}, - [94] = {.lex_state = 2181, .external_lex_state = 20}, - [95] = {.lex_state = 2181, .external_lex_state = 21}, - [96] = {.lex_state = 2181, .external_lex_state = 14}, - [97] = {.lex_state = 4, .external_lex_state = 14}, - [98] = {.lex_state = 4, .external_lex_state = 14}, - [99] = {.lex_state = 4, .external_lex_state = 14}, - [100] = {.lex_state = 4, .external_lex_state = 14}, - [101] = {.lex_state = 2181, .external_lex_state = 14}, - [102] = {.lex_state = 2181, .external_lex_state = 14}, - [103] = {.lex_state = 2181, .external_lex_state = 22}, - [104] = {.lex_state = 2181, .external_lex_state = 14}, - [105] = {.lex_state = 2181, .external_lex_state = 15}, - [106] = {.lex_state = 2181, .external_lex_state = 16}, - [107] = {.lex_state = 2181, .external_lex_state = 17}, - [108] = {.lex_state = 2181, .external_lex_state = 18}, - [109] = {.lex_state = 2181, .external_lex_state = 19}, - [110] = {.lex_state = 2181, .external_lex_state = 14}, - [111] = {.lex_state = 4, .external_lex_state = 14}, - [112] = {.lex_state = 4, .external_lex_state = 14}, - [113] = {.lex_state = 4, .external_lex_state = 14}, - [114] = {.lex_state = 2181, .external_lex_state = 22}, - [115] = {.lex_state = 2181, .external_lex_state = 13}, - [116] = {.lex_state = 2181, .external_lex_state = 15}, - [117] = {.lex_state = 2181, .external_lex_state = 16}, - [118] = {.lex_state = 2181, .external_lex_state = 17}, - [119] = {.lex_state = 2181, .external_lex_state = 18}, - [120] = {.lex_state = 2181, .external_lex_state = 19}, - [121] = {.lex_state = 2181, .external_lex_state = 20}, - [122] = {.lex_state = 2181, .external_lex_state = 21}, - [123] = {.lex_state = 2181, .external_lex_state = 14}, - [124] = {.lex_state = 4, .external_lex_state = 14}, - [125] = {.lex_state = 4, .external_lex_state = 14}, - [126] = {.lex_state = 4, .external_lex_state = 14}, - [127] = {.lex_state = 4, .external_lex_state = 14}, - [128] = {.lex_state = 2181, .external_lex_state = 14}, - [129] = {.lex_state = 2181, .external_lex_state = 14}, - [130] = {.lex_state = 2181, .external_lex_state = 22}, - [131] = {.lex_state = 2181, .external_lex_state = 13}, - [132] = {.lex_state = 2181, .external_lex_state = 14}, - [133] = {.lex_state = 2181, .external_lex_state = 15}, - [134] = {.lex_state = 2181, .external_lex_state = 16}, - [135] = {.lex_state = 2181, .external_lex_state = 17}, - [136] = {.lex_state = 2181, .external_lex_state = 18}, - [137] = {.lex_state = 2181, .external_lex_state = 19}, - [138] = {.lex_state = 2181, .external_lex_state = 14}, - [139] = {.lex_state = 4, .external_lex_state = 14}, - [140] = {.lex_state = 4, .external_lex_state = 14}, - [141] = {.lex_state = 4, .external_lex_state = 14}, - [142] = {.lex_state = 4, .external_lex_state = 14}, - [143] = {.lex_state = 2181, .external_lex_state = 14}, - [144] = {.lex_state = 2181, .external_lex_state = 22}, - [145] = {.lex_state = 2181, .external_lex_state = 13}, - [146] = {.lex_state = 2181, .external_lex_state = 15}, - [147] = {.lex_state = 2181, .external_lex_state = 16}, - [148] = {.lex_state = 2181, .external_lex_state = 17}, - [149] = {.lex_state = 2181, .external_lex_state = 18}, - [150] = {.lex_state = 2181, .external_lex_state = 19}, - [151] = {.lex_state = 2181, .external_lex_state = 20}, - [152] = {.lex_state = 2181, .external_lex_state = 21}, - [153] = {.lex_state = 2181, .external_lex_state = 14}, - [154] = {.lex_state = 4, .external_lex_state = 14}, - [155] = {.lex_state = 4, .external_lex_state = 14}, - [156] = {.lex_state = 4, .external_lex_state = 14}, - [157] = {.lex_state = 4, .external_lex_state = 14}, - [158] = {.lex_state = 2181, .external_lex_state = 14}, - [159] = {.lex_state = 2181, .external_lex_state = 14}, - [160] = {.lex_state = 2181, .external_lex_state = 22}, - [161] = {.lex_state = 2181, .external_lex_state = 13}, - [162] = {.lex_state = 2181, .external_lex_state = 14}, - [163] = {.lex_state = 2181, .external_lex_state = 15}, - [164] = {.lex_state = 2181, .external_lex_state = 16}, - [165] = {.lex_state = 2181, .external_lex_state = 17}, - [166] = {.lex_state = 2181, .external_lex_state = 18}, - [167] = {.lex_state = 2181, .external_lex_state = 19}, - [168] = {.lex_state = 2181, .external_lex_state = 14}, - [169] = {.lex_state = 4, .external_lex_state = 14}, - [170] = {.lex_state = 4, .external_lex_state = 14}, - [171] = {.lex_state = 4, .external_lex_state = 14}, - [172] = {.lex_state = 4, .external_lex_state = 14}, - [173] = {.lex_state = 2181, .external_lex_state = 22}, - [174] = {.lex_state = 2181, .external_lex_state = 13}, - [175] = {.lex_state = 2181, .external_lex_state = 15}, - [176] = {.lex_state = 2181, .external_lex_state = 16}, - [177] = {.lex_state = 2181, .external_lex_state = 17}, - [178] = {.lex_state = 2181, .external_lex_state = 18}, - [179] = {.lex_state = 2181, .external_lex_state = 19}, - [180] = {.lex_state = 2181, .external_lex_state = 20}, - [181] = {.lex_state = 2181, .external_lex_state = 21}, - [182] = {.lex_state = 2181, .external_lex_state = 14}, - [183] = {.lex_state = 4, .external_lex_state = 14}, - [184] = {.lex_state = 4, .external_lex_state = 14}, - [185] = {.lex_state = 4, .external_lex_state = 14}, - [186] = {.lex_state = 4, .external_lex_state = 14}, - [187] = {.lex_state = 2181, .external_lex_state = 14}, - [188] = {.lex_state = 2181, .external_lex_state = 14}, - [189] = {.lex_state = 2181, .external_lex_state = 22}, - [190] = {.lex_state = 2181, .external_lex_state = 13}, - [191] = {.lex_state = 2181, .external_lex_state = 14}, - [192] = {.lex_state = 2181, .external_lex_state = 15}, - [193] = {.lex_state = 2181, .external_lex_state = 16}, - [194] = {.lex_state = 2181, .external_lex_state = 17}, - [195] = {.lex_state = 2181, .external_lex_state = 18}, - [196] = {.lex_state = 2181, .external_lex_state = 19}, - [197] = {.lex_state = 2181, .external_lex_state = 14}, - [198] = {.lex_state = 4, .external_lex_state = 14}, - [199] = {.lex_state = 4, .external_lex_state = 14}, - [200] = {.lex_state = 4, .external_lex_state = 14}, - [201] = {.lex_state = 4, .external_lex_state = 14}, - [202] = {.lex_state = 2181, .external_lex_state = 22}, - [203] = {.lex_state = 2181, .external_lex_state = 13}, - [204] = {.lex_state = 2181, .external_lex_state = 15}, - [205] = {.lex_state = 2181, .external_lex_state = 16}, - [206] = {.lex_state = 2181, .external_lex_state = 17}, - [207] = {.lex_state = 2181, .external_lex_state = 18}, - [208] = {.lex_state = 2181, .external_lex_state = 19}, - [209] = {.lex_state = 2181, .external_lex_state = 20}, - [210] = {.lex_state = 2181, .external_lex_state = 21}, - [211] = {.lex_state = 2181, .external_lex_state = 14}, - [212] = {.lex_state = 4, .external_lex_state = 14}, - [213] = {.lex_state = 4, .external_lex_state = 14}, - [214] = {.lex_state = 4, .external_lex_state = 14}, - [215] = {.lex_state = 4, .external_lex_state = 14}, - [216] = {.lex_state = 2181, .external_lex_state = 14}, - [217] = {.lex_state = 2181, .external_lex_state = 14}, - [218] = {.lex_state = 2181, .external_lex_state = 22}, - [219] = {.lex_state = 2181, .external_lex_state = 13}, - [220] = {.lex_state = 2181, .external_lex_state = 14}, - [221] = {.lex_state = 2181, .external_lex_state = 15}, - [222] = {.lex_state = 2181, .external_lex_state = 16}, - [223] = {.lex_state = 2181, .external_lex_state = 17}, - [224] = {.lex_state = 2181, .external_lex_state = 18}, - [225] = {.lex_state = 2181, .external_lex_state = 19}, - [226] = {.lex_state = 2181, .external_lex_state = 14}, - [227] = {.lex_state = 4, .external_lex_state = 14}, - [228] = {.lex_state = 4, .external_lex_state = 14}, - [229] = {.lex_state = 4, .external_lex_state = 14}, - [230] = {.lex_state = 4, .external_lex_state = 14}, - [231] = {.lex_state = 2181, .external_lex_state = 4}, - [232] = {.lex_state = 2181, .external_lex_state = 22}, - [233] = {.lex_state = 2181, .external_lex_state = 13}, - [234] = {.lex_state = 2181, .external_lex_state = 15}, - [235] = {.lex_state = 2181, .external_lex_state = 16}, - [236] = {.lex_state = 2181, .external_lex_state = 17}, - [237] = {.lex_state = 2181, .external_lex_state = 18}, - [238] = {.lex_state = 2181, .external_lex_state = 19}, - [239] = {.lex_state = 2181, .external_lex_state = 20}, - [240] = {.lex_state = 2181, .external_lex_state = 21}, - [241] = {.lex_state = 2181, .external_lex_state = 14}, - [242] = {.lex_state = 4, .external_lex_state = 14}, - [243] = {.lex_state = 4, .external_lex_state = 14}, - [244] = {.lex_state = 4, .external_lex_state = 14}, - [245] = {.lex_state = 4, .external_lex_state = 14}, - [246] = {.lex_state = 2181, .external_lex_state = 14}, - [247] = {.lex_state = 2181, .external_lex_state = 14}, - [248] = {.lex_state = 2181, .external_lex_state = 22}, - [249] = {.lex_state = 2181, .external_lex_state = 13}, - [250] = {.lex_state = 2181, .external_lex_state = 14}, - [251] = {.lex_state = 2181, .external_lex_state = 15}, - [252] = {.lex_state = 2181, .external_lex_state = 16}, - [253] = {.lex_state = 2181, .external_lex_state = 17}, - [254] = {.lex_state = 2181, .external_lex_state = 18}, - [255] = {.lex_state = 2181, .external_lex_state = 19}, - [256] = {.lex_state = 2181, .external_lex_state = 14}, - [257] = {.lex_state = 4, .external_lex_state = 14}, - [258] = {.lex_state = 4, .external_lex_state = 14}, - [259] = {.lex_state = 4, .external_lex_state = 14}, - [260] = {.lex_state = 4, .external_lex_state = 14}, - [261] = {.lex_state = 2181, .external_lex_state = 16}, - [262] = {.lex_state = 2181, .external_lex_state = 22}, - [263] = {.lex_state = 2181, .external_lex_state = 13}, - [264] = {.lex_state = 2181, .external_lex_state = 15}, - [265] = {.lex_state = 2181, .external_lex_state = 16}, - [266] = {.lex_state = 2181, .external_lex_state = 17}, - [267] = {.lex_state = 2181, .external_lex_state = 18}, - [268] = {.lex_state = 2181, .external_lex_state = 19}, - [269] = {.lex_state = 2181, .external_lex_state = 20}, - [270] = {.lex_state = 2181, .external_lex_state = 21}, - [271] = {.lex_state = 2181, .external_lex_state = 14}, - [272] = {.lex_state = 4, .external_lex_state = 14}, - [273] = {.lex_state = 4, .external_lex_state = 14}, - [274] = {.lex_state = 4, .external_lex_state = 14}, - [275] = {.lex_state = 4, .external_lex_state = 14}, - [276] = {.lex_state = 2181, .external_lex_state = 14}, - [277] = {.lex_state = 2181, .external_lex_state = 14}, - [278] = {.lex_state = 2181, .external_lex_state = 22}, + [23] = {.lex_state = 2181, .external_lex_state = 9}, + [24] = {.lex_state = 2181, .external_lex_state = 10}, + [25] = {.lex_state = 2181, .external_lex_state = 11}, + [26] = {.lex_state = 2181, .external_lex_state = 12}, + [27] = {.lex_state = 2181, .external_lex_state = 13}, + [28] = {.lex_state = 2181, .external_lex_state = 5}, + [29] = {.lex_state = 2181, .external_lex_state = 5}, + [30] = {.lex_state = 4, .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 = 2181, .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 = 6}, + [38] = {.lex_state = 2181, .external_lex_state = 6}, + [39] = {.lex_state = 2181, .external_lex_state = 7}, + [40] = {.lex_state = 2181, .external_lex_state = 7}, + [41] = {.lex_state = 2181, .external_lex_state = 8}, + [42] = {.lex_state = 2181, .external_lex_state = 5}, + [43] = {.lex_state = 2181, .external_lex_state = 5}, + [44] = {.lex_state = 2181, .external_lex_state = 8}, + [45] = {.lex_state = 2181, .external_lex_state = 5}, + [46] = {.lex_state = 2181, .external_lex_state = 12}, + [47] = {.lex_state = 2181, .external_lex_state = 13}, + [48] = {.lex_state = 2181, .external_lex_state = 4}, + [49] = {.lex_state = 2181, .external_lex_state = 9}, + [50] = {.lex_state = 2181, .external_lex_state = 10}, + [51] = {.lex_state = 2181, .external_lex_state = 11}, + [52] = {.lex_state = 4, .external_lex_state = 5}, + [53] = {.lex_state = 2181, .external_lex_state = 5}, + [54] = {.lex_state = 2181, .external_lex_state = 8}, + [55] = {.lex_state = 2181, .external_lex_state = 4}, + [56] = {.lex_state = 2181, .external_lex_state = 9}, + [57] = {.lex_state = 2181, .external_lex_state = 10}, + [58] = {.lex_state = 2181, .external_lex_state = 11}, + [59] = {.lex_state = 2181, .external_lex_state = 5}, + [60] = {.lex_state = 4, .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 = 2181, .external_lex_state = 4}, + [65] = {.lex_state = 2181, .external_lex_state = 6}, + [66] = {.lex_state = 2181, .external_lex_state = 7}, + [67] = {.lex_state = 2181, .external_lex_state = 8}, + [68] = {.lex_state = 2181, .external_lex_state = 4}, + [69] = {.lex_state = 2181, .external_lex_state = 9}, + [70] = {.lex_state = 2181, .external_lex_state = 10}, + [71] = {.lex_state = 2181, .external_lex_state = 11}, + [72] = {.lex_state = 2181, .external_lex_state = 12}, + [73] = {.lex_state = 2181, .external_lex_state = 13}, + [74] = {.lex_state = 2181, .external_lex_state = 5}, + [75] = {.lex_state = 4, .external_lex_state = 5}, + [76] = {.lex_state = 4, .external_lex_state = 5}, + [77] = {.lex_state = 4, .external_lex_state = 5}, + [78] = {.lex_state = 4, .external_lex_state = 5}, + [79] = {.lex_state = 2181, .external_lex_state = 5}, + [80] = {.lex_state = 2181, .external_lex_state = 5}, + [81] = {.lex_state = 2181, .external_lex_state = 6}, + [82] = {.lex_state = 2181, .external_lex_state = 7}, + [83] = {.lex_state = 2181, .external_lex_state = 5}, + [84] = {.lex_state = 2181, .external_lex_state = 8}, + [85] = {.lex_state = 2181, .external_lex_state = 4}, + [86] = {.lex_state = 2181, .external_lex_state = 9}, + [87] = {.lex_state = 2181, .external_lex_state = 10}, + [88] = {.lex_state = 2181, .external_lex_state = 11}, + [89] = {.lex_state = 2181, .external_lex_state = 5}, + [90] = {.lex_state = 4, .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 = 2181, .external_lex_state = 9}, + [95] = {.lex_state = 2181, .external_lex_state = 6}, + [96] = {.lex_state = 2181, .external_lex_state = 7}, + [97] = {.lex_state = 2181, .external_lex_state = 8}, + [98] = {.lex_state = 2181, .external_lex_state = 4}, + [99] = {.lex_state = 2181, .external_lex_state = 9}, + [100] = {.lex_state = 2181, .external_lex_state = 10}, + [101] = {.lex_state = 2181, .external_lex_state = 11}, + [102] = {.lex_state = 2181, .external_lex_state = 12}, + [103] = {.lex_state = 2181, .external_lex_state = 13}, + [104] = {.lex_state = 2181, .external_lex_state = 5}, + [105] = {.lex_state = 4, .external_lex_state = 5}, + [106] = {.lex_state = 4, .external_lex_state = 5}, + [107] = {.lex_state = 4, .external_lex_state = 5}, + [108] = {.lex_state = 4, .external_lex_state = 5}, + [109] = {.lex_state = 2181, .external_lex_state = 5}, + [110] = {.lex_state = 2181, .external_lex_state = 5}, + [111] = {.lex_state = 2181, .external_lex_state = 6}, + [112] = {.lex_state = 2181, .external_lex_state = 7}, + [113] = {.lex_state = 2181, .external_lex_state = 5}, + [114] = {.lex_state = 2181, .external_lex_state = 8}, + [115] = {.lex_state = 2181, .external_lex_state = 4}, + [116] = {.lex_state = 2181, .external_lex_state = 9}, + [117] = {.lex_state = 2181, .external_lex_state = 10}, + [118] = {.lex_state = 2181, .external_lex_state = 11}, + [119] = {.lex_state = 2181, .external_lex_state = 5}, + [120] = {.lex_state = 4, .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 = 2181, .external_lex_state = 10}, + [125] = {.lex_state = 2181, .external_lex_state = 6}, + [126] = {.lex_state = 2181, .external_lex_state = 7}, + [127] = {.lex_state = 2181, .external_lex_state = 8}, + [128] = {.lex_state = 2181, .external_lex_state = 4}, + [129] = {.lex_state = 2181, .external_lex_state = 9}, + [130] = {.lex_state = 2181, .external_lex_state = 10}, + [131] = {.lex_state = 2181, .external_lex_state = 11}, + [132] = {.lex_state = 2181, .external_lex_state = 12}, + [133] = {.lex_state = 2181, .external_lex_state = 13}, + [134] = {.lex_state = 2181, .external_lex_state = 5}, + [135] = {.lex_state = 4, .external_lex_state = 5}, + [136] = {.lex_state = 4, .external_lex_state = 5}, + [137] = {.lex_state = 4, .external_lex_state = 5}, + [138] = {.lex_state = 4, .external_lex_state = 5}, + [139] = {.lex_state = 2181, .external_lex_state = 5}, + [140] = {.lex_state = 2181, .external_lex_state = 5}, + [141] = {.lex_state = 2181, .external_lex_state = 6}, + [142] = {.lex_state = 2181, .external_lex_state = 7}, + [143] = {.lex_state = 2181, .external_lex_state = 5}, + [144] = {.lex_state = 2181, .external_lex_state = 8}, + [145] = {.lex_state = 2181, .external_lex_state = 9}, + [146] = {.lex_state = 2181, .external_lex_state = 10}, + [147] = {.lex_state = 2181, .external_lex_state = 3}, + [148] = {.lex_state = 2181, .external_lex_state = 5}, + [149] = {.lex_state = 4, .external_lex_state = 5}, + [150] = {.lex_state = 4, .external_lex_state = 5}, + [151] = {.lex_state = 4, .external_lex_state = 5}, + [152] = {.lex_state = 4, .external_lex_state = 5}, + [153] = {.lex_state = 2181, .external_lex_state = 11}, + [154] = {.lex_state = 2181, .external_lex_state = 6}, + [155] = {.lex_state = 2181, .external_lex_state = 7}, + [156] = {.lex_state = 2181, .external_lex_state = 8}, + [157] = {.lex_state = 2181, .external_lex_state = 4}, + [158] = {.lex_state = 2181, .external_lex_state = 9}, + [159] = {.lex_state = 2181, .external_lex_state = 10}, + [160] = {.lex_state = 2181, .external_lex_state = 11}, + [161] = {.lex_state = 2181, .external_lex_state = 12}, + [162] = {.lex_state = 2181, .external_lex_state = 13}, + [163] = {.lex_state = 2181, .external_lex_state = 5}, + [164] = {.lex_state = 4, .external_lex_state = 5}, + [165] = {.lex_state = 4, .external_lex_state = 5}, + [166] = {.lex_state = 4, .external_lex_state = 5}, + [167] = {.lex_state = 4, .external_lex_state = 5}, + [168] = {.lex_state = 2181, .external_lex_state = 5}, + [169] = {.lex_state = 2181, .external_lex_state = 5}, + [170] = {.lex_state = 2181, .external_lex_state = 6}, + [171] = {.lex_state = 2181, .external_lex_state = 7}, + [172] = {.lex_state = 2181, .external_lex_state = 5}, + [173] = {.lex_state = 2181, .external_lex_state = 8}, + [174] = {.lex_state = 2181, .external_lex_state = 4}, + [175] = {.lex_state = 2181, .external_lex_state = 9}, + [176] = {.lex_state = 2181, .external_lex_state = 10}, + [177] = {.lex_state = 2181, .external_lex_state = 11}, + [178] = {.lex_state = 2181, .external_lex_state = 5}, + [179] = {.lex_state = 4, .external_lex_state = 5}, + [180] = {.lex_state = 4, .external_lex_state = 5}, + [181] = {.lex_state = 4, .external_lex_state = 5}, + [182] = {.lex_state = 4, .external_lex_state = 5}, + [183] = {.lex_state = 2181, .external_lex_state = 6}, + [184] = {.lex_state = 2181, .external_lex_state = 7}, + [185] = {.lex_state = 2181, .external_lex_state = 8}, + [186] = {.lex_state = 2181, .external_lex_state = 4}, + [187] = {.lex_state = 2181, .external_lex_state = 9}, + [188] = {.lex_state = 2181, .external_lex_state = 10}, + [189] = {.lex_state = 2181, .external_lex_state = 11}, + [190] = {.lex_state = 2181, .external_lex_state = 12}, + [191] = {.lex_state = 2181, .external_lex_state = 13}, + [192] = {.lex_state = 2181, .external_lex_state = 5}, + [193] = {.lex_state = 4, .external_lex_state = 5}, + [194] = {.lex_state = 4, .external_lex_state = 5}, + [195] = {.lex_state = 4, .external_lex_state = 5}, + [196] = {.lex_state = 4, .external_lex_state = 5}, + [197] = {.lex_state = 2181, .external_lex_state = 5}, + [198] = {.lex_state = 2181, .external_lex_state = 5}, + [199] = {.lex_state = 2181, .external_lex_state = 6}, + [200] = {.lex_state = 2181, .external_lex_state = 7}, + [201] = {.lex_state = 2181, .external_lex_state = 5}, + [202] = {.lex_state = 2181, .external_lex_state = 8}, + [203] = {.lex_state = 2181, .external_lex_state = 4}, + [204] = {.lex_state = 2181, .external_lex_state = 9}, + [205] = {.lex_state = 2181, .external_lex_state = 10}, + [206] = {.lex_state = 2181, .external_lex_state = 11}, + [207] = {.lex_state = 2181, .external_lex_state = 5}, + [208] = {.lex_state = 4, .external_lex_state = 5}, + [209] = {.lex_state = 4, .external_lex_state = 5}, + [210] = {.lex_state = 4, .external_lex_state = 5}, + [211] = {.lex_state = 4, .external_lex_state = 5}, + [212] = {.lex_state = 2181, .external_lex_state = 6}, + [213] = {.lex_state = 2181, .external_lex_state = 7}, + [214] = {.lex_state = 2181, .external_lex_state = 8}, + [215] = {.lex_state = 2181, .external_lex_state = 4}, + [216] = {.lex_state = 2181, .external_lex_state = 9}, + [217] = {.lex_state = 2181, .external_lex_state = 10}, + [218] = {.lex_state = 2181, .external_lex_state = 11}, + [219] = {.lex_state = 2181, .external_lex_state = 12}, + [220] = {.lex_state = 2181, .external_lex_state = 13}, + [221] = {.lex_state = 2181, .external_lex_state = 5}, + [222] = {.lex_state = 4, .external_lex_state = 5}, + [223] = {.lex_state = 4, .external_lex_state = 5}, + [224] = {.lex_state = 4, .external_lex_state = 5}, + [225] = {.lex_state = 4, .external_lex_state = 5}, + [226] = {.lex_state = 2181, .external_lex_state = 5}, + [227] = {.lex_state = 2181, .external_lex_state = 5}, + [228] = {.lex_state = 2181, .external_lex_state = 6}, + [229] = {.lex_state = 2181, .external_lex_state = 7}, + [230] = {.lex_state = 2181, .external_lex_state = 5}, + [231] = {.lex_state = 2181, .external_lex_state = 8}, + [232] = {.lex_state = 2181, .external_lex_state = 4}, + [233] = {.lex_state = 2181, .external_lex_state = 9}, + [234] = {.lex_state = 2181, .external_lex_state = 10}, + [235] = {.lex_state = 2181, .external_lex_state = 11}, + [236] = {.lex_state = 2181, .external_lex_state = 5}, + [237] = {.lex_state = 4, .external_lex_state = 5}, + [238] = {.lex_state = 4, .external_lex_state = 5}, + [239] = {.lex_state = 4, .external_lex_state = 5}, + [240] = {.lex_state = 4, .external_lex_state = 5}, + [241] = {.lex_state = 2181, .external_lex_state = 5}, + [242] = {.lex_state = 2181, .external_lex_state = 6}, + [243] = {.lex_state = 2181, .external_lex_state = 7}, + [244] = {.lex_state = 2181, .external_lex_state = 8}, + [245] = {.lex_state = 2181, .external_lex_state = 4}, + [246] = {.lex_state = 2181, .external_lex_state = 9}, + [247] = {.lex_state = 2181, .external_lex_state = 10}, + [248] = {.lex_state = 2181, .external_lex_state = 11}, + [249] = {.lex_state = 2181, .external_lex_state = 12}, + [250] = {.lex_state = 2181, .external_lex_state = 13}, + [251] = {.lex_state = 2181, .external_lex_state = 5}, + [252] = {.lex_state = 4, .external_lex_state = 5}, + [253] = {.lex_state = 4, .external_lex_state = 5}, + [254] = {.lex_state = 4, .external_lex_state = 5}, + [255] = {.lex_state = 4, .external_lex_state = 5}, + [256] = {.lex_state = 2181, .external_lex_state = 5}, + [257] = {.lex_state = 2181, .external_lex_state = 5}, + [258] = {.lex_state = 2181, .external_lex_state = 6}, + [259] = {.lex_state = 2181, .external_lex_state = 7}, + [260] = {.lex_state = 2181, .external_lex_state = 5}, + [261] = {.lex_state = 2181, .external_lex_state = 8}, + [262] = {.lex_state = 2181, .external_lex_state = 4}, + [263] = {.lex_state = 2181, .external_lex_state = 9}, + [264] = {.lex_state = 2181, .external_lex_state = 10}, + [265] = {.lex_state = 2181, .external_lex_state = 11}, + [266] = {.lex_state = 2181, .external_lex_state = 5}, + [267] = {.lex_state = 4, .external_lex_state = 5}, + [268] = {.lex_state = 4, .external_lex_state = 5}, + [269] = {.lex_state = 4, .external_lex_state = 5}, + [270] = {.lex_state = 4, .external_lex_state = 5}, + [271] = {.lex_state = 2181, .external_lex_state = 6}, + [272] = {.lex_state = 2181, .external_lex_state = 7}, + [273] = {.lex_state = 2181, .external_lex_state = 8}, + [274] = {.lex_state = 2181, .external_lex_state = 4}, + [275] = {.lex_state = 2181, .external_lex_state = 9}, + [276] = {.lex_state = 2181, .external_lex_state = 10}, + [277] = {.lex_state = 2181, .external_lex_state = 11}, + [278] = {.lex_state = 2181, .external_lex_state = 12}, [279] = {.lex_state = 2181, .external_lex_state = 13}, - [280] = {.lex_state = 2181, .external_lex_state = 14}, - [281] = {.lex_state = 2181, .external_lex_state = 15}, - [282] = {.lex_state = 2181, .external_lex_state = 16}, - [283] = {.lex_state = 2181, .external_lex_state = 17}, - [284] = {.lex_state = 2181, .external_lex_state = 18}, - [285] = {.lex_state = 2181, .external_lex_state = 19}, - [286] = {.lex_state = 2181, .external_lex_state = 14}, - [287] = {.lex_state = 4, .external_lex_state = 14}, - [288] = {.lex_state = 4, .external_lex_state = 14}, - [289] = {.lex_state = 4, .external_lex_state = 14}, - [290] = {.lex_state = 4, .external_lex_state = 14}, - [291] = {.lex_state = 2181, .external_lex_state = 22}, - [292] = {.lex_state = 2181, .external_lex_state = 13}, - [293] = {.lex_state = 2181, .external_lex_state = 15}, - [294] = {.lex_state = 2181, .external_lex_state = 16}, - [295] = {.lex_state = 2181, .external_lex_state = 17}, - [296] = {.lex_state = 2181, .external_lex_state = 18}, - [297] = {.lex_state = 2181, .external_lex_state = 19}, - [298] = {.lex_state = 2181, .external_lex_state = 20}, - [299] = {.lex_state = 2181, .external_lex_state = 21}, - [300] = {.lex_state = 2181, .external_lex_state = 14}, - [301] = {.lex_state = 4, .external_lex_state = 14}, - [302] = {.lex_state = 4, .external_lex_state = 14}, - [303] = {.lex_state = 4, .external_lex_state = 14}, - [304] = {.lex_state = 4, .external_lex_state = 14}, - [305] = {.lex_state = 2181, .external_lex_state = 14}, - [306] = {.lex_state = 2181, .external_lex_state = 14}, - [307] = {.lex_state = 2181, .external_lex_state = 22}, - [308] = {.lex_state = 2181, .external_lex_state = 13}, - [309] = {.lex_state = 2181, .external_lex_state = 14}, - [310] = {.lex_state = 2181, .external_lex_state = 15}, - [311] = {.lex_state = 2181, .external_lex_state = 16}, - [312] = {.lex_state = 2181, .external_lex_state = 17}, - [313] = {.lex_state = 2181, .external_lex_state = 18}, - [314] = {.lex_state = 2181, .external_lex_state = 19}, - [315] = {.lex_state = 2181, .external_lex_state = 14}, - [316] = {.lex_state = 4, .external_lex_state = 14}, - [317] = {.lex_state = 4, .external_lex_state = 14}, - [318] = {.lex_state = 4, .external_lex_state = 14}, - [319] = {.lex_state = 4, .external_lex_state = 14}, - [320] = {.lex_state = 2181, .external_lex_state = 22}, - [321] = {.lex_state = 2181, .external_lex_state = 22}, - [322] = {.lex_state = 2181, .external_lex_state = 13}, - [323] = {.lex_state = 2181, .external_lex_state = 15}, - [324] = {.lex_state = 2181, .external_lex_state = 16}, - [325] = {.lex_state = 2181, .external_lex_state = 17}, - [326] = {.lex_state = 2181, .external_lex_state = 18}, - [327] = {.lex_state = 2181, .external_lex_state = 19}, - [328] = {.lex_state = 2181, .external_lex_state = 20}, - [329] = {.lex_state = 2181, .external_lex_state = 21}, - [330] = {.lex_state = 2181, .external_lex_state = 14}, - [331] = {.lex_state = 4, .external_lex_state = 14}, - [332] = {.lex_state = 4, .external_lex_state = 14}, - [333] = {.lex_state = 4, .external_lex_state = 14}, - [334] = {.lex_state = 4, .external_lex_state = 14}, - [335] = {.lex_state = 2181, .external_lex_state = 14}, - [336] = {.lex_state = 2181, .external_lex_state = 14}, - [337] = {.lex_state = 2181, .external_lex_state = 22}, - [338] = {.lex_state = 2181, .external_lex_state = 13}, - [339] = {.lex_state = 2181, .external_lex_state = 14}, - [340] = {.lex_state = 2181, .external_lex_state = 15}, - [341] = {.lex_state = 2181, .external_lex_state = 16}, - [342] = {.lex_state = 2181, .external_lex_state = 17}, - [343] = {.lex_state = 2181, .external_lex_state = 18}, - [344] = {.lex_state = 2181, .external_lex_state = 19}, - [345] = {.lex_state = 2181, .external_lex_state = 14}, - [346] = {.lex_state = 4, .external_lex_state = 14}, - [347] = {.lex_state = 4, .external_lex_state = 14}, - [348] = {.lex_state = 4, .external_lex_state = 14}, - [349] = {.lex_state = 4, .external_lex_state = 14}, - [350] = {.lex_state = 2181, .external_lex_state = 17}, - [351] = {.lex_state = 2181, .external_lex_state = 22}, - [352] = {.lex_state = 2181, .external_lex_state = 13}, - [353] = {.lex_state = 2181, .external_lex_state = 15}, - [354] = {.lex_state = 2181, .external_lex_state = 16}, - [355] = {.lex_state = 2181, .external_lex_state = 17}, - [356] = {.lex_state = 2181, .external_lex_state = 18}, - [357] = {.lex_state = 2181, .external_lex_state = 19}, - [358] = {.lex_state = 2181, .external_lex_state = 20}, - [359] = {.lex_state = 2181, .external_lex_state = 21}, - [360] = {.lex_state = 2181, .external_lex_state = 14}, - [361] = {.lex_state = 4, .external_lex_state = 14}, - [362] = {.lex_state = 4, .external_lex_state = 14}, - [363] = {.lex_state = 4, .external_lex_state = 14}, - [364] = {.lex_state = 4, .external_lex_state = 14}, - [365] = {.lex_state = 2181, .external_lex_state = 14}, - [366] = {.lex_state = 2181, .external_lex_state = 14}, - [367] = {.lex_state = 2181, .external_lex_state = 22}, - [368] = {.lex_state = 2181, .external_lex_state = 13}, - [369] = {.lex_state = 2181, .external_lex_state = 14}, - [370] = {.lex_state = 2181, .external_lex_state = 15}, - [371] = {.lex_state = 2181, .external_lex_state = 16}, - [372] = {.lex_state = 2181, .external_lex_state = 17}, - [373] = {.lex_state = 2181, .external_lex_state = 18}, - [374] = {.lex_state = 2181, .external_lex_state = 19}, - [375] = {.lex_state = 2181, .external_lex_state = 14}, - [376] = {.lex_state = 4, .external_lex_state = 14}, - [377] = {.lex_state = 4, .external_lex_state = 14}, - [378] = {.lex_state = 4, .external_lex_state = 14}, - [379] = {.lex_state = 4, .external_lex_state = 14}, - [380] = {.lex_state = 2181, .external_lex_state = 4}, - [381] = {.lex_state = 2181, .external_lex_state = 22}, - [382] = {.lex_state = 2181, .external_lex_state = 13}, - [383] = {.lex_state = 2181, .external_lex_state = 15}, - [384] = {.lex_state = 2181, .external_lex_state = 16}, - [385] = {.lex_state = 2181, .external_lex_state = 17}, - [386] = {.lex_state = 2181, .external_lex_state = 18}, - [387] = {.lex_state = 2181, .external_lex_state = 19}, - [388] = {.lex_state = 2181, .external_lex_state = 20}, - [389] = {.lex_state = 2181, .external_lex_state = 21}, - [390] = {.lex_state = 2181, .external_lex_state = 14}, - [391] = {.lex_state = 4, .external_lex_state = 14}, - [392] = {.lex_state = 4, .external_lex_state = 14}, - [393] = {.lex_state = 4, .external_lex_state = 14}, - [394] = {.lex_state = 4, .external_lex_state = 14}, - [395] = {.lex_state = 2181, .external_lex_state = 14}, - [396] = {.lex_state = 2181, .external_lex_state = 14}, - [397] = {.lex_state = 2181, .external_lex_state = 22}, - [398] = {.lex_state = 2181, .external_lex_state = 13}, - [399] = {.lex_state = 2181, .external_lex_state = 14}, - [400] = {.lex_state = 2181, .external_lex_state = 4}, - [401] = {.lex_state = 2181, .external_lex_state = 4}, - [402] = {.lex_state = 4, .external_lex_state = 14}, - [403] = {.lex_state = 2181, .external_lex_state = 14}, - [404] = {.lex_state = 2181, .external_lex_state = 14}, - [405] = {.lex_state = 2181, .external_lex_state = 14}, - [406] = {.lex_state = 2181, .external_lex_state = 14}, - [407] = {.lex_state = 2181, .external_lex_state = 14}, - [408] = {.lex_state = 2181, .external_lex_state = 14}, - [409] = {.lex_state = 2181, .external_lex_state = 14}, - [410] = {.lex_state = 2181, .external_lex_state = 14}, - [411] = {.lex_state = 2181, .external_lex_state = 14}, - [412] = {.lex_state = 2181, .external_lex_state = 14}, - [413] = {.lex_state = 2181, .external_lex_state = 14}, - [414] = {.lex_state = 2181, .external_lex_state = 14}, - [415] = {.lex_state = 2181, .external_lex_state = 14}, - [416] = {.lex_state = 2181, .external_lex_state = 14}, - [417] = {.lex_state = 2181, .external_lex_state = 14}, - [418] = {.lex_state = 2181, .external_lex_state = 14}, - [419] = {.lex_state = 2181, .external_lex_state = 14}, - [420] = {.lex_state = 2181, .external_lex_state = 14}, - [421] = {.lex_state = 2181, .external_lex_state = 14}, - [422] = {.lex_state = 2181, .external_lex_state = 14}, - [423] = {.lex_state = 2181, .external_lex_state = 14}, - [424] = {.lex_state = 2181, .external_lex_state = 14}, - [425] = {.lex_state = 2181, .external_lex_state = 14}, - [426] = {.lex_state = 2181, .external_lex_state = 14}, - [427] = {.lex_state = 2181, .external_lex_state = 14}, - [428] = {.lex_state = 2181, .external_lex_state = 14}, - [429] = {.lex_state = 2181, .external_lex_state = 14}, - [430] = {.lex_state = 2181, .external_lex_state = 14}, - [431] = {.lex_state = 2181, .external_lex_state = 14}, - [432] = {.lex_state = 2181, .external_lex_state = 14}, - [433] = {.lex_state = 2181, .external_lex_state = 14}, - [434] = {.lex_state = 2181, .external_lex_state = 14}, - [435] = {.lex_state = 2181, .external_lex_state = 14}, - [436] = {.lex_state = 2181, .external_lex_state = 14}, - [437] = {.lex_state = 2181, .external_lex_state = 14}, - [438] = {.lex_state = 2181, .external_lex_state = 14}, - [439] = {.lex_state = 2181, .external_lex_state = 14}, - [440] = {.lex_state = 2181, .external_lex_state = 14}, - [441] = {.lex_state = 2181, .external_lex_state = 14}, - [442] = {.lex_state = 2181, .external_lex_state = 14}, - [443] = {.lex_state = 2181, .external_lex_state = 14}, - [444] = {.lex_state = 2181, .external_lex_state = 14}, - [445] = {.lex_state = 2181, .external_lex_state = 14}, - [446] = {.lex_state = 2181, .external_lex_state = 14}, - [447] = {.lex_state = 2181, .external_lex_state = 14}, - [448] = {.lex_state = 2181, .external_lex_state = 14}, - [449] = {.lex_state = 2181, .external_lex_state = 14}, - [450] = {.lex_state = 2181, .external_lex_state = 14}, - [451] = {.lex_state = 2181, .external_lex_state = 14}, - [452] = {.lex_state = 4, .external_lex_state = 14}, - [453] = {.lex_state = 2181, .external_lex_state = 14}, - [454] = {.lex_state = 2181, .external_lex_state = 13}, - [455] = {.lex_state = 2181, .external_lex_state = 13}, - [456] = {.lex_state = 2181, .external_lex_state = 15}, - [457] = {.lex_state = 2181, .external_lex_state = 15}, - [458] = {.lex_state = 2181, .external_lex_state = 14}, - [459] = {.lex_state = 2181, .external_lex_state = 16}, - [460] = {.lex_state = 2181, .external_lex_state = 16}, - [461] = {.lex_state = 2181, .external_lex_state = 17}, - [462] = {.lex_state = 2181, .external_lex_state = 17}, - [463] = {.lex_state = 2181, .external_lex_state = 18}, - [464] = {.lex_state = 2181, .external_lex_state = 18}, - [465] = {.lex_state = 2181, .external_lex_state = 19}, - [466] = {.lex_state = 2181, .external_lex_state = 19}, - [467] = {.lex_state = 2181, .external_lex_state = 20}, - [468] = {.lex_state = 2181, .external_lex_state = 20}, - [469] = {.lex_state = 2181, .external_lex_state = 21}, - [470] = {.lex_state = 2181, .external_lex_state = 21}, - [471] = {.lex_state = 2181, .external_lex_state = 14}, - [472] = {.lex_state = 2181, .external_lex_state = 14}, - [473] = {.lex_state = 4, .external_lex_state = 14}, - [474] = {.lex_state = 2181, .external_lex_state = 22}, - [475] = {.lex_state = 2181, .external_lex_state = 22}, - [476] = {.lex_state = 2181, .external_lex_state = 18}, - [477] = {.lex_state = 2181, .external_lex_state = 22}, - [478] = {.lex_state = 2181, .external_lex_state = 22}, - [479] = {.lex_state = 2181, .external_lex_state = 13}, - [480] = {.lex_state = 2181, .external_lex_state = 14}, - [481] = {.lex_state = 2181, .external_lex_state = 13}, - [482] = {.lex_state = 2181, .external_lex_state = 13}, - [483] = {.lex_state = 2181, .external_lex_state = 13}, - [484] = {.lex_state = 2181, .external_lex_state = 13}, - [485] = {.lex_state = 2181, .external_lex_state = 13}, - [486] = {.lex_state = 2181, .external_lex_state = 13}, - [487] = {.lex_state = 2181, .external_lex_state = 13}, - [488] = {.lex_state = 2181, .external_lex_state = 13}, - [489] = {.lex_state = 2181, .external_lex_state = 13}, - [490] = {.lex_state = 2181, .external_lex_state = 13}, - [491] = {.lex_state = 2181, .external_lex_state = 13}, - [492] = {.lex_state = 2181, .external_lex_state = 13}, - [493] = {.lex_state = 2181, .external_lex_state = 22}, - [494] = {.lex_state = 2181, .external_lex_state = 15}, - [495] = {.lex_state = 2181, .external_lex_state = 15}, - [496] = {.lex_state = 2181, .external_lex_state = 22}, - [497] = {.lex_state = 2181, .external_lex_state = 15}, - [498] = {.lex_state = 2181, .external_lex_state = 15}, - [499] = {.lex_state = 2181, .external_lex_state = 22}, - [500] = {.lex_state = 2181, .external_lex_state = 15}, - [501] = {.lex_state = 2181, .external_lex_state = 15}, - [502] = {.lex_state = 2181, .external_lex_state = 15}, - [503] = {.lex_state = 2181, .external_lex_state = 15}, - [504] = {.lex_state = 2181, .external_lex_state = 15}, - [505] = {.lex_state = 2181, .external_lex_state = 15}, - [506] = {.lex_state = 2181, .external_lex_state = 15}, - [507] = {.lex_state = 2181, .external_lex_state = 15}, - [508] = {.lex_state = 2181, .external_lex_state = 22}, - [509] = {.lex_state = 2181, .external_lex_state = 15}, - [510] = {.lex_state = 2181, .external_lex_state = 15}, - [511] = {.lex_state = 2181, .external_lex_state = 15}, - [512] = {.lex_state = 2181, .external_lex_state = 15}, - [513] = {.lex_state = 2181, .external_lex_state = 15}, - [514] = {.lex_state = 2181, .external_lex_state = 14}, - [515] = {.lex_state = 2181, .external_lex_state = 16}, - [516] = {.lex_state = 2181, .external_lex_state = 16}, - [517] = {.lex_state = 2181, .external_lex_state = 22}, - [518] = {.lex_state = 2181, .external_lex_state = 16}, - [519] = {.lex_state = 2181, .external_lex_state = 16}, - [520] = {.lex_state = 2181, .external_lex_state = 22}, - [521] = {.lex_state = 2181, .external_lex_state = 16}, - [522] = {.lex_state = 2181, .external_lex_state = 14}, - [523] = {.lex_state = 2181, .external_lex_state = 16}, - [524] = {.lex_state = 2181, .external_lex_state = 16}, - [525] = {.lex_state = 2181, .external_lex_state = 16}, - [526] = {.lex_state = 2181, .external_lex_state = 16}, - [527] = {.lex_state = 2181, .external_lex_state = 14}, - [528] = {.lex_state = 2181, .external_lex_state = 16}, - [529] = {.lex_state = 2181, .external_lex_state = 16}, - [530] = {.lex_state = 2181, .external_lex_state = 16}, - [531] = {.lex_state = 2181, .external_lex_state = 16}, - [532] = {.lex_state = 2181, .external_lex_state = 16}, - [533] = {.lex_state = 2181, .external_lex_state = 16}, - [534] = {.lex_state = 2181, .external_lex_state = 16}, - [535] = {.lex_state = 2181, .external_lex_state = 16}, - [536] = {.lex_state = 2181, .external_lex_state = 14}, - [537] = {.lex_state = 2181, .external_lex_state = 14}, - [538] = {.lex_state = 2181, .external_lex_state = 17}, - [539] = {.lex_state = 2181, .external_lex_state = 17}, - [540] = {.lex_state = 2181, .external_lex_state = 22}, - [541] = {.lex_state = 2181, .external_lex_state = 17}, - [542] = {.lex_state = 2181, .external_lex_state = 17}, - [543] = {.lex_state = 4, .external_lex_state = 14}, - [544] = {.lex_state = 2181, .external_lex_state = 17}, - [545] = {.lex_state = 2181, .external_lex_state = 14}, - [546] = {.lex_state = 2181, .external_lex_state = 17}, - [547] = {.lex_state = 2181, .external_lex_state = 17}, - [548] = {.lex_state = 2181, .external_lex_state = 17}, - [549] = {.lex_state = 2181, .external_lex_state = 17}, - [550] = {.lex_state = 2181, .external_lex_state = 17}, - [551] = {.lex_state = 2181, .external_lex_state = 17}, - [552] = {.lex_state = 2181, .external_lex_state = 17}, - [553] = {.lex_state = 2181, .external_lex_state = 17}, - [554] = {.lex_state = 2181, .external_lex_state = 17}, - [555] = {.lex_state = 2181, .external_lex_state = 17}, - [556] = {.lex_state = 2181, .external_lex_state = 17}, - [557] = {.lex_state = 2181, .external_lex_state = 17}, - [558] = {.lex_state = 2181, .external_lex_state = 14}, - [559] = {.lex_state = 4, .external_lex_state = 14}, - [560] = {.lex_state = 2181, .external_lex_state = 18}, - [561] = {.lex_state = 2181, .external_lex_state = 18}, - [562] = {.lex_state = 2181, .external_lex_state = 14}, - [563] = {.lex_state = 2181, .external_lex_state = 18}, - [564] = {.lex_state = 2181, .external_lex_state = 18}, - [565] = {.lex_state = 2181, .external_lex_state = 18}, - [566] = {.lex_state = 2181, .external_lex_state = 14}, - [567] = {.lex_state = 2181, .external_lex_state = 18}, - [568] = {.lex_state = 2181, .external_lex_state = 18}, - [569] = {.lex_state = 2181, .external_lex_state = 18}, - [570] = {.lex_state = 2181, .external_lex_state = 18}, - [571] = {.lex_state = 2181, .external_lex_state = 18}, - [572] = {.lex_state = 2181, .external_lex_state = 18}, - [573] = {.lex_state = 2181, .external_lex_state = 18}, - [574] = {.lex_state = 2181, .external_lex_state = 18}, - [575] = {.lex_state = 2181, .external_lex_state = 18}, - [576] = {.lex_state = 2181, .external_lex_state = 18}, - [577] = {.lex_state = 2181, .external_lex_state = 18}, - [578] = {.lex_state = 4, .external_lex_state = 14}, - [579] = {.lex_state = 2181, .external_lex_state = 19}, - [580] = {.lex_state = 2181, .external_lex_state = 19}, - [581] = {.lex_state = 2181, .external_lex_state = 19}, - [582] = {.lex_state = 2181, .external_lex_state = 19}, - [583] = {.lex_state = 2181, .external_lex_state = 19}, - [584] = {.lex_state = 2181, .external_lex_state = 19}, - [585] = {.lex_state = 2181, .external_lex_state = 19}, - [586] = {.lex_state = 2181, .external_lex_state = 19}, - [587] = {.lex_state = 2181, .external_lex_state = 19}, - [588] = {.lex_state = 2181, .external_lex_state = 19}, - [589] = {.lex_state = 2181, .external_lex_state = 19}, - [590] = {.lex_state = 2181, .external_lex_state = 19}, - [591] = {.lex_state = 2181, .external_lex_state = 19}, - [592] = {.lex_state = 2181, .external_lex_state = 19}, - [593] = {.lex_state = 2181, .external_lex_state = 19}, - [594] = {.lex_state = 2181, .external_lex_state = 19}, - [595] = {.lex_state = 2181, .external_lex_state = 19}, - [596] = {.lex_state = 2181, .external_lex_state = 20}, - [597] = {.lex_state = 2181, .external_lex_state = 20}, - [598] = {.lex_state = 2181, .external_lex_state = 20}, - [599] = {.lex_state = 2181, .external_lex_state = 20}, - [600] = {.lex_state = 2181, .external_lex_state = 20}, - [601] = {.lex_state = 2181, .external_lex_state = 20}, - [602] = {.lex_state = 2181, .external_lex_state = 20}, - [603] = {.lex_state = 2181, .external_lex_state = 20}, - [604] = {.lex_state = 2181, .external_lex_state = 20}, - [605] = {.lex_state = 2181, .external_lex_state = 20}, - [606] = {.lex_state = 2181, .external_lex_state = 20}, - [607] = {.lex_state = 2181, .external_lex_state = 20}, - [608] = {.lex_state = 2181, .external_lex_state = 20}, - [609] = {.lex_state = 2181, .external_lex_state = 20}, - [610] = {.lex_state = 2181, .external_lex_state = 20}, - [611] = {.lex_state = 2181, .external_lex_state = 20}, - [612] = {.lex_state = 2181, .external_lex_state = 20}, - [613] = {.lex_state = 2181, .external_lex_state = 21}, - [614] = {.lex_state = 2181, .external_lex_state = 21}, - [615] = {.lex_state = 2181, .external_lex_state = 21}, - [616] = {.lex_state = 2181, .external_lex_state = 21}, - [617] = {.lex_state = 2181, .external_lex_state = 21}, - [618] = {.lex_state = 2181, .external_lex_state = 21}, - [619] = {.lex_state = 2181, .external_lex_state = 21}, - [620] = {.lex_state = 2181, .external_lex_state = 21}, - [621] = {.lex_state = 2181, .external_lex_state = 21}, - [622] = {.lex_state = 2181, .external_lex_state = 21}, - [623] = {.lex_state = 2181, .external_lex_state = 21}, - [624] = {.lex_state = 2181, .external_lex_state = 21}, - [625] = {.lex_state = 2181, .external_lex_state = 21}, - [626] = {.lex_state = 2181, .external_lex_state = 21}, - [627] = {.lex_state = 2181, .external_lex_state = 21}, - [628] = {.lex_state = 2181, .external_lex_state = 21}, - [629] = {.lex_state = 2181, .external_lex_state = 21}, - [630] = {.lex_state = 2181, .external_lex_state = 14}, - [631] = {.lex_state = 2181, .external_lex_state = 14}, - [632] = {.lex_state = 2181, .external_lex_state = 14}, - [633] = {.lex_state = 2181, .external_lex_state = 14}, - [634] = {.lex_state = 2181, .external_lex_state = 13}, - [635] = {.lex_state = 2181, .external_lex_state = 14}, - [636] = {.lex_state = 2181, .external_lex_state = 14}, - [637] = {.lex_state = 2181, .external_lex_state = 14}, - [638] = {.lex_state = 2181, .external_lex_state = 14}, - [639] = {.lex_state = 2181, .external_lex_state = 14}, - [640] = {.lex_state = 2181, .external_lex_state = 14}, - [641] = {.lex_state = 2181, .external_lex_state = 14}, - [642] = {.lex_state = 2181, .external_lex_state = 14}, - [643] = {.lex_state = 2181, .external_lex_state = 14}, - [644] = {.lex_state = 2181, .external_lex_state = 14}, - [645] = {.lex_state = 2181, .external_lex_state = 14}, - [646] = {.lex_state = 2181, .external_lex_state = 14}, - [647] = {.lex_state = 2181, .external_lex_state = 14}, - [648] = {.lex_state = 4, .external_lex_state = 14}, - [649] = {.lex_state = 4, .external_lex_state = 14}, - [650] = {.lex_state = 2181, .external_lex_state = 13}, - [651] = {.lex_state = 4, .external_lex_state = 14}, - [652] = {.lex_state = 4, .external_lex_state = 14}, - [653] = {.lex_state = 4, .external_lex_state = 14}, - [654] = {.lex_state = 4, .external_lex_state = 14}, - [655] = {.lex_state = 4, .external_lex_state = 14}, - [656] = {.lex_state = 4, .external_lex_state = 14}, - [657] = {.lex_state = 4, .external_lex_state = 14}, - [658] = {.lex_state = 4, .external_lex_state = 14}, - [659] = {.lex_state = 4, .external_lex_state = 14}, - [660] = {.lex_state = 4, .external_lex_state = 14}, - [661] = {.lex_state = 4, .external_lex_state = 14}, - [662] = {.lex_state = 4, .external_lex_state = 14}, - [663] = {.lex_state = 2181, .external_lex_state = 14}, - [664] = {.lex_state = 2181, .external_lex_state = 14}, - [665] = {.lex_state = 2181, .external_lex_state = 14}, - [666] = {.lex_state = 2181, .external_lex_state = 14}, - [667] = {.lex_state = 2181, .external_lex_state = 14}, - [668] = {.lex_state = 2181, .external_lex_state = 22}, - [669] = {.lex_state = 2181, .external_lex_state = 22}, - [670] = {.lex_state = 2181, .external_lex_state = 22}, - [671] = {.lex_state = 2181, .external_lex_state = 22}, - [672] = {.lex_state = 2181, .external_lex_state = 22}, - [673] = {.lex_state = 2181, .external_lex_state = 13}, - [674] = {.lex_state = 2181, .external_lex_state = 22}, - [675] = {.lex_state = 2181, .external_lex_state = 13}, - [676] = {.lex_state = 2181, .external_lex_state = 22}, - [677] = {.lex_state = 2181, .external_lex_state = 22}, - [678] = {.lex_state = 2181, .external_lex_state = 14}, - [679] = {.lex_state = 2181, .external_lex_state = 14}, - [680] = {.lex_state = 2181, .external_lex_state = 23}, - [681] = {.lex_state = 2181, .external_lex_state = 11}, - [682] = {.lex_state = 2181, .external_lex_state = 24}, - [683] = {.lex_state = 2181, .external_lex_state = 9}, - [684] = {.lex_state = 2181, .external_lex_state = 25}, - [685] = {.lex_state = 2181, .external_lex_state = 26}, - [686] = {.lex_state = 2181, .external_lex_state = 27}, - [687] = {.lex_state = 2181, .external_lex_state = 4}, - [688] = {.lex_state = 2181, .external_lex_state = 2}, - [689] = {.lex_state = 2181, .external_lex_state = 3}, - [690] = {.lex_state = 2181, .external_lex_state = 4}, - [691] = {.lex_state = 2181, .external_lex_state = 2}, - [692] = {.lex_state = 2181, .external_lex_state = 28}, - [693] = {.lex_state = 4, .external_lex_state = 4}, - [694] = {.lex_state = 4, .external_lex_state = 2}, - [695] = {.lex_state = 2181, .external_lex_state = 7}, - [696] = {.lex_state = 2181, .external_lex_state = 10}, - [697] = {.lex_state = 2181, .external_lex_state = 8}, - [698] = {.lex_state = 2181, .external_lex_state = 29}, - [699] = {.lex_state = 2181, .external_lex_state = 12}, + [280] = {.lex_state = 2181, .external_lex_state = 5}, + [281] = {.lex_state = 4, .external_lex_state = 5}, + [282] = {.lex_state = 4, .external_lex_state = 5}, + [283] = {.lex_state = 4, .external_lex_state = 5}, + [284] = {.lex_state = 4, .external_lex_state = 5}, + [285] = {.lex_state = 2181, .external_lex_state = 5}, + [286] = {.lex_state = 2181, .external_lex_state = 5}, + [287] = {.lex_state = 2181, .external_lex_state = 6}, + [288] = {.lex_state = 2181, .external_lex_state = 7}, + [289] = {.lex_state = 2181, .external_lex_state = 5}, + [290] = {.lex_state = 2181, .external_lex_state = 8}, + [291] = {.lex_state = 2181, .external_lex_state = 4}, + [292] = {.lex_state = 2181, .external_lex_state = 9}, + [293] = {.lex_state = 2181, .external_lex_state = 10}, + [294] = {.lex_state = 2181, .external_lex_state = 11}, + [295] = {.lex_state = 2181, .external_lex_state = 5}, + [296] = {.lex_state = 4, .external_lex_state = 5}, + [297] = {.lex_state = 4, .external_lex_state = 5}, + [298] = {.lex_state = 4, .external_lex_state = 5}, + [299] = {.lex_state = 4, .external_lex_state = 5}, + [300] = {.lex_state = 4, .external_lex_state = 5}, + [301] = {.lex_state = 2181, .external_lex_state = 6}, + [302] = {.lex_state = 2181, .external_lex_state = 7}, + [303] = {.lex_state = 2181, .external_lex_state = 8}, + [304] = {.lex_state = 2181, .external_lex_state = 4}, + [305] = {.lex_state = 2181, .external_lex_state = 9}, + [306] = {.lex_state = 2181, .external_lex_state = 10}, + [307] = {.lex_state = 2181, .external_lex_state = 11}, + [308] = {.lex_state = 2181, .external_lex_state = 12}, + [309] = {.lex_state = 2181, .external_lex_state = 13}, + [310] = {.lex_state = 2181, .external_lex_state = 5}, + [311] = {.lex_state = 4, .external_lex_state = 5}, + [312] = {.lex_state = 4, .external_lex_state = 5}, + [313] = {.lex_state = 4, .external_lex_state = 5}, + [314] = {.lex_state = 4, .external_lex_state = 5}, + [315] = {.lex_state = 2181, .external_lex_state = 5}, + [316] = {.lex_state = 2181, .external_lex_state = 5}, + [317] = {.lex_state = 2181, .external_lex_state = 6}, + [318] = {.lex_state = 2181, .external_lex_state = 7}, + [319] = {.lex_state = 2181, .external_lex_state = 5}, + [320] = {.lex_state = 2181, .external_lex_state = 8}, + [321] = {.lex_state = 2181, .external_lex_state = 4}, + [322] = {.lex_state = 2181, .external_lex_state = 9}, + [323] = {.lex_state = 2181, .external_lex_state = 10}, + [324] = {.lex_state = 2181, .external_lex_state = 11}, + [325] = {.lex_state = 2181, .external_lex_state = 5}, + [326] = {.lex_state = 4, .external_lex_state = 5}, + [327] = {.lex_state = 4, .external_lex_state = 5}, + [328] = {.lex_state = 4, .external_lex_state = 5}, + [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 = 7}, + [333] = {.lex_state = 2181, .external_lex_state = 8}, + [334] = {.lex_state = 2181, .external_lex_state = 4}, + [335] = {.lex_state = 2181, .external_lex_state = 9}, + [336] = {.lex_state = 2181, .external_lex_state = 10}, + [337] = {.lex_state = 2181, .external_lex_state = 11}, + [338] = {.lex_state = 2181, .external_lex_state = 12}, + [339] = {.lex_state = 2181, .external_lex_state = 13}, + [340] = {.lex_state = 2181, .external_lex_state = 5}, + [341] = {.lex_state = 4, .external_lex_state = 5}, + [342] = {.lex_state = 4, .external_lex_state = 5}, + [343] = {.lex_state = 4, .external_lex_state = 5}, + [344] = {.lex_state = 4, .external_lex_state = 5}, + [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 = 7}, + [349] = {.lex_state = 2181, .external_lex_state = 5}, + [350] = {.lex_state = 2181, .external_lex_state = 8}, + [351] = {.lex_state = 2181, .external_lex_state = 4}, + [352] = {.lex_state = 2181, .external_lex_state = 9}, + [353] = {.lex_state = 2181, .external_lex_state = 10}, + [354] = {.lex_state = 2181, .external_lex_state = 11}, + [355] = {.lex_state = 2181, .external_lex_state = 5}, + [356] = {.lex_state = 4, .external_lex_state = 5}, + [357] = {.lex_state = 4, .external_lex_state = 5}, + [358] = {.lex_state = 4, .external_lex_state = 5}, + [359] = {.lex_state = 4, .external_lex_state = 5}, + [360] = {.lex_state = 4, .external_lex_state = 5}, + [361] = {.lex_state = 2181, .external_lex_state = 6}, + [362] = {.lex_state = 2181, .external_lex_state = 7}, + [363] = {.lex_state = 2181, .external_lex_state = 8}, + [364] = {.lex_state = 2181, .external_lex_state = 4}, + [365] = {.lex_state = 2181, .external_lex_state = 9}, + [366] = {.lex_state = 2181, .external_lex_state = 10}, + [367] = {.lex_state = 2181, .external_lex_state = 11}, + [368] = {.lex_state = 2181, .external_lex_state = 12}, + [369] = {.lex_state = 2181, .external_lex_state = 13}, + [370] = {.lex_state = 2181, .external_lex_state = 5}, + [371] = {.lex_state = 4, .external_lex_state = 5}, + [372] = {.lex_state = 4, .external_lex_state = 5}, + [373] = {.lex_state = 4, .external_lex_state = 5}, + [374] = {.lex_state = 4, .external_lex_state = 5}, + [375] = {.lex_state = 2181, .external_lex_state = 5}, + [376] = {.lex_state = 2181, .external_lex_state = 5}, + [377] = {.lex_state = 2181, .external_lex_state = 6}, + [378] = {.lex_state = 2181, .external_lex_state = 7}, + [379] = {.lex_state = 2181, .external_lex_state = 5}, + [380] = {.lex_state = 2181, .external_lex_state = 3}, + [381] = {.lex_state = 2181, .external_lex_state = 3}, + [382] = {.lex_state = 2181, .external_lex_state = 3}, + [383] = {.lex_state = 2181, .external_lex_state = 3}, + [384] = {.lex_state = 2181, .external_lex_state = 3}, + [385] = {.lex_state = 2181, .external_lex_state = 3}, + [386] = {.lex_state = 2181, .external_lex_state = 3}, + [387] = {.lex_state = 2181, .external_lex_state = 3}, + [388] = {.lex_state = 2181, .external_lex_state = 3}, + [389] = {.lex_state = 2181, .external_lex_state = 3}, + [390] = {.lex_state = 2181, .external_lex_state = 3}, + [391] = {.lex_state = 2181, .external_lex_state = 3}, + [392] = {.lex_state = 2181, .external_lex_state = 3}, + [393] = {.lex_state = 2181, .external_lex_state = 3}, + [394] = {.lex_state = 2181, .external_lex_state = 3}, + [395] = {.lex_state = 2181, .external_lex_state = 3}, + [396] = {.lex_state = 2181, .external_lex_state = 3}, + [397] = {.lex_state = 2181, .external_lex_state = 3}, + [398] = {.lex_state = 2181, .external_lex_state = 3}, + [399] = {.lex_state = 2181, .external_lex_state = 3}, + [400] = {.lex_state = 2181, .external_lex_state = 3}, + [401] = {.lex_state = 2181, .external_lex_state = 3}, + [402] = {.lex_state = 2181, .external_lex_state = 11}, + [403] = {.lex_state = 2181, .external_lex_state = 5}, + [404] = {.lex_state = 2181, .external_lex_state = 5}, + [405] = {.lex_state = 2181, .external_lex_state = 5}, + [406] = {.lex_state = 2181, .external_lex_state = 5}, + [407] = {.lex_state = 2181, .external_lex_state = 5}, + [408] = {.lex_state = 2181, .external_lex_state = 5}, + [409] = {.lex_state = 2181, .external_lex_state = 5}, + [410] = {.lex_state = 2181, .external_lex_state = 5}, + [411] = {.lex_state = 2181, .external_lex_state = 5}, + [412] = {.lex_state = 2181, .external_lex_state = 5}, + [413] = {.lex_state = 2181, .external_lex_state = 5}, + [414] = {.lex_state = 2181, .external_lex_state = 5}, + [415] = {.lex_state = 2181, .external_lex_state = 5}, + [416] = {.lex_state = 2181, .external_lex_state = 5}, + [417] = {.lex_state = 2181, .external_lex_state = 5}, + [418] = {.lex_state = 2181, .external_lex_state = 5}, + [419] = {.lex_state = 2181, .external_lex_state = 5}, + [420] = {.lex_state = 2181, .external_lex_state = 5}, + [421] = {.lex_state = 2181, .external_lex_state = 5}, + [422] = {.lex_state = 2181, .external_lex_state = 5}, + [423] = {.lex_state = 2181, .external_lex_state = 5}, + [424] = {.lex_state = 2181, .external_lex_state = 5}, + [425] = {.lex_state = 2181, .external_lex_state = 5}, + [426] = {.lex_state = 2181, .external_lex_state = 5}, + [427] = {.lex_state = 2181, .external_lex_state = 5}, + [428] = {.lex_state = 2181, .external_lex_state = 5}, + [429] = {.lex_state = 2181, .external_lex_state = 5}, + [430] = {.lex_state = 2181, .external_lex_state = 5}, + [431] = {.lex_state = 2181, .external_lex_state = 5}, + [432] = {.lex_state = 2181, .external_lex_state = 5}, + [433] = {.lex_state = 2181, .external_lex_state = 5}, + [434] = {.lex_state = 2181, .external_lex_state = 5}, + [435] = {.lex_state = 2181, .external_lex_state = 5}, + [436] = {.lex_state = 2181, .external_lex_state = 5}, + [437] = {.lex_state = 2181, .external_lex_state = 5}, + [438] = {.lex_state = 2181, .external_lex_state = 5}, + [439] = {.lex_state = 2181, .external_lex_state = 5}, + [440] = {.lex_state = 2181, .external_lex_state = 5}, + [441] = {.lex_state = 2181, .external_lex_state = 5}, + [442] = {.lex_state = 2181, .external_lex_state = 5}, + [443] = {.lex_state = 2181, .external_lex_state = 5}, + [444] = {.lex_state = 2181, .external_lex_state = 5}, + [445] = {.lex_state = 2181, .external_lex_state = 5}, + [446] = {.lex_state = 2181, .external_lex_state = 5}, + [447] = {.lex_state = 2181, .external_lex_state = 5}, + [448] = {.lex_state = 2181, .external_lex_state = 5}, + [449] = {.lex_state = 2181, .external_lex_state = 5}, + [450] = {.lex_state = 2181, .external_lex_state = 5}, + [451] = {.lex_state = 2181, .external_lex_state = 5}, + [452] = {.lex_state = 2181, .external_lex_state = 9}, + [453] = {.lex_state = 2181, .external_lex_state = 10}, + [454] = {.lex_state = 2181, .external_lex_state = 12}, + [455] = {.lex_state = 2181, .external_lex_state = 12}, + [456] = {.lex_state = 2181, .external_lex_state = 13}, + [457] = {.lex_state = 2181, .external_lex_state = 13}, + [458] = {.lex_state = 2181, .external_lex_state = 5}, + [459] = {.lex_state = 2181, .external_lex_state = 4}, + [460] = {.lex_state = 2181, .external_lex_state = 5}, + [461] = {.lex_state = 4, .external_lex_state = 5}, + [462] = {.lex_state = 4, .external_lex_state = 5}, + [463] = {.lex_state = 2181, .external_lex_state = 10}, + [464] = {.lex_state = 2181, .external_lex_state = 6}, + [465] = {.lex_state = 2181, .external_lex_state = 5}, + [466] = {.lex_state = 2181, .external_lex_state = 9}, + [467] = {.lex_state = 2181, .external_lex_state = 6}, + [468] = {.lex_state = 2181, .external_lex_state = 4}, + [469] = {.lex_state = 2181, .external_lex_state = 5}, + [470] = {.lex_state = 2181, .external_lex_state = 7}, + [471] = {.lex_state = 2181, .external_lex_state = 7}, + [472] = {.lex_state = 2181, .external_lex_state = 8}, + [473] = {.lex_state = 2181, .external_lex_state = 8}, + [474] = {.lex_state = 2181, .external_lex_state = 11}, + [475] = {.lex_state = 2181, .external_lex_state = 11}, + [476] = {.lex_state = 2181, .external_lex_state = 5}, + [477] = {.lex_state = 2181, .external_lex_state = 11}, + [478] = {.lex_state = 2181, .external_lex_state = 11}, + [479] = {.lex_state = 2181, .external_lex_state = 11}, + [480] = {.lex_state = 2181, .external_lex_state = 11}, + [481] = {.lex_state = 2181, .external_lex_state = 12}, + [482] = {.lex_state = 2181, .external_lex_state = 12}, + [483] = {.lex_state = 2181, .external_lex_state = 4}, + [484] = {.lex_state = 2181, .external_lex_state = 12}, + [485] = {.lex_state = 2181, .external_lex_state = 12}, + [486] = {.lex_state = 2181, .external_lex_state = 12}, + [487] = {.lex_state = 2181, .external_lex_state = 12}, + [488] = {.lex_state = 2181, .external_lex_state = 12}, + [489] = {.lex_state = 2181, .external_lex_state = 12}, + [490] = {.lex_state = 2181, .external_lex_state = 12}, + [491] = {.lex_state = 2181, .external_lex_state = 12}, + [492] = {.lex_state = 2181, .external_lex_state = 12}, + [493] = {.lex_state = 2181, .external_lex_state = 12}, + [494] = {.lex_state = 2181, .external_lex_state = 12}, + [495] = {.lex_state = 2181, .external_lex_state = 12}, + [496] = {.lex_state = 2181, .external_lex_state = 12}, + [497] = {.lex_state = 2181, .external_lex_state = 12}, + [498] = {.lex_state = 2181, .external_lex_state = 12}, + [499] = {.lex_state = 2181, .external_lex_state = 13}, + [500] = {.lex_state = 2181, .external_lex_state = 13}, + [501] = {.lex_state = 2181, .external_lex_state = 13}, + [502] = {.lex_state = 2181, .external_lex_state = 13}, + [503] = {.lex_state = 2181, .external_lex_state = 9}, + [504] = {.lex_state = 2181, .external_lex_state = 13}, + [505] = {.lex_state = 2181, .external_lex_state = 13}, + [506] = {.lex_state = 2181, .external_lex_state = 13}, + [507] = {.lex_state = 2181, .external_lex_state = 13}, + [508] = {.lex_state = 2181, .external_lex_state = 13}, + [509] = {.lex_state = 2181, .external_lex_state = 13}, + [510] = {.lex_state = 2181, .external_lex_state = 13}, + [511] = {.lex_state = 2181, .external_lex_state = 13}, + [512] = {.lex_state = 2181, .external_lex_state = 13}, + [513] = {.lex_state = 2181, .external_lex_state = 13}, + [514] = {.lex_state = 2181, .external_lex_state = 13}, + [515] = {.lex_state = 2181, .external_lex_state = 13}, + [516] = {.lex_state = 2181, .external_lex_state = 13}, + [517] = {.lex_state = 2181, .external_lex_state = 5}, + [518] = {.lex_state = 2181, .external_lex_state = 5}, + [519] = {.lex_state = 2181, .external_lex_state = 9}, + [520] = {.lex_state = 2181, .external_lex_state = 5}, + [521] = {.lex_state = 2181, .external_lex_state = 5}, + [522] = {.lex_state = 2181, .external_lex_state = 4}, + [523] = {.lex_state = 2181, .external_lex_state = 5}, + [524] = {.lex_state = 2181, .external_lex_state = 5}, + [525] = {.lex_state = 2181, .external_lex_state = 5}, + [526] = {.lex_state = 2181, .external_lex_state = 5}, + [527] = {.lex_state = 2181, .external_lex_state = 5}, + [528] = {.lex_state = 2181, .external_lex_state = 5}, + [529] = {.lex_state = 2181, .external_lex_state = 5}, + [530] = {.lex_state = 2181, .external_lex_state = 5}, + [531] = {.lex_state = 2181, .external_lex_state = 5}, + [532] = {.lex_state = 2181, .external_lex_state = 5}, + [533] = {.lex_state = 2181, .external_lex_state = 5}, + [534] = {.lex_state = 2181, .external_lex_state = 5}, + [535] = {.lex_state = 2181, .external_lex_state = 5}, + [536] = {.lex_state = 4, .external_lex_state = 5}, + [537] = {.lex_state = 4, .external_lex_state = 5}, + [538] = {.lex_state = 2181, .external_lex_state = 9}, + [539] = {.lex_state = 4, .external_lex_state = 5}, + [540] = {.lex_state = 4, .external_lex_state = 5}, + [541] = {.lex_state = 2181, .external_lex_state = 9}, + [542] = {.lex_state = 4, .external_lex_state = 5}, + [543] = {.lex_state = 4, .external_lex_state = 5}, + [544] = {.lex_state = 4, .external_lex_state = 5}, + [545] = {.lex_state = 4, .external_lex_state = 5}, + [546] = {.lex_state = 4, .external_lex_state = 5}, + [547] = {.lex_state = 4, .external_lex_state = 5}, + [548] = {.lex_state = 4, .external_lex_state = 5}, + [549] = {.lex_state = 4, .external_lex_state = 5}, + [550] = {.lex_state = 4, .external_lex_state = 5}, + [551] = {.lex_state = 4, .external_lex_state = 5}, + [552] = {.lex_state = 4, .external_lex_state = 5}, + [553] = {.lex_state = 4, .external_lex_state = 5}, + [554] = {.lex_state = 4, .external_lex_state = 5}, + [555] = {.lex_state = 2181, .external_lex_state = 4}, + [556] = {.lex_state = 2181, .external_lex_state = 5}, + [557] = {.lex_state = 2181, .external_lex_state = 5}, + [558] = {.lex_state = 2181, .external_lex_state = 5}, + [559] = {.lex_state = 2181, .external_lex_state = 5}, + [560] = {.lex_state = 2181, .external_lex_state = 5}, + [561] = {.lex_state = 2181, .external_lex_state = 4}, + [562] = {.lex_state = 2181, .external_lex_state = 5}, + [563] = {.lex_state = 2181, .external_lex_state = 5}, + [564] = {.lex_state = 2181, .external_lex_state = 5}, + [565] = {.lex_state = 2181, .external_lex_state = 5}, + [566] = {.lex_state = 2181, .external_lex_state = 5}, + [567] = {.lex_state = 2181, .external_lex_state = 5}, + [568] = {.lex_state = 2181, .external_lex_state = 5}, + [569] = {.lex_state = 2181, .external_lex_state = 6}, + [570] = {.lex_state = 2181, .external_lex_state = 6}, + [571] = {.lex_state = 2181, .external_lex_state = 9}, + [572] = {.lex_state = 2181, .external_lex_state = 6}, + [573] = {.lex_state = 2181, .external_lex_state = 6}, + [574] = {.lex_state = 2181, .external_lex_state = 9}, + [575] = {.lex_state = 2181, .external_lex_state = 6}, + [576] = {.lex_state = 2181, .external_lex_state = 5}, + [577] = {.lex_state = 2181, .external_lex_state = 5}, + [578] = {.lex_state = 2181, .external_lex_state = 9}, + [579] = {.lex_state = 2181, .external_lex_state = 6}, + [580] = {.lex_state = 2181, .external_lex_state = 6}, + [581] = {.lex_state = 2181, .external_lex_state = 6}, + [582] = {.lex_state = 2181, .external_lex_state = 6}, + [583] = {.lex_state = 2181, .external_lex_state = 6}, + [584] = {.lex_state = 2181, .external_lex_state = 6}, + [585] = {.lex_state = 2181, .external_lex_state = 6}, + [586] = {.lex_state = 2181, .external_lex_state = 4}, + [587] = {.lex_state = 2181, .external_lex_state = 6}, + [588] = {.lex_state = 2181, .external_lex_state = 6}, + [589] = {.lex_state = 2181, .external_lex_state = 6}, + [590] = {.lex_state = 2181, .external_lex_state = 6}, + [591] = {.lex_state = 2181, .external_lex_state = 7}, + [592] = {.lex_state = 2181, .external_lex_state = 7}, + [593] = {.lex_state = 2181, .external_lex_state = 9}, + [594] = {.lex_state = 2181, .external_lex_state = 7}, + [595] = {.lex_state = 2181, .external_lex_state = 7}, + [596] = {.lex_state = 2181, .external_lex_state = 9}, + [597] = {.lex_state = 2181, .external_lex_state = 7}, + [598] = {.lex_state = 2181, .external_lex_state = 5}, + [599] = {.lex_state = 2181, .external_lex_state = 7}, + [600] = {.lex_state = 2181, .external_lex_state = 7}, + [601] = {.lex_state = 2181, .external_lex_state = 7}, + [602] = {.lex_state = 2181, .external_lex_state = 7}, + [603] = {.lex_state = 2181, .external_lex_state = 7}, + [604] = {.lex_state = 2181, .external_lex_state = 7}, + [605] = {.lex_state = 2181, .external_lex_state = 7}, + [606] = {.lex_state = 2181, .external_lex_state = 7}, + [607] = {.lex_state = 2181, .external_lex_state = 7}, + [608] = {.lex_state = 2181, .external_lex_state = 7}, + [609] = {.lex_state = 2181, .external_lex_state = 7}, + [610] = {.lex_state = 2181, .external_lex_state = 7}, + [611] = {.lex_state = 2181, .external_lex_state = 8}, + [612] = {.lex_state = 2181, .external_lex_state = 8}, + [613] = {.lex_state = 2181, .external_lex_state = 9}, + [614] = {.lex_state = 2181, .external_lex_state = 8}, + [615] = {.lex_state = 2181, .external_lex_state = 8}, + [616] = {.lex_state = 2181, .external_lex_state = 9}, + [617] = {.lex_state = 2181, .external_lex_state = 8}, + [618] = {.lex_state = 2181, .external_lex_state = 9}, + [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 = 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 = 8}, + [627] = {.lex_state = 2181, .external_lex_state = 8}, + [628] = {.lex_state = 2181, .external_lex_state = 9}, + [629] = {.lex_state = 2181, .external_lex_state = 4}, + [630] = {.lex_state = 2181, .external_lex_state = 8}, + [631] = {.lex_state = 2181, .external_lex_state = 8}, + [632] = {.lex_state = 2181, .external_lex_state = 10}, + [633] = {.lex_state = 2181, .external_lex_state = 10}, + [634] = {.lex_state = 2181, .external_lex_state = 4}, + [635] = {.lex_state = 2181, .external_lex_state = 10}, + [636] = {.lex_state = 2181, .external_lex_state = 8}, + [637] = {.lex_state = 2181, .external_lex_state = 8}, + [638] = {.lex_state = 2181, .external_lex_state = 10}, + [639] = {.lex_state = 2181, .external_lex_state = 4}, + [640] = {.lex_state = 2181, .external_lex_state = 10}, + [641] = {.lex_state = 2181, .external_lex_state = 4}, + [642] = {.lex_state = 2181, .external_lex_state = 8}, + [643] = {.lex_state = 2181, .external_lex_state = 8}, + [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 = 8}, + [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 = 10}, + [653] = {.lex_state = 2181, .external_lex_state = 4}, + [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 = 4}, + [659] = {.lex_state = 2181, .external_lex_state = 11}, + [660] = {.lex_state = 2181, .external_lex_state = 11}, + [661] = {.lex_state = 2181, .external_lex_state = 4}, + [662] = {.lex_state = 2181, .external_lex_state = 4}, + [663] = {.lex_state = 2181, .external_lex_state = 4}, + [664] = {.lex_state = 2181, .external_lex_state = 11}, + [665] = {.lex_state = 2181, .external_lex_state = 11}, + [666] = {.lex_state = 2181, .external_lex_state = 4}, + [667] = {.lex_state = 2181, .external_lex_state = 11}, + [668] = {.lex_state = 2181, .external_lex_state = 4}, + [669] = {.lex_state = 2181, .external_lex_state = 11}, + [670] = {.lex_state = 2181, .external_lex_state = 11}, + [671] = {.lex_state = 2181, .external_lex_state = 11}, + [672] = {.lex_state = 2181, .external_lex_state = 11}, + [673] = {.lex_state = 2181, .external_lex_state = 11}, + [674] = {.lex_state = 2181, .external_lex_state = 4}, + [675] = {.lex_state = 2181, .external_lex_state = 5}, + [676] = {.lex_state = 2181, .external_lex_state = 11}, + [677] = {.lex_state = 2181, .external_lex_state = 11}, + [678] = {.lex_state = 2181, .external_lex_state = 11}, + [679] = {.lex_state = 2181, .external_lex_state = 6}, + [680] = {.lex_state = 2181, .external_lex_state = 2}, + [681] = {.lex_state = 2181, .external_lex_state = 14}, + [682] = {.lex_state = 2181, .external_lex_state = 15}, + [683] = {.lex_state = 2181, .external_lex_state = 16}, + [684] = {.lex_state = 2181, .external_lex_state = 17}, + [685] = {.lex_state = 2181, .external_lex_state = 18}, + [686] = {.lex_state = 2181, .external_lex_state = 19}, + [687] = {.lex_state = 4, .external_lex_state = 3}, + [688] = {.lex_state = 4, .external_lex_state = 2}, + [689] = {.lex_state = 2181, .external_lex_state = 20}, + [690] = {.lex_state = 2181, .external_lex_state = 21}, + [691] = {.lex_state = 2181, .external_lex_state = 22}, + [692] = {.lex_state = 2181, .external_lex_state = 23}, + [693] = {.lex_state = 2181, .external_lex_state = 24}, + [694] = {.lex_state = 2181, .external_lex_state = 25}, + [695] = {.lex_state = 2181, .external_lex_state = 26}, + [696] = {.lex_state = 2181, .external_lex_state = 27}, + [697] = {.lex_state = 2181, .external_lex_state = 3}, + [698] = {.lex_state = 2181, .external_lex_state = 28}, + [699] = {.lex_state = 2181, .external_lex_state = 29}, [700] = {.lex_state = 2181, .external_lex_state = 30}, - [701] = {.lex_state = 2181, .external_lex_state = 5}, - [702] = {.lex_state = 2181, .external_lex_state = 31}, - [703] = {.lex_state = 2181, .external_lex_state = 6}, - [704] = {.lex_state = 4, .external_lex_state = 4}, - [705] = {.lex_state = 2181, .external_lex_state = 6}, - [706] = {.lex_state = 2181, .external_lex_state = 6}, - [707] = {.lex_state = 2181, .external_lex_state = 9}, - [708] = {.lex_state = 2181, .external_lex_state = 11}, - [709] = {.lex_state = 2181, .external_lex_state = 12}, - [710] = {.lex_state = 2181, .external_lex_state = 2}, - [711] = {.lex_state = 2181, .external_lex_state = 3}, - [712] = {.lex_state = 2181, .external_lex_state = 3}, - [713] = {.lex_state = 2181, .external_lex_state = 28}, - [714] = {.lex_state = 2181, .external_lex_state = 4}, - [715] = {.lex_state = 2181, .external_lex_state = 4}, - [716] = {.lex_state = 2181, .external_lex_state = 12}, - [717] = {.lex_state = 2181, .external_lex_state = 29}, - [718] = {.lex_state = 2181, .external_lex_state = 23}, - [719] = {.lex_state = 2181, .external_lex_state = 29}, - [720] = {.lex_state = 2181, .external_lex_state = 24}, - [721] = {.lex_state = 2181, .external_lex_state = 12}, - [722] = {.lex_state = 2181, .external_lex_state = 31}, - [723] = {.lex_state = 2181, .external_lex_state = 30}, - [724] = {.lex_state = 2181, .external_lex_state = 11}, - [725] = {.lex_state = 2181, .external_lex_state = 4}, - [726] = {.lex_state = 2181, .external_lex_state = 10}, - [727] = {.lex_state = 2181, .external_lex_state = 4}, - [728] = {.lex_state = 2181, .external_lex_state = 4}, - [729] = {.lex_state = 2181, .external_lex_state = 4}, - [730] = {.lex_state = 2181, .external_lex_state = 10}, - [731] = {.lex_state = 2181, .external_lex_state = 11}, - [732] = {.lex_state = 2181, .external_lex_state = 4}, - [733] = {.lex_state = 2181, .external_lex_state = 3}, - [734] = {.lex_state = 2181, .external_lex_state = 6}, - [735] = {.lex_state = 2181, .external_lex_state = 7}, - [736] = {.lex_state = 2181, .external_lex_state = 3}, - [737] = {.lex_state = 2181, .external_lex_state = 3}, - [738] = {.lex_state = 4, .external_lex_state = 4}, - [739] = {.lex_state = 2181, .external_lex_state = 7}, - [740] = {.lex_state = 2181, .external_lex_state = 10}, + [701] = {.lex_state = 2181, .external_lex_state = 31}, + [702] = {.lex_state = 2181, .external_lex_state = 2}, + [703] = {.lex_state = 2181, .external_lex_state = 3}, + [704] = {.lex_state = 2181, .external_lex_state = 20}, + [705] = {.lex_state = 2181, .external_lex_state = 23}, + [706] = {.lex_state = 2181, .external_lex_state = 23}, + [707] = {.lex_state = 2181, .external_lex_state = 29}, + [708] = {.lex_state = 2181, .external_lex_state = 19}, + [709] = {.lex_state = 2181, .external_lex_state = 23}, + [710] = {.lex_state = 2181, .external_lex_state = 23}, + [711] = {.lex_state = 2181, .external_lex_state = 23}, + [712] = {.lex_state = 2181, .external_lex_state = 23}, + [713] = {.lex_state = 2181, .external_lex_state = 15}, + [714] = {.lex_state = 2181, .external_lex_state = 15}, + [715] = {.lex_state = 2181, .external_lex_state = 19}, + [716] = {.lex_state = 2181, .external_lex_state = 24}, + [717] = {.lex_state = 2181, .external_lex_state = 15}, + [718] = {.lex_state = 2181, .external_lex_state = 15}, + [719] = {.lex_state = 2181, .external_lex_state = 15}, + [720] = {.lex_state = 2181, .external_lex_state = 15}, + [721] = {.lex_state = 2181, .external_lex_state = 20}, + [722] = {.lex_state = 2181, .external_lex_state = 3}, + [723] = {.lex_state = 2181, .external_lex_state = 3}, + [724] = {.lex_state = 2181, .external_lex_state = 31}, + [725] = {.lex_state = 2181, .external_lex_state = 31}, + [726] = {.lex_state = 2181, .external_lex_state = 24}, + [727] = {.lex_state = 2181, .external_lex_state = 16}, + [728] = {.lex_state = 2181, .external_lex_state = 31}, + [729] = {.lex_state = 2181, .external_lex_state = 31}, + [730] = {.lex_state = 2181, .external_lex_state = 31}, + [731] = {.lex_state = 2181, .external_lex_state = 31}, + [732] = {.lex_state = 2181, .external_lex_state = 20}, + [733] = {.lex_state = 2181, .external_lex_state = 28}, + [734] = {.lex_state = 2181, .external_lex_state = 28}, + [735] = {.lex_state = 2181, .external_lex_state = 2}, + [736] = {.lex_state = 2181, .external_lex_state = 16}, + [737] = {.lex_state = 2181, .external_lex_state = 28}, + [738] = {.lex_state = 2181, .external_lex_state = 28}, + [739] = {.lex_state = 2181, .external_lex_state = 28}, + [740] = {.lex_state = 2181, .external_lex_state = 28}, [741] = {.lex_state = 2181, .external_lex_state = 3}, - [742] = {.lex_state = 2181, .external_lex_state = 7}, - [743] = {.lex_state = 2181, .external_lex_state = 6}, - [744] = {.lex_state = 4, .external_lex_state = 4}, - [745] = {.lex_state = 2181, .external_lex_state = 31}, - [746] = {.lex_state = 2181, .external_lex_state = 25}, - [747] = {.lex_state = 2181, .external_lex_state = 11}, - [748] = {.lex_state = 2181, .external_lex_state = 25}, - [749] = {.lex_state = 2181, .external_lex_state = 7}, - [750] = {.lex_state = 2181, .external_lex_state = 4}, - [751] = {.lex_state = 2181, .external_lex_state = 7}, - [752] = {.lex_state = 2181, .external_lex_state = 4}, - [753] = {.lex_state = 2181, .external_lex_state = 7}, - [754] = {.lex_state = 2181, .external_lex_state = 10}, - [755] = {.lex_state = 2181, .external_lex_state = 10}, - [756] = {.lex_state = 2181, .external_lex_state = 9}, - [757] = {.lex_state = 4, .external_lex_state = 4}, - [758] = {.lex_state = 2181, .external_lex_state = 12}, - [759] = {.lex_state = 2181, .external_lex_state = 8}, - [760] = {.lex_state = 2181, .external_lex_state = 8}, - [761] = {.lex_state = 2181, .external_lex_state = 9}, - [762] = {.lex_state = 2181, .external_lex_state = 30}, - [763] = {.lex_state = 2181, .external_lex_state = 27}, - [764] = {.lex_state = 2181, .external_lex_state = 28}, - [765] = {.lex_state = 2181, .external_lex_state = 2}, - [766] = {.lex_state = 2181, .external_lex_state = 2}, - [767] = {.lex_state = 4, .external_lex_state = 2}, - [768] = {.lex_state = 4, .external_lex_state = 2}, - [769] = {.lex_state = 2181, .external_lex_state = 12}, - [770] = {.lex_state = 2181, .external_lex_state = 9}, - [771] = {.lex_state = 2181, .external_lex_state = 6}, - [772] = {.lex_state = 2181, .external_lex_state = 23}, - [773] = {.lex_state = 2181, .external_lex_state = 9}, - [774] = {.lex_state = 2181, .external_lex_state = 5}, - [775] = {.lex_state = 2181, .external_lex_state = 5}, - [776] = {.lex_state = 2181, .external_lex_state = 6}, - [777] = {.lex_state = 2181, .external_lex_state = 10}, - [778] = {.lex_state = 2181, .external_lex_state = 8}, - [779] = {.lex_state = 2181, .external_lex_state = 9}, - [780] = {.lex_state = 2181, .external_lex_state = 24}, - [781] = {.lex_state = 2181, .external_lex_state = 8}, - [782] = {.lex_state = 4, .external_lex_state = 4}, - [783] = {.lex_state = 4, .external_lex_state = 4}, - [784] = {.lex_state = 2181, .external_lex_state = 8}, - [785] = {.lex_state = 2181, .external_lex_state = 5}, - [786] = {.lex_state = 2181, .external_lex_state = 4}, - [787] = {.lex_state = 2181, .external_lex_state = 26}, - [788] = {.lex_state = 2181, .external_lex_state = 11}, - [789] = {.lex_state = 2181, .external_lex_state = 4}, - [790] = {.lex_state = 2181, .external_lex_state = 8}, - [791] = {.lex_state = 2181, .external_lex_state = 4}, - [792] = {.lex_state = 2181, .external_lex_state = 5}, - [793] = {.lex_state = 2181, .external_lex_state = 5}, - [794] = {.lex_state = 2181, .external_lex_state = 26}, - [795] = {.lex_state = 2181, .external_lex_state = 27}, - [796] = {.lex_state = 2181, .external_lex_state = 5}, - [797] = {.lex_state = 2181, .external_lex_state = 11}, - [798] = {.lex_state = 2181, .external_lex_state = 12}, - [799] = {.lex_state = 2181, .external_lex_state = 2}, - [800] = {.lex_state = 2181, .external_lex_state = 14}, - [801] = {.lex_state = 2181, .external_lex_state = 16}, - [802] = {.lex_state = 2181, .external_lex_state = 17}, - [803] = {.lex_state = 2181, .external_lex_state = 17}, - [804] = {.lex_state = 2181, .external_lex_state = 17}, - [805] = {.lex_state = 2181, .external_lex_state = 17}, - [806] = {.lex_state = 2181, .external_lex_state = 17}, - [807] = {.lex_state = 2181, .external_lex_state = 17}, - [808] = {.lex_state = 2181, .external_lex_state = 17}, - [809] = {.lex_state = 2181, .external_lex_state = 17}, - [810] = {.lex_state = 2181, .external_lex_state = 17}, - [811] = {.lex_state = 2181, .external_lex_state = 17}, - [812] = {.lex_state = 2181, .external_lex_state = 17}, - [813] = {.lex_state = 2181, .external_lex_state = 17}, - [814] = {.lex_state = 2181, .external_lex_state = 17}, - [815] = {.lex_state = 2181, .external_lex_state = 17}, - [816] = {.lex_state = 2181, .external_lex_state = 17}, - [817] = {.lex_state = 2181, .external_lex_state = 17}, - [818] = {.lex_state = 2181, .external_lex_state = 16}, - [819] = {.lex_state = 2181, .external_lex_state = 17}, - [820] = {.lex_state = 2181, .external_lex_state = 17}, - [821] = {.lex_state = 2181, .external_lex_state = 17}, - [822] = {.lex_state = 2181, .external_lex_state = 17}, - [823] = {.lex_state = 2181, .external_lex_state = 17}, - [824] = {.lex_state = 2181, .external_lex_state = 17}, - [825] = {.lex_state = 2181, .external_lex_state = 17}, - [826] = {.lex_state = 2181, .external_lex_state = 17}, - [827] = {.lex_state = 2181, .external_lex_state = 17}, - [828] = {.lex_state = 2181, .external_lex_state = 17}, - [829] = {.lex_state = 2181, .external_lex_state = 17}, - [830] = {.lex_state = 2181, .external_lex_state = 17}, - [831] = {.lex_state = 2181, .external_lex_state = 17}, - [832] = {.lex_state = 2181, .external_lex_state = 17}, - [833] = {.lex_state = 2181, .external_lex_state = 17}, - [834] = {.lex_state = 2181, .external_lex_state = 17}, - [835] = {.lex_state = 2181, .external_lex_state = 17}, - [836] = {.lex_state = 2181, .external_lex_state = 17}, - [837] = {.lex_state = 2181, .external_lex_state = 17}, - [838] = {.lex_state = 2181, .external_lex_state = 17}, - [839] = {.lex_state = 2181, .external_lex_state = 17}, - [840] = {.lex_state = 2181, .external_lex_state = 17}, - [841] = {.lex_state = 2181, .external_lex_state = 17}, - [842] = {.lex_state = 2181, .external_lex_state = 14}, - [843] = {.lex_state = 2181, .external_lex_state = 17}, - [844] = {.lex_state = 2181, .external_lex_state = 17}, - [845] = {.lex_state = 2181, .external_lex_state = 17}, - [846] = {.lex_state = 2181, .external_lex_state = 17}, - [847] = {.lex_state = 2181, .external_lex_state = 17}, - [848] = {.lex_state = 2181, .external_lex_state = 17}, - [849] = {.lex_state = 2181, .external_lex_state = 17}, - [850] = {.lex_state = 2181, .external_lex_state = 17}, - [851] = {.lex_state = 2181, .external_lex_state = 17}, - [852] = {.lex_state = 2181, .external_lex_state = 17}, - [853] = {.lex_state = 2181, .external_lex_state = 17}, - [854] = {.lex_state = 2181, .external_lex_state = 17}, - [855] = {.lex_state = 2181, .external_lex_state = 17}, - [856] = {.lex_state = 2181, .external_lex_state = 17}, - [857] = {.lex_state = 2181, .external_lex_state = 17}, - [858] = {.lex_state = 2181, .external_lex_state = 17}, - [859] = {.lex_state = 2181, .external_lex_state = 17}, - [860] = {.lex_state = 2181, .external_lex_state = 17}, - [861] = {.lex_state = 2181, .external_lex_state = 17}, - [862] = {.lex_state = 2181, .external_lex_state = 17}, - [863] = {.lex_state = 2181, .external_lex_state = 17}, - [864] = {.lex_state = 2181, .external_lex_state = 17}, - [865] = {.lex_state = 2181, .external_lex_state = 17}, - [866] = {.lex_state = 2181, .external_lex_state = 14}, - [867] = {.lex_state = 2181, .external_lex_state = 17}, - [868] = {.lex_state = 2181, .external_lex_state = 17}, - [869] = {.lex_state = 2181, .external_lex_state = 17}, - [870] = {.lex_state = 2181, .external_lex_state = 14}, - [871] = {.lex_state = 2181, .external_lex_state = 17}, - [872] = {.lex_state = 2181, .external_lex_state = 17}, - [873] = {.lex_state = 2181, .external_lex_state = 17}, - [874] = {.lex_state = 2181, .external_lex_state = 17}, - [875] = {.lex_state = 2181, .external_lex_state = 17}, - [876] = {.lex_state = 2181, .external_lex_state = 14}, - [877] = {.lex_state = 2181, .external_lex_state = 17}, - [878] = {.lex_state = 2181, .external_lex_state = 18}, - [879] = {.lex_state = 2181, .external_lex_state = 18}, - [880] = {.lex_state = 2181, .external_lex_state = 18}, - [881] = {.lex_state = 2181, .external_lex_state = 18}, - [882] = {.lex_state = 2181, .external_lex_state = 18}, - [883] = {.lex_state = 2181, .external_lex_state = 18}, - [884] = {.lex_state = 2181, .external_lex_state = 18}, - [885] = {.lex_state = 2181, .external_lex_state = 18}, - [886] = {.lex_state = 2181, .external_lex_state = 18}, - [887] = {.lex_state = 2181, .external_lex_state = 18}, - [888] = {.lex_state = 2181, .external_lex_state = 18}, - [889] = {.lex_state = 2181, .external_lex_state = 14}, - [890] = {.lex_state = 2181, .external_lex_state = 18}, - [891] = {.lex_state = 2181, .external_lex_state = 18}, - [892] = {.lex_state = 2181, .external_lex_state = 16}, - [893] = {.lex_state = 2181, .external_lex_state = 18}, - [894] = {.lex_state = 2181, .external_lex_state = 18}, - [895] = {.lex_state = 2181, .external_lex_state = 18}, - [896] = {.lex_state = 2181, .external_lex_state = 18}, - [897] = {.lex_state = 2181, .external_lex_state = 17}, - [898] = {.lex_state = 2181, .external_lex_state = 18}, - [899] = {.lex_state = 2181, .external_lex_state = 18}, - [900] = {.lex_state = 2181, .external_lex_state = 18}, - [901] = {.lex_state = 2181, .external_lex_state = 18}, - [902] = {.lex_state = 2181, .external_lex_state = 18}, - [903] = {.lex_state = 2181, .external_lex_state = 18}, - [904] = {.lex_state = 2181, .external_lex_state = 14}, - [905] = {.lex_state = 2181, .external_lex_state = 18}, - [906] = {.lex_state = 2181, .external_lex_state = 18}, - [907] = {.lex_state = 2181, .external_lex_state = 18}, - [908] = {.lex_state = 2181, .external_lex_state = 18}, - [909] = {.lex_state = 2181, .external_lex_state = 18}, - [910] = {.lex_state = 2181, .external_lex_state = 18}, - [911] = {.lex_state = 2181, .external_lex_state = 18}, - [912] = {.lex_state = 2181, .external_lex_state = 18}, - [913] = {.lex_state = 2181, .external_lex_state = 18}, - [914] = {.lex_state = 2181, .external_lex_state = 18}, - [915] = {.lex_state = 2181, .external_lex_state = 18}, - [916] = {.lex_state = 2181, .external_lex_state = 18}, - [917] = {.lex_state = 2181, .external_lex_state = 18}, - [918] = {.lex_state = 2181, .external_lex_state = 18}, - [919] = {.lex_state = 2181, .external_lex_state = 18}, - [920] = {.lex_state = 2181, .external_lex_state = 18}, - [921] = {.lex_state = 2181, .external_lex_state = 18}, - [922] = {.lex_state = 2181, .external_lex_state = 18}, - [923] = {.lex_state = 2181, .external_lex_state = 18}, - [924] = {.lex_state = 2181, .external_lex_state = 18}, - [925] = {.lex_state = 2181, .external_lex_state = 18}, - [926] = {.lex_state = 2181, .external_lex_state = 18}, - [927] = {.lex_state = 2181, .external_lex_state = 18}, - [928] = {.lex_state = 2181, .external_lex_state = 18}, - [929] = {.lex_state = 2181, .external_lex_state = 18}, - [930] = {.lex_state = 2181, .external_lex_state = 18}, - [931] = {.lex_state = 2181, .external_lex_state = 18}, - [932] = {.lex_state = 2181, .external_lex_state = 18}, - [933] = {.lex_state = 2181, .external_lex_state = 18}, - [934] = {.lex_state = 2181, .external_lex_state = 18}, - [935] = {.lex_state = 2181, .external_lex_state = 18}, - [936] = {.lex_state = 2181, .external_lex_state = 18}, - [937] = {.lex_state = 2181, .external_lex_state = 18}, - [938] = {.lex_state = 2181, .external_lex_state = 18}, - [939] = {.lex_state = 2181, .external_lex_state = 14}, - [940] = {.lex_state = 2181, .external_lex_state = 18}, - [941] = {.lex_state = 2181, .external_lex_state = 18}, - [942] = {.lex_state = 2181, .external_lex_state = 18}, - [943] = {.lex_state = 2181, .external_lex_state = 18}, - [944] = {.lex_state = 2181, .external_lex_state = 18}, - [945] = {.lex_state = 2181, .external_lex_state = 14}, - [946] = {.lex_state = 2181, .external_lex_state = 18}, - [947] = {.lex_state = 2181, .external_lex_state = 18}, - [948] = {.lex_state = 2181, .external_lex_state = 18}, - [949] = {.lex_state = 2181, .external_lex_state = 18}, - [950] = {.lex_state = 2181, .external_lex_state = 18}, - [951] = {.lex_state = 2181, .external_lex_state = 18}, - [952] = {.lex_state = 2181, .external_lex_state = 18}, - [953] = {.lex_state = 2181, .external_lex_state = 18}, - [954] = {.lex_state = 2181, .external_lex_state = 18}, - [955] = {.lex_state = 2181, .external_lex_state = 18}, - [956] = {.lex_state = 2181, .external_lex_state = 19}, - [957] = {.lex_state = 2181, .external_lex_state = 19}, - [958] = {.lex_state = 2181, .external_lex_state = 19}, - [959] = {.lex_state = 2181, .external_lex_state = 19}, - [960] = {.lex_state = 2181, .external_lex_state = 19}, - [961] = {.lex_state = 2181, .external_lex_state = 19}, - [962] = {.lex_state = 2181, .external_lex_state = 19}, - [963] = {.lex_state = 2181, .external_lex_state = 19}, - [964] = {.lex_state = 2181, .external_lex_state = 19}, - [965] = {.lex_state = 2181, .external_lex_state = 19}, - [966] = {.lex_state = 2181, .external_lex_state = 19}, - [967] = {.lex_state = 2181, .external_lex_state = 19}, - [968] = {.lex_state = 2181, .external_lex_state = 19}, - [969] = {.lex_state = 2181, .external_lex_state = 17}, - [970] = {.lex_state = 2181, .external_lex_state = 19}, - [971] = {.lex_state = 2181, .external_lex_state = 19}, - [972] = {.lex_state = 2181, .external_lex_state = 19}, - [973] = {.lex_state = 2181, .external_lex_state = 19}, - [974] = {.lex_state = 2181, .external_lex_state = 18}, - [975] = {.lex_state = 2181, .external_lex_state = 19}, - [976] = {.lex_state = 2181, .external_lex_state = 19}, - [977] = {.lex_state = 2181, .external_lex_state = 19}, - [978] = {.lex_state = 2181, .external_lex_state = 19}, - [979] = {.lex_state = 2181, .external_lex_state = 19}, - [980] = {.lex_state = 2181, .external_lex_state = 19}, - [981] = {.lex_state = 2181, .external_lex_state = 19}, - [982] = {.lex_state = 2181, .external_lex_state = 19}, - [983] = {.lex_state = 2181, .external_lex_state = 19}, - [984] = {.lex_state = 2181, .external_lex_state = 19}, - [985] = {.lex_state = 2181, .external_lex_state = 19}, - [986] = {.lex_state = 2181, .external_lex_state = 19}, - [987] = {.lex_state = 2181, .external_lex_state = 19}, - [988] = {.lex_state = 2181, .external_lex_state = 19}, - [989] = {.lex_state = 2181, .external_lex_state = 19}, - [990] = {.lex_state = 2181, .external_lex_state = 19}, - [991] = {.lex_state = 2181, .external_lex_state = 19}, - [992] = {.lex_state = 2181, .external_lex_state = 19}, - [993] = {.lex_state = 2181, .external_lex_state = 19}, - [994] = {.lex_state = 2181, .external_lex_state = 19}, - [995] = {.lex_state = 2181, .external_lex_state = 19}, - [996] = {.lex_state = 2181, .external_lex_state = 19}, - [997] = {.lex_state = 2181, .external_lex_state = 14}, - [998] = {.lex_state = 2181, .external_lex_state = 19}, - [999] = {.lex_state = 2181, .external_lex_state = 19}, - [1000] = {.lex_state = 2181, .external_lex_state = 19}, - [1001] = {.lex_state = 2181, .external_lex_state = 19}, - [1002] = {.lex_state = 2181, .external_lex_state = 19}, - [1003] = {.lex_state = 2181, .external_lex_state = 19}, - [1004] = {.lex_state = 2181, .external_lex_state = 19}, - [1005] = {.lex_state = 2181, .external_lex_state = 19}, - [1006] = {.lex_state = 2181, .external_lex_state = 19}, - [1007] = {.lex_state = 2181, .external_lex_state = 19}, - [1008] = {.lex_state = 2181, .external_lex_state = 14}, - [1009] = {.lex_state = 2181, .external_lex_state = 19}, - [1010] = {.lex_state = 2181, .external_lex_state = 19}, - [1011] = {.lex_state = 2181, .external_lex_state = 19}, - [1012] = {.lex_state = 2181, .external_lex_state = 19}, - [1013] = {.lex_state = 2181, .external_lex_state = 19}, - [1014] = {.lex_state = 2181, .external_lex_state = 19}, - [1015] = {.lex_state = 2181, .external_lex_state = 19}, - [1016] = {.lex_state = 2181, .external_lex_state = 19}, - [1017] = {.lex_state = 2181, .external_lex_state = 19}, - [1018] = {.lex_state = 2181, .external_lex_state = 19}, - [1019] = {.lex_state = 2181, .external_lex_state = 19}, - [1020] = {.lex_state = 2181, .external_lex_state = 19}, - [1021] = {.lex_state = 2181, .external_lex_state = 19}, - [1022] = {.lex_state = 2181, .external_lex_state = 14}, - [1023] = {.lex_state = 2181, .external_lex_state = 19}, - [1024] = {.lex_state = 2181, .external_lex_state = 19}, - [1025] = {.lex_state = 2181, .external_lex_state = 19}, - [1026] = {.lex_state = 2181, .external_lex_state = 19}, - [1027] = {.lex_state = 2181, .external_lex_state = 19}, - [1028] = {.lex_state = 2181, .external_lex_state = 19}, - [1029] = {.lex_state = 2181, .external_lex_state = 19}, - [1030] = {.lex_state = 2181, .external_lex_state = 19}, - [1031] = {.lex_state = 2181, .external_lex_state = 19}, - [1032] = {.lex_state = 2181, .external_lex_state = 19}, - [1033] = {.lex_state = 2181, .external_lex_state = 14}, - [1034] = {.lex_state = 2181, .external_lex_state = 20}, - [1035] = {.lex_state = 2181, .external_lex_state = 14}, - [1036] = {.lex_state = 2181, .external_lex_state = 20}, - [1037] = {.lex_state = 2181, .external_lex_state = 20}, - [1038] = {.lex_state = 2181, .external_lex_state = 14}, - [1039] = {.lex_state = 2181, .external_lex_state = 20}, - [1040] = {.lex_state = 2181, .external_lex_state = 20}, - [1041] = {.lex_state = 2181, .external_lex_state = 20}, - [1042] = {.lex_state = 2181, .external_lex_state = 20}, - [1043] = {.lex_state = 2181, .external_lex_state = 20}, - [1044] = {.lex_state = 2181, .external_lex_state = 20}, - [1045] = {.lex_state = 2181, .external_lex_state = 20}, - [1046] = {.lex_state = 2181, .external_lex_state = 20}, - [1047] = {.lex_state = 2181, .external_lex_state = 20}, - [1048] = {.lex_state = 2181, .external_lex_state = 20}, - [1049] = {.lex_state = 2181, .external_lex_state = 18}, - [1050] = {.lex_state = 2181, .external_lex_state = 20}, - [1051] = {.lex_state = 2181, .external_lex_state = 20}, - [1052] = {.lex_state = 2181, .external_lex_state = 20}, - [1053] = {.lex_state = 2181, .external_lex_state = 20}, - [1054] = {.lex_state = 2181, .external_lex_state = 19}, - [1055] = {.lex_state = 2181, .external_lex_state = 20}, - [1056] = {.lex_state = 2181, .external_lex_state = 20}, - [1057] = {.lex_state = 2181, .external_lex_state = 20}, - [1058] = {.lex_state = 2181, .external_lex_state = 20}, - [1059] = {.lex_state = 2181, .external_lex_state = 20}, - [1060] = {.lex_state = 2181, .external_lex_state = 20}, - [1061] = {.lex_state = 2181, .external_lex_state = 20}, - [1062] = {.lex_state = 2181, .external_lex_state = 20}, - [1063] = {.lex_state = 2181, .external_lex_state = 20}, - [1064] = {.lex_state = 2181, .external_lex_state = 20}, - [1065] = {.lex_state = 2181, .external_lex_state = 20}, - [1066] = {.lex_state = 2181, .external_lex_state = 20}, - [1067] = {.lex_state = 2181, .external_lex_state = 20}, - [1068] = {.lex_state = 2181, .external_lex_state = 20}, - [1069] = {.lex_state = 2181, .external_lex_state = 20}, - [1070] = {.lex_state = 2181, .external_lex_state = 20}, - [1071] = {.lex_state = 2181, .external_lex_state = 20}, - [1072] = {.lex_state = 2181, .external_lex_state = 20}, - [1073] = {.lex_state = 2181, .external_lex_state = 20}, - [1074] = {.lex_state = 2181, .external_lex_state = 20}, - [1075] = {.lex_state = 2181, .external_lex_state = 20}, - [1076] = {.lex_state = 2181, .external_lex_state = 20}, - [1077] = {.lex_state = 2181, .external_lex_state = 14}, - [1078] = {.lex_state = 2181, .external_lex_state = 20}, - [1079] = {.lex_state = 2181, .external_lex_state = 20}, - [1080] = {.lex_state = 2181, .external_lex_state = 20}, - [1081] = {.lex_state = 2181, .external_lex_state = 20}, - [1082] = {.lex_state = 2181, .external_lex_state = 20}, - [1083] = {.lex_state = 2181, .external_lex_state = 20}, - [1084] = {.lex_state = 2181, .external_lex_state = 20}, - [1085] = {.lex_state = 2181, .external_lex_state = 20}, - [1086] = {.lex_state = 2181, .external_lex_state = 20}, - [1087] = {.lex_state = 2181, .external_lex_state = 20}, - [1088] = {.lex_state = 2181, .external_lex_state = 20}, - [1089] = {.lex_state = 2181, .external_lex_state = 20}, - [1090] = {.lex_state = 2181, .external_lex_state = 20}, - [1091] = {.lex_state = 2181, .external_lex_state = 20}, - [1092] = {.lex_state = 2181, .external_lex_state = 20}, - [1093] = {.lex_state = 2181, .external_lex_state = 20}, - [1094] = {.lex_state = 2181, .external_lex_state = 20}, - [1095] = {.lex_state = 2181, .external_lex_state = 14}, - [1096] = {.lex_state = 2181, .external_lex_state = 20}, - [1097] = {.lex_state = 2181, .external_lex_state = 20}, - [1098] = {.lex_state = 2181, .external_lex_state = 20}, - [1099] = {.lex_state = 2181, .external_lex_state = 20}, - [1100] = {.lex_state = 2181, .external_lex_state = 20}, - [1101] = {.lex_state = 2181, .external_lex_state = 20}, - [1102] = {.lex_state = 2181, .external_lex_state = 20}, - [1103] = {.lex_state = 2181, .external_lex_state = 20}, - [1104] = {.lex_state = 2181, .external_lex_state = 20}, - [1105] = {.lex_state = 2181, .external_lex_state = 20}, - [1106] = {.lex_state = 2181, .external_lex_state = 14}, - [1107] = {.lex_state = 2181, .external_lex_state = 20}, - [1108] = {.lex_state = 2181, .external_lex_state = 20}, - [1109] = {.lex_state = 2181, .external_lex_state = 20}, - [1110] = {.lex_state = 2181, .external_lex_state = 20}, - [1111] = {.lex_state = 2181, .external_lex_state = 20}, - [1112] = {.lex_state = 2181, .external_lex_state = 20}, - [1113] = {.lex_state = 2181, .external_lex_state = 14}, - [1114] = {.lex_state = 2181, .external_lex_state = 14}, - [1115] = {.lex_state = 2181, .external_lex_state = 21}, - [1116] = {.lex_state = 2181, .external_lex_state = 14}, - [1117] = {.lex_state = 2181, .external_lex_state = 21}, - [1118] = {.lex_state = 2181, .external_lex_state = 21}, - [1119] = {.lex_state = 2181, .external_lex_state = 14}, - [1120] = {.lex_state = 2181, .external_lex_state = 21}, - [1121] = {.lex_state = 2181, .external_lex_state = 21}, - [1122] = {.lex_state = 2181, .external_lex_state = 21}, - [1123] = {.lex_state = 2181, .external_lex_state = 21}, - [1124] = {.lex_state = 2181, .external_lex_state = 21}, - [1125] = {.lex_state = 2181, .external_lex_state = 21}, - [1126] = {.lex_state = 2181, .external_lex_state = 21}, - [1127] = {.lex_state = 2181, .external_lex_state = 21}, - [1128] = {.lex_state = 2181, .external_lex_state = 14}, - [1129] = {.lex_state = 2181, .external_lex_state = 21}, - [1130] = {.lex_state = 2181, .external_lex_state = 21}, - [1131] = {.lex_state = 2181, .external_lex_state = 19}, - [1132] = {.lex_state = 2181, .external_lex_state = 21}, - [1133] = {.lex_state = 2181, .external_lex_state = 21}, - [1134] = {.lex_state = 2181, .external_lex_state = 21}, - [1135] = {.lex_state = 2181, .external_lex_state = 21}, - [1136] = {.lex_state = 2181, .external_lex_state = 21}, - [1137] = {.lex_state = 2181, .external_lex_state = 21}, - [1138] = {.lex_state = 2181, .external_lex_state = 21}, - [1139] = {.lex_state = 2181, .external_lex_state = 21}, - [1140] = {.lex_state = 2181, .external_lex_state = 21}, - [1141] = {.lex_state = 2181, .external_lex_state = 21}, - [1142] = {.lex_state = 2181, .external_lex_state = 21}, - [1143] = {.lex_state = 2181, .external_lex_state = 21}, - [1144] = {.lex_state = 2181, .external_lex_state = 21}, - [1145] = {.lex_state = 2181, .external_lex_state = 21}, - [1146] = {.lex_state = 2181, .external_lex_state = 21}, - [1147] = {.lex_state = 2181, .external_lex_state = 21}, - [1148] = {.lex_state = 2181, .external_lex_state = 21}, - [1149] = {.lex_state = 2181, .external_lex_state = 21}, - [1150] = {.lex_state = 2181, .external_lex_state = 21}, - [1151] = {.lex_state = 2181, .external_lex_state = 21}, - [1152] = {.lex_state = 2181, .external_lex_state = 21}, - [1153] = {.lex_state = 2181, .external_lex_state = 21}, - [1154] = {.lex_state = 2181, .external_lex_state = 21}, - [1155] = {.lex_state = 2181, .external_lex_state = 21}, - [1156] = {.lex_state = 2181, .external_lex_state = 21}, - [1157] = {.lex_state = 2181, .external_lex_state = 14}, - [1158] = {.lex_state = 2181, .external_lex_state = 21}, - [1159] = {.lex_state = 2181, .external_lex_state = 21}, - [1160] = {.lex_state = 2181, .external_lex_state = 14}, - [1161] = {.lex_state = 2181, .external_lex_state = 21}, - [1162] = {.lex_state = 2181, .external_lex_state = 21}, - [1163] = {.lex_state = 2181, .external_lex_state = 21}, - [1164] = {.lex_state = 2181, .external_lex_state = 21}, - [1165] = {.lex_state = 2181, .external_lex_state = 21}, - [1166] = {.lex_state = 2181, .external_lex_state = 21}, - [1167] = {.lex_state = 2181, .external_lex_state = 21}, - [1168] = {.lex_state = 2181, .external_lex_state = 21}, - [1169] = {.lex_state = 2181, .external_lex_state = 21}, - [1170] = {.lex_state = 2181, .external_lex_state = 14}, - [1171] = {.lex_state = 2181, .external_lex_state = 21}, - [1172] = {.lex_state = 2181, .external_lex_state = 14}, - [1173] = {.lex_state = 2181, .external_lex_state = 21}, - [1174] = {.lex_state = 2181, .external_lex_state = 21}, - [1175] = {.lex_state = 2181, .external_lex_state = 21}, - [1176] = {.lex_state = 2181, .external_lex_state = 21}, - [1177] = {.lex_state = 2181, .external_lex_state = 21}, - [1178] = {.lex_state = 2181, .external_lex_state = 21}, - [1179] = {.lex_state = 2181, .external_lex_state = 21}, - [1180] = {.lex_state = 2181, .external_lex_state = 14}, - [1181] = {.lex_state = 2181, .external_lex_state = 21}, - [1182] = {.lex_state = 2181, .external_lex_state = 21}, - [1183] = {.lex_state = 2181, .external_lex_state = 21}, - [1184] = {.lex_state = 2181, .external_lex_state = 21}, - [1185] = {.lex_state = 2181, .external_lex_state = 21}, - [1186] = {.lex_state = 2181, .external_lex_state = 22}, - [1187] = {.lex_state = 2181, .external_lex_state = 21}, - [1188] = {.lex_state = 2181, .external_lex_state = 14}, - [1189] = {.lex_state = 2181, .external_lex_state = 21}, - [1190] = {.lex_state = 2181, .external_lex_state = 21}, - [1191] = {.lex_state = 2181, .external_lex_state = 21}, - [1192] = {.lex_state = 2181, .external_lex_state = 21}, - [1193] = {.lex_state = 2181, .external_lex_state = 21}, - [1194] = {.lex_state = 2181, .external_lex_state = 21}, - [1195] = {.lex_state = 2181, .external_lex_state = 21}, - [1196] = {.lex_state = 2181, .external_lex_state = 21}, - [1197] = {.lex_state = 2181, .external_lex_state = 21}, - [1198] = {.lex_state = 2181, .external_lex_state = 22}, - [1199] = {.lex_state = 2181, .external_lex_state = 22}, - [1200] = {.lex_state = 2181, .external_lex_state = 22}, - [1201] = {.lex_state = 2181, .external_lex_state = 14}, - [1202] = {.lex_state = 2181, .external_lex_state = 14}, - [1203] = {.lex_state = 2181, .external_lex_state = 14}, - [1204] = {.lex_state = 2181, .external_lex_state = 14}, - [1205] = {.lex_state = 2181, .external_lex_state = 14}, - [1206] = {.lex_state = 2181, .external_lex_state = 14}, - [1207] = {.lex_state = 2181, .external_lex_state = 14}, - [1208] = {.lex_state = 2181, .external_lex_state = 14}, - [1209] = {.lex_state = 2181, .external_lex_state = 14}, - [1210] = {.lex_state = 2181, .external_lex_state = 14}, - [1211] = {.lex_state = 2181, .external_lex_state = 14}, - [1212] = {.lex_state = 2181, .external_lex_state = 14}, - [1213] = {.lex_state = 2181, .external_lex_state = 14}, - [1214] = {.lex_state = 2181, .external_lex_state = 14}, - [1215] = {.lex_state = 2181, .external_lex_state = 14}, - [1216] = {.lex_state = 2181, .external_lex_state = 20}, - [1217] = {.lex_state = 2181, .external_lex_state = 14}, - [1218] = {.lex_state = 2181, .external_lex_state = 14}, - [1219] = {.lex_state = 2181, .external_lex_state = 14}, - [1220] = {.lex_state = 2181, .external_lex_state = 14}, - [1221] = {.lex_state = 2181, .external_lex_state = 22}, - [1222] = {.lex_state = 2181, .external_lex_state = 20}, - [1223] = {.lex_state = 2181, .external_lex_state = 14}, - [1224] = {.lex_state = 2181, .external_lex_state = 14}, - [1225] = {.lex_state = 2181, .external_lex_state = 22}, - [1226] = {.lex_state = 2181, .external_lex_state = 14}, - [1227] = {.lex_state = 2181, .external_lex_state = 22}, - [1228] = {.lex_state = 2181, .external_lex_state = 14}, - [1229] = {.lex_state = 2181, .external_lex_state = 14}, - [1230] = {.lex_state = 2181, .external_lex_state = 14}, - [1231] = {.lex_state = 2181, .external_lex_state = 14}, - [1232] = {.lex_state = 2181, .external_lex_state = 14}, - [1233] = {.lex_state = 2181, .external_lex_state = 14}, - [1234] = {.lex_state = 2181, .external_lex_state = 14}, - [1235] = {.lex_state = 2181, .external_lex_state = 14}, - [1236] = {.lex_state = 2181, .external_lex_state = 14}, - [1237] = {.lex_state = 2181, .external_lex_state = 14}, - [1238] = {.lex_state = 2181, .external_lex_state = 14}, - [1239] = {.lex_state = 2181, .external_lex_state = 14}, - [1240] = {.lex_state = 2181, .external_lex_state = 14}, - [1241] = {.lex_state = 2181, .external_lex_state = 14}, - [1242] = {.lex_state = 2181, .external_lex_state = 14}, - [1243] = {.lex_state = 2181, .external_lex_state = 14}, - [1244] = {.lex_state = 2181, .external_lex_state = 14}, - [1245] = {.lex_state = 2181, .external_lex_state = 14}, - [1246] = {.lex_state = 2181, .external_lex_state = 22}, - [1247] = {.lex_state = 2181, .external_lex_state = 14}, - [1248] = {.lex_state = 2181, .external_lex_state = 22}, - [1249] = {.lex_state = 2181, .external_lex_state = 14}, - [1250] = {.lex_state = 2181, .external_lex_state = 22}, - [1251] = {.lex_state = 2181, .external_lex_state = 22}, - [1252] = {.lex_state = 2181, .external_lex_state = 14}, - [1253] = {.lex_state = 2181, .external_lex_state = 14}, - [1254] = {.lex_state = 2181, .external_lex_state = 14}, - [1255] = {.lex_state = 2181, .external_lex_state = 14}, - [1256] = {.lex_state = 2181, .external_lex_state = 14}, - [1257] = {.lex_state = 2181, .external_lex_state = 22}, - [1258] = {.lex_state = 2181, .external_lex_state = 14}, - [1259] = {.lex_state = 2181, .external_lex_state = 14}, - [1260] = {.lex_state = 2181, .external_lex_state = 14}, - [1261] = {.lex_state = 2181, .external_lex_state = 14}, - [1262] = {.lex_state = 2181, .external_lex_state = 14}, - [1263] = {.lex_state = 2181, .external_lex_state = 14}, - [1264] = {.lex_state = 2181, .external_lex_state = 22}, - [1265] = {.lex_state = 2181, .external_lex_state = 14}, - [1266] = {.lex_state = 2181, .external_lex_state = 14}, - [1267] = {.lex_state = 2181, .external_lex_state = 14}, - [1268] = {.lex_state = 2181, .external_lex_state = 14}, - [1269] = {.lex_state = 2181, .external_lex_state = 14}, - [1270] = {.lex_state = 2181, .external_lex_state = 14}, - [1271] = {.lex_state = 2181, .external_lex_state = 22}, - [1272] = {.lex_state = 2181, .external_lex_state = 14}, - [1273] = {.lex_state = 2181, .external_lex_state = 14}, - [1274] = {.lex_state = 2181, .external_lex_state = 14}, - [1275] = {.lex_state = 2181, .external_lex_state = 14}, - [1276] = {.lex_state = 2181, .external_lex_state = 14}, - [1277] = {.lex_state = 2181, .external_lex_state = 14}, - [1278] = {.lex_state = 2181, .external_lex_state = 22}, - [1279] = {.lex_state = 2181, .external_lex_state = 14}, - [1280] = {.lex_state = 2181, .external_lex_state = 22}, - [1281] = {.lex_state = 2181, .external_lex_state = 14}, - [1282] = {.lex_state = 2181, .external_lex_state = 14}, - [1283] = {.lex_state = 2181, .external_lex_state = 14}, - [1284] = {.lex_state = 2181, .external_lex_state = 22}, - [1285] = {.lex_state = 2181, .external_lex_state = 14}, - [1286] = {.lex_state = 2181, .external_lex_state = 22}, - [1287] = {.lex_state = 2181, .external_lex_state = 14}, - [1288] = {.lex_state = 2181, .external_lex_state = 14}, - [1289] = {.lex_state = 2181, .external_lex_state = 14}, - [1290] = {.lex_state = 2181, .external_lex_state = 14}, - [1291] = {.lex_state = 2181, .external_lex_state = 14}, - [1292] = {.lex_state = 2181, .external_lex_state = 14}, - [1293] = {.lex_state = 2181, .external_lex_state = 22}, - [1294] = {.lex_state = 2181, .external_lex_state = 22}, - [1295] = {.lex_state = 2181, .external_lex_state = 14}, - [1296] = {.lex_state = 2181, .external_lex_state = 22}, - [1297] = {.lex_state = 4, .external_lex_state = 14}, - [1298] = {.lex_state = 2181, .external_lex_state = 14}, - [1299] = {.lex_state = 2181, .external_lex_state = 22}, - [1300] = {.lex_state = 4, .external_lex_state = 14}, - [1301] = {.lex_state = 4, .external_lex_state = 14}, - [1302] = {.lex_state = 2181, .external_lex_state = 22}, - [1303] = {.lex_state = 4, .external_lex_state = 14}, - [1304] = {.lex_state = 4, .external_lex_state = 14}, - [1305] = {.lex_state = 4, .external_lex_state = 14}, - [1306] = {.lex_state = 4, .external_lex_state = 14}, - [1307] = {.lex_state = 4, .external_lex_state = 14}, - [1308] = {.lex_state = 4, .external_lex_state = 14}, - [1309] = {.lex_state = 4, .external_lex_state = 14}, - [1310] = {.lex_state = 4, .external_lex_state = 14}, - [1311] = {.lex_state = 2181, .external_lex_state = 14}, - [1312] = {.lex_state = 4, .external_lex_state = 14}, - [1313] = {.lex_state = 4, .external_lex_state = 14}, - [1314] = {.lex_state = 2181, .external_lex_state = 21}, - [1315] = {.lex_state = 4, .external_lex_state = 14}, - [1316] = {.lex_state = 4, .external_lex_state = 14}, - [1317] = {.lex_state = 4, .external_lex_state = 14}, - [1318] = {.lex_state = 4, .external_lex_state = 14}, - [1319] = {.lex_state = 2181, .external_lex_state = 22}, - [1320] = {.lex_state = 2181, .external_lex_state = 21}, - [1321] = {.lex_state = 4, .external_lex_state = 14}, - [1322] = {.lex_state = 4, .external_lex_state = 14}, - [1323] = {.lex_state = 4, .external_lex_state = 14}, - [1324] = {.lex_state = 2181, .external_lex_state = 22}, - [1325] = {.lex_state = 4, .external_lex_state = 14}, - [1326] = {.lex_state = 4, .external_lex_state = 14}, - [1327] = {.lex_state = 4, .external_lex_state = 14}, - [1328] = {.lex_state = 4, .external_lex_state = 14}, - [1329] = {.lex_state = 4, .external_lex_state = 14}, - [1330] = {.lex_state = 4, .external_lex_state = 14}, - [1331] = {.lex_state = 4, .external_lex_state = 14}, - [1332] = {.lex_state = 4, .external_lex_state = 14}, - [1333] = {.lex_state = 4, .external_lex_state = 14}, - [1334] = {.lex_state = 4, .external_lex_state = 14}, - [1335] = {.lex_state = 4, .external_lex_state = 14}, - [1336] = {.lex_state = 4, .external_lex_state = 14}, - [1337] = {.lex_state = 4, .external_lex_state = 14}, - [1338] = {.lex_state = 4, .external_lex_state = 14}, - [1339] = {.lex_state = 2181, .external_lex_state = 17}, - [1340] = {.lex_state = 4, .external_lex_state = 14}, - [1341] = {.lex_state = 4, .external_lex_state = 14}, - [1342] = {.lex_state = 4, .external_lex_state = 14}, - [1343] = {.lex_state = 2181, .external_lex_state = 22}, - [1344] = {.lex_state = 4, .external_lex_state = 14}, - [1345] = {.lex_state = 2181, .external_lex_state = 22}, - [1346] = {.lex_state = 4, .external_lex_state = 14}, - [1347] = {.lex_state = 2181, .external_lex_state = 22}, - [1348] = {.lex_state = 2181, .external_lex_state = 22}, - [1349] = {.lex_state = 4, .external_lex_state = 14}, - [1350] = {.lex_state = 4, .external_lex_state = 14}, - [1351] = {.lex_state = 4, .external_lex_state = 14}, - [1352] = {.lex_state = 4, .external_lex_state = 14}, - [1353] = {.lex_state = 4, .external_lex_state = 14}, - [1354] = {.lex_state = 2181, .external_lex_state = 22}, - [1355] = {.lex_state = 4, .external_lex_state = 14}, - [1356] = {.lex_state = 4, .external_lex_state = 14}, - [1357] = {.lex_state = 4, .external_lex_state = 14}, - [1358] = {.lex_state = 4, .external_lex_state = 14}, - [1359] = {.lex_state = 2181, .external_lex_state = 22}, - [1360] = {.lex_state = 4, .external_lex_state = 14}, - [1361] = {.lex_state = 2181, .external_lex_state = 22}, - [1362] = {.lex_state = 4, .external_lex_state = 14}, - [1363] = {.lex_state = 4, .external_lex_state = 14}, - [1364] = {.lex_state = 4, .external_lex_state = 14}, - [1365] = {.lex_state = 4, .external_lex_state = 14}, - [1366] = {.lex_state = 4, .external_lex_state = 14}, - [1367] = {.lex_state = 4, .external_lex_state = 14}, - [1368] = {.lex_state = 2181, .external_lex_state = 22}, - [1369] = {.lex_state = 4, .external_lex_state = 14}, - [1370] = {.lex_state = 2181, .external_lex_state = 22}, - [1371] = {.lex_state = 4, .external_lex_state = 14}, - [1372] = {.lex_state = 4, .external_lex_state = 14}, - [1373] = {.lex_state = 4, .external_lex_state = 14}, - [1374] = {.lex_state = 4, .external_lex_state = 14}, - [1375] = {.lex_state = 4, .external_lex_state = 14}, - [1376] = {.lex_state = 2181, .external_lex_state = 22}, - [1377] = {.lex_state = 4, .external_lex_state = 14}, - [1378] = {.lex_state = 2181, .external_lex_state = 22}, - [1379] = {.lex_state = 4, .external_lex_state = 14}, - [1380] = {.lex_state = 4, .external_lex_state = 14}, - [1381] = {.lex_state = 4, .external_lex_state = 14}, - [1382] = {.lex_state = 2181, .external_lex_state = 22}, - [1383] = {.lex_state = 4, .external_lex_state = 14}, - [1384] = {.lex_state = 2181, .external_lex_state = 22}, - [1385] = {.lex_state = 4, .external_lex_state = 14}, - [1386] = {.lex_state = 2181, .external_lex_state = 22}, - [1387] = {.lex_state = 4, .external_lex_state = 14}, - [1388] = {.lex_state = 4, .external_lex_state = 14}, - [1389] = {.lex_state = 4, .external_lex_state = 14}, - [1390] = {.lex_state = 4, .external_lex_state = 14}, - [1391] = {.lex_state = 2181, .external_lex_state = 22}, - [1392] = {.lex_state = 2181, .external_lex_state = 14}, - [1393] = {.lex_state = 2181, .external_lex_state = 14}, - [1394] = {.lex_state = 2181, .external_lex_state = 22}, - [1395] = {.lex_state = 4, .external_lex_state = 14}, - [1396] = {.lex_state = 4, .external_lex_state = 14}, - [1397] = {.lex_state = 2181, .external_lex_state = 22}, - [1398] = {.lex_state = 2181, .external_lex_state = 22}, - [1399] = {.lex_state = 2181, .external_lex_state = 22}, - [1400] = {.lex_state = 2181, .external_lex_state = 22}, - [1401] = {.lex_state = 2181, .external_lex_state = 22}, - [1402] = {.lex_state = 2181, .external_lex_state = 22}, - [1403] = {.lex_state = 2181, .external_lex_state = 22}, - [1404] = {.lex_state = 2181, .external_lex_state = 22}, - [1405] = {.lex_state = 2181, .external_lex_state = 22}, - [1406] = {.lex_state = 2181, .external_lex_state = 14}, - [1407] = {.lex_state = 2181, .external_lex_state = 22}, - [1408] = {.lex_state = 2181, .external_lex_state = 22}, - [1409] = {.lex_state = 2181, .external_lex_state = 22}, - [1410] = {.lex_state = 2181, .external_lex_state = 22}, - [1411] = {.lex_state = 2181, .external_lex_state = 22}, - [1412] = {.lex_state = 2181, .external_lex_state = 22}, - [1413] = {.lex_state = 2181, .external_lex_state = 22}, - [1414] = {.lex_state = 2181, .external_lex_state = 22}, - [1415] = {.lex_state = 2181, .external_lex_state = 14}, - [1416] = {.lex_state = 2181, .external_lex_state = 22}, - [1417] = {.lex_state = 2181, .external_lex_state = 22}, - [1418] = {.lex_state = 2181, .external_lex_state = 22}, - [1419] = {.lex_state = 2181, .external_lex_state = 22}, - [1420] = {.lex_state = 2181, .external_lex_state = 22}, - [1421] = {.lex_state = 2181, .external_lex_state = 14}, - [1422] = {.lex_state = 2181, .external_lex_state = 22}, - [1423] = {.lex_state = 2181, .external_lex_state = 22}, - [1424] = {.lex_state = 2181, .external_lex_state = 22}, - [1425] = {.lex_state = 2181, .external_lex_state = 22}, - [1426] = {.lex_state = 2181, .external_lex_state = 22}, - [1427] = {.lex_state = 2181, .external_lex_state = 22}, - [1428] = {.lex_state = 2181, .external_lex_state = 14}, - [1429] = {.lex_state = 2181, .external_lex_state = 22}, - [1430] = {.lex_state = 2181, .external_lex_state = 22}, - [1431] = {.lex_state = 2181, .external_lex_state = 22}, - [1432] = {.lex_state = 2181, .external_lex_state = 14}, - [1433] = {.lex_state = 2181, .external_lex_state = 13}, - [1434] = {.lex_state = 2181, .external_lex_state = 14}, - [1435] = {.lex_state = 2181, .external_lex_state = 14}, - [1436] = {.lex_state = 2181, .external_lex_state = 14}, - [1437] = {.lex_state = 2181, .external_lex_state = 14}, - [1438] = {.lex_state = 2181, .external_lex_state = 13}, - [1439] = {.lex_state = 2181, .external_lex_state = 14}, - [1440] = {.lex_state = 2181, .external_lex_state = 14}, - [1441] = {.lex_state = 2181, .external_lex_state = 13}, - [1442] = {.lex_state = 2181, .external_lex_state = 13}, - [1443] = {.lex_state = 2181, .external_lex_state = 14}, - [1444] = {.lex_state = 2181, .external_lex_state = 13}, - [1445] = {.lex_state = 2181, .external_lex_state = 13}, - [1446] = {.lex_state = 2181, .external_lex_state = 13}, - [1447] = {.lex_state = 2181, .external_lex_state = 13}, - [1448] = {.lex_state = 2181, .external_lex_state = 13}, - [1449] = {.lex_state = 2181, .external_lex_state = 13}, - [1450] = {.lex_state = 2181, .external_lex_state = 13}, - [1451] = {.lex_state = 2181, .external_lex_state = 13}, - [1452] = {.lex_state = 2181, .external_lex_state = 14}, - [1453] = {.lex_state = 2181, .external_lex_state = 13}, - [1454] = {.lex_state = 2181, .external_lex_state = 13}, - [1455] = {.lex_state = 2181, .external_lex_state = 22}, - [1456] = {.lex_state = 2181, .external_lex_state = 13}, - [1457] = {.lex_state = 2181, .external_lex_state = 13}, - [1458] = {.lex_state = 2181, .external_lex_state = 13}, - [1459] = {.lex_state = 2181, .external_lex_state = 13}, - [1460] = {.lex_state = 2181, .external_lex_state = 14}, - [1461] = {.lex_state = 2181, .external_lex_state = 22}, - [1462] = {.lex_state = 2181, .external_lex_state = 13}, - [1463] = {.lex_state = 2181, .external_lex_state = 13}, - [1464] = {.lex_state = 2181, .external_lex_state = 14}, - [1465] = {.lex_state = 2181, .external_lex_state = 13}, - [1466] = {.lex_state = 2181, .external_lex_state = 14}, - [1467] = {.lex_state = 2181, .external_lex_state = 13}, - [1468] = {.lex_state = 2181, .external_lex_state = 13}, - [1469] = {.lex_state = 2181, .external_lex_state = 13}, - [1470] = {.lex_state = 2181, .external_lex_state = 14}, - [1471] = {.lex_state = 2181, .external_lex_state = 13}, - [1472] = {.lex_state = 2181, .external_lex_state = 13}, - [1473] = {.lex_state = 2181, .external_lex_state = 13}, - [1474] = {.lex_state = 2181, .external_lex_state = 13}, - [1475] = {.lex_state = 2181, .external_lex_state = 13}, - [1476] = {.lex_state = 2181, .external_lex_state = 13}, - [1477] = {.lex_state = 2181, .external_lex_state = 13}, - [1478] = {.lex_state = 2181, .external_lex_state = 13}, - [1479] = {.lex_state = 2181, .external_lex_state = 13}, - [1480] = {.lex_state = 2181, .external_lex_state = 13}, - [1481] = {.lex_state = 2181, .external_lex_state = 13}, - [1482] = {.lex_state = 2181, .external_lex_state = 13}, - [1483] = {.lex_state = 2181, .external_lex_state = 13}, - [1484] = {.lex_state = 2181, .external_lex_state = 13}, - [1485] = {.lex_state = 2181, .external_lex_state = 13}, - [1486] = {.lex_state = 2181, .external_lex_state = 13}, - [1487] = {.lex_state = 2181, .external_lex_state = 13}, - [1488] = {.lex_state = 2181, .external_lex_state = 14}, - [1489] = {.lex_state = 2181, .external_lex_state = 14}, - [1490] = {.lex_state = 2181, .external_lex_state = 13}, - [1491] = {.lex_state = 2181, .external_lex_state = 13}, - [1492] = {.lex_state = 2181, .external_lex_state = 13}, - [1493] = {.lex_state = 2181, .external_lex_state = 13}, - [1494] = {.lex_state = 2181, .external_lex_state = 13}, - [1495] = {.lex_state = 2181, .external_lex_state = 13}, - [1496] = {.lex_state = 2181, .external_lex_state = 13}, - [1497] = {.lex_state = 2181, .external_lex_state = 13}, - [1498] = {.lex_state = 2181, .external_lex_state = 13}, - [1499] = {.lex_state = 2181, .external_lex_state = 13}, - [1500] = {.lex_state = 2181, .external_lex_state = 14}, - [1501] = {.lex_state = 2181, .external_lex_state = 13}, - [1502] = {.lex_state = 2181, .external_lex_state = 13}, - [1503] = {.lex_state = 2181, .external_lex_state = 13}, - [1504] = {.lex_state = 2181, .external_lex_state = 13}, - [1505] = {.lex_state = 2181, .external_lex_state = 13}, - [1506] = {.lex_state = 2181, .external_lex_state = 13}, - [1507] = {.lex_state = 2181, .external_lex_state = 14}, - [1508] = {.lex_state = 2181, .external_lex_state = 13}, - [1509] = {.lex_state = 2181, .external_lex_state = 14}, - [1510] = {.lex_state = 2181, .external_lex_state = 13}, - [1511] = {.lex_state = 2181, .external_lex_state = 13}, - [1512] = {.lex_state = 2181, .external_lex_state = 13}, - [1513] = {.lex_state = 2181, .external_lex_state = 13}, - [1514] = {.lex_state = 2181, .external_lex_state = 13}, - [1515] = {.lex_state = 2181, .external_lex_state = 13}, - [1516] = {.lex_state = 2181, .external_lex_state = 13}, - [1517] = {.lex_state = 2181, .external_lex_state = 13}, - [1518] = {.lex_state = 2181, .external_lex_state = 13}, - [1519] = {.lex_state = 2181, .external_lex_state = 13}, - [1520] = {.lex_state = 2181, .external_lex_state = 13}, - [1521] = {.lex_state = 2181, .external_lex_state = 13}, - [1522] = {.lex_state = 2181, .external_lex_state = 13}, - [1523] = {.lex_state = 2181, .external_lex_state = 13}, - [1524] = {.lex_state = 2181, .external_lex_state = 15}, - [1525] = {.lex_state = 2181, .external_lex_state = 14}, - [1526] = {.lex_state = 2181, .external_lex_state = 14}, - [1527] = {.lex_state = 2181, .external_lex_state = 14}, - [1528] = {.lex_state = 2181, .external_lex_state = 15}, - [1529] = {.lex_state = 2181, .external_lex_state = 14}, - [1530] = {.lex_state = 2181, .external_lex_state = 14}, - [1531] = {.lex_state = 2181, .external_lex_state = 15}, - [1532] = {.lex_state = 2181, .external_lex_state = 15}, - [1533] = {.lex_state = 2181, .external_lex_state = 14}, - [1534] = {.lex_state = 2181, .external_lex_state = 14}, - [1535] = {.lex_state = 2181, .external_lex_state = 15}, - [1536] = {.lex_state = 2181, .external_lex_state = 15}, - [1537] = {.lex_state = 2181, .external_lex_state = 15}, - [1538] = {.lex_state = 2181, .external_lex_state = 15}, - [1539] = {.lex_state = 2181, .external_lex_state = 15}, - [1540] = {.lex_state = 2181, .external_lex_state = 15}, - [1541] = {.lex_state = 2181, .external_lex_state = 15}, - [1542] = {.lex_state = 2181, .external_lex_state = 15}, - [1543] = {.lex_state = 2181, .external_lex_state = 14}, - [1544] = {.lex_state = 2181, .external_lex_state = 15}, - [1545] = {.lex_state = 2181, .external_lex_state = 15}, - [1546] = {.lex_state = 2181, .external_lex_state = 13}, - [1547] = {.lex_state = 2181, .external_lex_state = 15}, - [1548] = {.lex_state = 2181, .external_lex_state = 15}, - [1549] = {.lex_state = 2181, .external_lex_state = 15}, - [1550] = {.lex_state = 2181, .external_lex_state = 15}, - [1551] = {.lex_state = 2181, .external_lex_state = 14}, - [1552] = {.lex_state = 2181, .external_lex_state = 13}, - [1553] = {.lex_state = 2181, .external_lex_state = 15}, - [1554] = {.lex_state = 2181, .external_lex_state = 15}, - [1555] = {.lex_state = 2181, .external_lex_state = 15}, - [1556] = {.lex_state = 2181, .external_lex_state = 15}, - [1557] = {.lex_state = 2181, .external_lex_state = 15}, - [1558] = {.lex_state = 2181, .external_lex_state = 15}, - [1559] = {.lex_state = 2181, .external_lex_state = 15}, - [1560] = {.lex_state = 2181, .external_lex_state = 15}, - [1561] = {.lex_state = 2181, .external_lex_state = 15}, - [1562] = {.lex_state = 2181, .external_lex_state = 15}, - [1563] = {.lex_state = 2181, .external_lex_state = 15}, - [1564] = {.lex_state = 2181, .external_lex_state = 15}, - [1565] = {.lex_state = 2181, .external_lex_state = 15}, - [1566] = {.lex_state = 2181, .external_lex_state = 15}, - [1567] = {.lex_state = 2181, .external_lex_state = 15}, - [1568] = {.lex_state = 2181, .external_lex_state = 15}, - [1569] = {.lex_state = 2181, .external_lex_state = 15}, - [1570] = {.lex_state = 2181, .external_lex_state = 15}, - [1571] = {.lex_state = 2181, .external_lex_state = 15}, - [1572] = {.lex_state = 2181, .external_lex_state = 15}, - [1573] = {.lex_state = 2181, .external_lex_state = 15}, - [1574] = {.lex_state = 2181, .external_lex_state = 15}, - [1575] = {.lex_state = 2181, .external_lex_state = 15}, - [1576] = {.lex_state = 2181, .external_lex_state = 15}, - [1577] = {.lex_state = 2181, .external_lex_state = 15}, - [1578] = {.lex_state = 2181, .external_lex_state = 15}, - [1579] = {.lex_state = 2181, .external_lex_state = 15}, - [1580] = {.lex_state = 2181, .external_lex_state = 15}, - [1581] = {.lex_state = 2181, .external_lex_state = 15}, - [1582] = {.lex_state = 2181, .external_lex_state = 15}, - [1583] = {.lex_state = 2181, .external_lex_state = 15}, - [1584] = {.lex_state = 2181, .external_lex_state = 15}, - [1585] = {.lex_state = 2181, .external_lex_state = 15}, - [1586] = {.lex_state = 2181, .external_lex_state = 14}, - [1587] = {.lex_state = 2181, .external_lex_state = 15}, - [1588] = {.lex_state = 2181, .external_lex_state = 15}, - [1589] = {.lex_state = 2181, .external_lex_state = 15}, - [1590] = {.lex_state = 2181, .external_lex_state = 15}, - [1591] = {.lex_state = 2181, .external_lex_state = 15}, - [1592] = {.lex_state = 2181, .external_lex_state = 15}, - [1593] = {.lex_state = 2181, .external_lex_state = 15}, - [1594] = {.lex_state = 2181, .external_lex_state = 15}, - [1595] = {.lex_state = 2181, .external_lex_state = 15}, - [1596] = {.lex_state = 2181, .external_lex_state = 15}, - [1597] = {.lex_state = 2181, .external_lex_state = 15}, - [1598] = {.lex_state = 2181, .external_lex_state = 15}, - [1599] = {.lex_state = 2181, .external_lex_state = 15}, - [1600] = {.lex_state = 2181, .external_lex_state = 15}, - [1601] = {.lex_state = 2181, .external_lex_state = 15}, - [1602] = {.lex_state = 2181, .external_lex_state = 15}, - [1603] = {.lex_state = 2181, .external_lex_state = 15}, - [1604] = {.lex_state = 2181, .external_lex_state = 15}, - [1605] = {.lex_state = 2181, .external_lex_state = 15}, - [1606] = {.lex_state = 2181, .external_lex_state = 14}, - [1607] = {.lex_state = 2181, .external_lex_state = 15}, - [1608] = {.lex_state = 2181, .external_lex_state = 15}, - [1609] = {.lex_state = 2181, .external_lex_state = 14}, - [1610] = {.lex_state = 2181, .external_lex_state = 14}, - [1611] = {.lex_state = 2181, .external_lex_state = 16}, - [1612] = {.lex_state = 2181, .external_lex_state = 14}, - [1613] = {.lex_state = 2181, .external_lex_state = 16}, - [1614] = {.lex_state = 2181, .external_lex_state = 16}, - [1615] = {.lex_state = 2181, .external_lex_state = 16}, - [1616] = {.lex_state = 2181, .external_lex_state = 16}, - [1617] = {.lex_state = 2181, .external_lex_state = 16}, - [1618] = {.lex_state = 2181, .external_lex_state = 16}, - [1619] = {.lex_state = 2181, .external_lex_state = 16}, - [1620] = {.lex_state = 2181, .external_lex_state = 16}, - [1621] = {.lex_state = 2181, .external_lex_state = 16}, - [1622] = {.lex_state = 2181, .external_lex_state = 16}, - [1623] = {.lex_state = 2181, .external_lex_state = 16}, - [1624] = {.lex_state = 2181, .external_lex_state = 16}, - [1625] = {.lex_state = 2181, .external_lex_state = 15}, - [1626] = {.lex_state = 2181, .external_lex_state = 16}, - [1627] = {.lex_state = 2181, .external_lex_state = 16}, - [1628] = {.lex_state = 2181, .external_lex_state = 16}, - [1629] = {.lex_state = 2181, .external_lex_state = 16}, - [1630] = {.lex_state = 2181, .external_lex_state = 15}, - [1631] = {.lex_state = 2181, .external_lex_state = 16}, - [1632] = {.lex_state = 2181, .external_lex_state = 16}, - [1633] = {.lex_state = 2181, .external_lex_state = 16}, - [1634] = {.lex_state = 2181, .external_lex_state = 16}, - [1635] = {.lex_state = 2181, .external_lex_state = 16}, - [1636] = {.lex_state = 2181, .external_lex_state = 16}, - [1637] = {.lex_state = 2181, .external_lex_state = 16}, - [1638] = {.lex_state = 2181, .external_lex_state = 16}, - [1639] = {.lex_state = 2181, .external_lex_state = 16}, - [1640] = {.lex_state = 2181, .external_lex_state = 16}, - [1641] = {.lex_state = 2181, .external_lex_state = 16}, - [1642] = {.lex_state = 2181, .external_lex_state = 16}, - [1643] = {.lex_state = 2181, .external_lex_state = 16}, - [1644] = {.lex_state = 2181, .external_lex_state = 16}, - [1645] = {.lex_state = 2181, .external_lex_state = 16}, - [1646] = {.lex_state = 2181, .external_lex_state = 16}, - [1647] = {.lex_state = 2181, .external_lex_state = 16}, - [1648] = {.lex_state = 2181, .external_lex_state = 16}, - [1649] = {.lex_state = 2181, .external_lex_state = 16}, - [1650] = {.lex_state = 2181, .external_lex_state = 16}, - [1651] = {.lex_state = 2181, .external_lex_state = 16}, - [1652] = {.lex_state = 2181, .external_lex_state = 16}, - [1653] = {.lex_state = 2181, .external_lex_state = 14}, - [1654] = {.lex_state = 2181, .external_lex_state = 16}, - [1655] = {.lex_state = 2181, .external_lex_state = 14}, - [1656] = {.lex_state = 2181, .external_lex_state = 16}, - [1657] = {.lex_state = 2181, .external_lex_state = 16}, - [1658] = {.lex_state = 2181, .external_lex_state = 16}, - [1659] = {.lex_state = 2181, .external_lex_state = 16}, - [1660] = {.lex_state = 2181, .external_lex_state = 16}, - [1661] = {.lex_state = 2181, .external_lex_state = 14}, - [1662] = {.lex_state = 2181, .external_lex_state = 16}, - [1663] = {.lex_state = 2181, .external_lex_state = 16}, - [1664] = {.lex_state = 2181, .external_lex_state = 16}, - [1665] = {.lex_state = 2181, .external_lex_state = 16}, - [1666] = {.lex_state = 2181, .external_lex_state = 16}, - [1667] = {.lex_state = 2181, .external_lex_state = 16}, - [1668] = {.lex_state = 2181, .external_lex_state = 16}, - [1669] = {.lex_state = 2181, .external_lex_state = 16}, - [1670] = {.lex_state = 2181, .external_lex_state = 16}, - [1671] = {.lex_state = 2181, .external_lex_state = 16}, - [1672] = {.lex_state = 2181, .external_lex_state = 16}, - [1673] = {.lex_state = 2181, .external_lex_state = 14}, - [1674] = {.lex_state = 2181, .external_lex_state = 16}, - [1675] = {.lex_state = 2181, .external_lex_state = 16}, - [1676] = {.lex_state = 2181, .external_lex_state = 16}, - [1677] = {.lex_state = 2181, .external_lex_state = 16}, - [1678] = {.lex_state = 2181, .external_lex_state = 16}, - [1679] = {.lex_state = 2181, .external_lex_state = 16}, - [1680] = {.lex_state = 2181, .external_lex_state = 16}, - [1681] = {.lex_state = 2181, .external_lex_state = 16}, - [1682] = {.lex_state = 2181, .external_lex_state = 16}, - [1683] = {.lex_state = 2181, .external_lex_state = 16}, - [1684] = {.lex_state = 2181, .external_lex_state = 16}, - [1685] = {.lex_state = 2181, .external_lex_state = 16}, - [1686] = {.lex_state = 2181, .external_lex_state = 16}, - [1687] = {.lex_state = 2181, .external_lex_state = 16}, - [1688] = {.lex_state = 2181, .external_lex_state = 16}, - [1689] = {.lex_state = 4, .external_lex_state = 14}, + [742] = {.lex_state = 2181, .external_lex_state = 3}, + [743] = {.lex_state = 2181, .external_lex_state = 27}, + [744] = {.lex_state = 2181, .external_lex_state = 27}, + [745] = {.lex_state = 2181, .external_lex_state = 20}, + [746] = {.lex_state = 2181, .external_lex_state = 20}, + [747] = {.lex_state = 2181, .external_lex_state = 3}, + [748] = {.lex_state = 2181, .external_lex_state = 3}, + [749] = {.lex_state = 2181, .external_lex_state = 3}, + [750] = {.lex_state = 2181, .external_lex_state = 3}, + [751] = {.lex_state = 2181, .external_lex_state = 20}, + [752] = {.lex_state = 2181, .external_lex_state = 14}, + [753] = {.lex_state = 4, .external_lex_state = 3}, + [754] = {.lex_state = 2181, .external_lex_state = 30}, + [755] = {.lex_state = 2181, .external_lex_state = 30}, + [756] = {.lex_state = 4, .external_lex_state = 3}, + [757] = {.lex_state = 4, .external_lex_state = 3}, + [758] = {.lex_state = 4, .external_lex_state = 3}, + [759] = {.lex_state = 4, .external_lex_state = 3}, + [760] = {.lex_state = 2181, .external_lex_state = 3}, + [761] = {.lex_state = 2181, .external_lex_state = 2}, + [762] = {.lex_state = 2181, .external_lex_state = 2}, + [763] = {.lex_state = 4, .external_lex_state = 2}, + [764] = {.lex_state = 4, .external_lex_state = 2}, + [765] = {.lex_state = 2181, .external_lex_state = 17}, + [766] = {.lex_state = 2181, .external_lex_state = 17}, + [767] = {.lex_state = 2181, .external_lex_state = 26}, + [768] = {.lex_state = 2181, .external_lex_state = 26}, + [769] = {.lex_state = 2181, .external_lex_state = 17}, + [770] = {.lex_state = 2181, .external_lex_state = 17}, + [771] = {.lex_state = 2181, .external_lex_state = 17}, + [772] = {.lex_state = 2181, .external_lex_state = 3}, + [773] = {.lex_state = 2181, .external_lex_state = 17}, + [774] = {.lex_state = 2181, .external_lex_state = 2}, + [775] = {.lex_state = 2181, .external_lex_state = 3}, + [776] = {.lex_state = 2181, .external_lex_state = 21}, + [777] = {.lex_state = 2181, .external_lex_state = 21}, + [778] = {.lex_state = 2181, .external_lex_state = 18}, + [779] = {.lex_state = 2181, .external_lex_state = 18}, + [780] = {.lex_state = 2181, .external_lex_state = 21}, + [781] = {.lex_state = 2181, .external_lex_state = 21}, + [782] = {.lex_state = 2181, .external_lex_state = 21}, + [783] = {.lex_state = 2181, .external_lex_state = 3}, + [784] = {.lex_state = 2181, .external_lex_state = 21}, + [785] = {.lex_state = 2181, .external_lex_state = 25}, + [786] = {.lex_state = 2181, .external_lex_state = 25}, + [787] = {.lex_state = 2181, .external_lex_state = 22}, + [788] = {.lex_state = 2181, .external_lex_state = 22}, + [789] = {.lex_state = 2181, .external_lex_state = 25}, + [790] = {.lex_state = 2181, .external_lex_state = 25}, + [791] = {.lex_state = 2181, .external_lex_state = 25}, + [792] = {.lex_state = 2181, .external_lex_state = 25}, + [793] = {.lex_state = 2181, .external_lex_state = 14}, + [794] = {.lex_state = 2181, .external_lex_state = 14}, + [795] = {.lex_state = 2181, .external_lex_state = 29}, + [796] = {.lex_state = 2181, .external_lex_state = 14}, + [797] = {.lex_state = 2181, .external_lex_state = 14}, + [798] = {.lex_state = 2181, .external_lex_state = 14}, + [799] = {.lex_state = 4, .external_lex_state = 3}, + [800] = {.lex_state = 4, .external_lex_state = 5}, + [801] = {.lex_state = 2181, .external_lex_state = 10}, + [802] = {.lex_state = 2181, .external_lex_state = 10}, + [803] = {.lex_state = 2181, .external_lex_state = 5}, + [804] = {.lex_state = 2181, .external_lex_state = 10}, + [805] = {.lex_state = 2181, .external_lex_state = 10}, + [806] = {.lex_state = 2181, .external_lex_state = 10}, + [807] = {.lex_state = 2181, .external_lex_state = 10}, + [808] = {.lex_state = 2181, .external_lex_state = 10}, + [809] = {.lex_state = 2181, .external_lex_state = 10}, + [810] = {.lex_state = 2181, .external_lex_state = 10}, + [811] = {.lex_state = 2181, .external_lex_state = 10}, + [812] = {.lex_state = 2181, .external_lex_state = 5}, + [813] = {.lex_state = 2181, .external_lex_state = 10}, + [814] = {.lex_state = 2181, .external_lex_state = 10}, + [815] = {.lex_state = 2181, .external_lex_state = 10}, + [816] = {.lex_state = 2181, .external_lex_state = 10}, + [817] = {.lex_state = 2181, .external_lex_state = 10}, + [818] = {.lex_state = 2181, .external_lex_state = 5}, + [819] = {.lex_state = 2181, .external_lex_state = 10}, + [820] = {.lex_state = 2181, .external_lex_state = 5}, + [821] = {.lex_state = 2181, .external_lex_state = 10}, + [822] = {.lex_state = 2181, .external_lex_state = 10}, + [823] = {.lex_state = 2181, .external_lex_state = 10}, + [824] = {.lex_state = 2181, .external_lex_state = 5}, + [825] = {.lex_state = 2181, .external_lex_state = 10}, + [826] = {.lex_state = 2181, .external_lex_state = 5}, + [827] = {.lex_state = 2181, .external_lex_state = 10}, + [828] = {.lex_state = 2181, .external_lex_state = 5}, + [829] = {.lex_state = 2181, .external_lex_state = 10}, + [830] = {.lex_state = 2181, .external_lex_state = 5}, + [831] = {.lex_state = 2181, .external_lex_state = 10}, + [832] = {.lex_state = 2181, .external_lex_state = 10}, + [833] = {.lex_state = 2181, .external_lex_state = 10}, + [834] = {.lex_state = 2181, .external_lex_state = 9}, + [835] = {.lex_state = 2181, .external_lex_state = 9}, + [836] = {.lex_state = 2181, .external_lex_state = 5}, + [837] = {.lex_state = 2181, .external_lex_state = 5}, + [838] = {.lex_state = 2181, .external_lex_state = 9}, + [839] = {.lex_state = 2181, .external_lex_state = 11}, + [840] = {.lex_state = 2181, .external_lex_state = 5}, + [841] = {.lex_state = 2181, .external_lex_state = 5}, + [842] = {.lex_state = 2181, .external_lex_state = 11}, + [843] = {.lex_state = 2181, .external_lex_state = 11}, + [844] = {.lex_state = 2181, .external_lex_state = 5}, + [845] = {.lex_state = 2181, .external_lex_state = 5}, + [846] = {.lex_state = 2181, .external_lex_state = 11}, + [847] = {.lex_state = 2181, .external_lex_state = 11}, + [848] = {.lex_state = 2181, .external_lex_state = 11}, + [849] = {.lex_state = 2181, .external_lex_state = 11}, + [850] = {.lex_state = 2181, .external_lex_state = 11}, + [851] = {.lex_state = 2181, .external_lex_state = 11}, + [852] = {.lex_state = 2181, .external_lex_state = 11}, + [853] = {.lex_state = 2181, .external_lex_state = 11}, + [854] = {.lex_state = 2181, .external_lex_state = 5}, + [855] = {.lex_state = 2181, .external_lex_state = 11}, + [856] = {.lex_state = 2181, .external_lex_state = 11}, + [857] = {.lex_state = 2181, .external_lex_state = 9}, + [858] = {.lex_state = 2181, .external_lex_state = 11}, + [859] = {.lex_state = 2181, .external_lex_state = 11}, + [860] = {.lex_state = 2181, .external_lex_state = 11}, + [861] = {.lex_state = 2181, .external_lex_state = 11}, + [862] = {.lex_state = 2181, .external_lex_state = 10}, + [863] = {.lex_state = 2181, .external_lex_state = 11}, + [864] = {.lex_state = 2181, .external_lex_state = 11}, + [865] = {.lex_state = 2181, .external_lex_state = 5}, + [866] = {.lex_state = 2181, .external_lex_state = 11}, + [867] = {.lex_state = 2181, .external_lex_state = 5}, + [868] = {.lex_state = 2181, .external_lex_state = 11}, + [869] = {.lex_state = 2181, .external_lex_state = 11}, + [870] = {.lex_state = 2181, .external_lex_state = 11}, + [871] = {.lex_state = 2181, .external_lex_state = 11}, + [872] = {.lex_state = 2181, .external_lex_state = 11}, + [873] = {.lex_state = 2181, .external_lex_state = 11}, + [874] = {.lex_state = 2181, .external_lex_state = 11}, + [875] = {.lex_state = 2181, .external_lex_state = 11}, + [876] = {.lex_state = 2181, .external_lex_state = 11}, + [877] = {.lex_state = 2181, .external_lex_state = 11}, + [878] = {.lex_state = 2181, .external_lex_state = 11}, + [879] = {.lex_state = 2181, .external_lex_state = 11}, + [880] = {.lex_state = 2181, .external_lex_state = 11}, + [881] = {.lex_state = 2181, .external_lex_state = 11}, + [882] = {.lex_state = 2181, .external_lex_state = 11}, + [883] = {.lex_state = 2181, .external_lex_state = 11}, + [884] = {.lex_state = 2181, .external_lex_state = 11}, + [885] = {.lex_state = 2181, .external_lex_state = 11}, + [886] = {.lex_state = 2181, .external_lex_state = 9}, + [887] = {.lex_state = 2181, .external_lex_state = 11}, + [888] = {.lex_state = 2181, .external_lex_state = 9}, + [889] = {.lex_state = 2181, .external_lex_state = 11}, + [890] = {.lex_state = 2181, .external_lex_state = 5}, + [891] = {.lex_state = 2181, .external_lex_state = 6}, + [892] = {.lex_state = 2181, .external_lex_state = 11}, + [893] = {.lex_state = 2181, .external_lex_state = 11}, + [894] = {.lex_state = 2181, .external_lex_state = 11}, + [895] = {.lex_state = 2181, .external_lex_state = 11}, + [896] = {.lex_state = 2181, .external_lex_state = 11}, + [897] = {.lex_state = 2181, .external_lex_state = 9}, + [898] = {.lex_state = 2181, .external_lex_state = 11}, + [899] = {.lex_state = 2181, .external_lex_state = 11}, + [900] = {.lex_state = 2181, .external_lex_state = 11}, + [901] = {.lex_state = 2181, .external_lex_state = 11}, + [902] = {.lex_state = 2181, .external_lex_state = 11}, + [903] = {.lex_state = 2181, .external_lex_state = 9}, + [904] = {.lex_state = 2181, .external_lex_state = 11}, + [905] = {.lex_state = 2181, .external_lex_state = 11}, + [906] = {.lex_state = 2181, .external_lex_state = 11}, + [907] = {.lex_state = 2181, .external_lex_state = 11}, + [908] = {.lex_state = 2181, .external_lex_state = 11}, + [909] = {.lex_state = 2181, .external_lex_state = 11}, + [910] = {.lex_state = 2181, .external_lex_state = 11}, + [911] = {.lex_state = 2181, .external_lex_state = 5}, + [912] = {.lex_state = 2181, .external_lex_state = 11}, + [913] = {.lex_state = 2181, .external_lex_state = 11}, + [914] = {.lex_state = 2181, .external_lex_state = 11}, + [915] = {.lex_state = 2181, .external_lex_state = 11}, + [916] = {.lex_state = 2181, .external_lex_state = 11}, + [917] = {.lex_state = 2181, .external_lex_state = 6}, + [918] = {.lex_state = 2181, .external_lex_state = 11}, + [919] = {.lex_state = 2181, .external_lex_state = 5}, + [920] = {.lex_state = 2181, .external_lex_state = 11}, + [921] = {.lex_state = 2181, .external_lex_state = 11}, + [922] = {.lex_state = 2181, .external_lex_state = 11}, + [923] = {.lex_state = 2181, .external_lex_state = 11}, + [924] = {.lex_state = 2181, .external_lex_state = 6}, + [925] = {.lex_state = 2181, .external_lex_state = 11}, + [926] = {.lex_state = 2181, .external_lex_state = 6}, + [927] = {.lex_state = 2181, .external_lex_state = 11}, + [928] = {.lex_state = 2181, .external_lex_state = 5}, + [929] = {.lex_state = 2181, .external_lex_state = 11}, + [930] = {.lex_state = 2181, .external_lex_state = 11}, + [931] = {.lex_state = 2181, .external_lex_state = 11}, + [932] = {.lex_state = 2181, .external_lex_state = 9}, + [933] = {.lex_state = 2181, .external_lex_state = 5}, + [934] = {.lex_state = 2181, .external_lex_state = 9}, + [935] = {.lex_state = 2181, .external_lex_state = 5}, + [936] = {.lex_state = 2181, .external_lex_state = 12}, + [937] = {.lex_state = 2181, .external_lex_state = 6}, + [938] = {.lex_state = 2181, .external_lex_state = 6}, + [939] = {.lex_state = 2181, .external_lex_state = 12}, + [940] = {.lex_state = 2181, .external_lex_state = 12}, + [941] = {.lex_state = 2181, .external_lex_state = 6}, + [942] = {.lex_state = 2181, .external_lex_state = 6}, + [943] = {.lex_state = 2181, .external_lex_state = 12}, + [944] = {.lex_state = 2181, .external_lex_state = 12}, + [945] = {.lex_state = 2181, .external_lex_state = 12}, + [946] = {.lex_state = 2181, .external_lex_state = 12}, + [947] = {.lex_state = 2181, .external_lex_state = 12}, + [948] = {.lex_state = 2181, .external_lex_state = 12}, + [949] = {.lex_state = 2181, .external_lex_state = 12}, + [950] = {.lex_state = 2181, .external_lex_state = 12}, + [951] = {.lex_state = 2181, .external_lex_state = 6}, + [952] = {.lex_state = 2181, .external_lex_state = 12}, + [953] = {.lex_state = 2181, .external_lex_state = 12}, + [954] = {.lex_state = 2181, .external_lex_state = 10}, + [955] = {.lex_state = 2181, .external_lex_state = 12}, + [956] = {.lex_state = 2181, .external_lex_state = 12}, + [957] = {.lex_state = 2181, .external_lex_state = 12}, + [958] = {.lex_state = 2181, .external_lex_state = 12}, + [959] = {.lex_state = 2181, .external_lex_state = 9}, + [960] = {.lex_state = 2181, .external_lex_state = 11}, + [961] = {.lex_state = 2181, .external_lex_state = 12}, + [962] = {.lex_state = 2181, .external_lex_state = 12}, + [963] = {.lex_state = 2181, .external_lex_state = 6}, + [964] = {.lex_state = 2181, .external_lex_state = 12}, + [965] = {.lex_state = 2181, .external_lex_state = 6}, + [966] = {.lex_state = 2181, .external_lex_state = 12}, + [967] = {.lex_state = 2181, .external_lex_state = 12}, + [968] = {.lex_state = 2181, .external_lex_state = 12}, + [969] = {.lex_state = 2181, .external_lex_state = 12}, + [970] = {.lex_state = 2181, .external_lex_state = 12}, + [971] = {.lex_state = 2181, .external_lex_state = 12}, + [972] = {.lex_state = 2181, .external_lex_state = 12}, + [973] = {.lex_state = 2181, .external_lex_state = 12}, + [974] = {.lex_state = 2181, .external_lex_state = 12}, + [975] = {.lex_state = 2181, .external_lex_state = 12}, + [976] = {.lex_state = 2181, .external_lex_state = 12}, + [977] = {.lex_state = 2181, .external_lex_state = 12}, + [978] = {.lex_state = 2181, .external_lex_state = 12}, + [979] = {.lex_state = 2181, .external_lex_state = 12}, + [980] = {.lex_state = 2181, .external_lex_state = 12}, + [981] = {.lex_state = 2181, .external_lex_state = 12}, + [982] = {.lex_state = 2181, .external_lex_state = 12}, + [983] = {.lex_state = 2181, .external_lex_state = 12}, + [984] = {.lex_state = 2181, .external_lex_state = 9}, + [985] = {.lex_state = 2181, .external_lex_state = 12}, + [986] = {.lex_state = 2181, .external_lex_state = 9}, + [987] = {.lex_state = 2181, .external_lex_state = 12}, + [988] = {.lex_state = 2181, .external_lex_state = 6}, + [989] = {.lex_state = 2181, .external_lex_state = 12}, + [990] = {.lex_state = 2181, .external_lex_state = 12}, + [991] = {.lex_state = 2181, .external_lex_state = 12}, + [992] = {.lex_state = 2181, .external_lex_state = 12}, + [993] = {.lex_state = 2181, .external_lex_state = 12}, + [994] = {.lex_state = 2181, .external_lex_state = 9}, + [995] = {.lex_state = 2181, .external_lex_state = 12}, + [996] = {.lex_state = 2181, .external_lex_state = 12}, + [997] = {.lex_state = 2181, .external_lex_state = 12}, + [998] = {.lex_state = 2181, .external_lex_state = 12}, + [999] = {.lex_state = 2181, .external_lex_state = 6}, + [1000] = {.lex_state = 2181, .external_lex_state = 12}, + [1001] = {.lex_state = 2181, .external_lex_state = 6}, + [1002] = {.lex_state = 2181, .external_lex_state = 12}, + [1003] = {.lex_state = 2181, .external_lex_state = 12}, + [1004] = {.lex_state = 2181, .external_lex_state = 12}, + [1005] = {.lex_state = 2181, .external_lex_state = 12}, + [1006] = {.lex_state = 2181, .external_lex_state = 12}, + [1007] = {.lex_state = 2181, .external_lex_state = 12}, + [1008] = {.lex_state = 2181, .external_lex_state = 6}, + [1009] = {.lex_state = 2181, .external_lex_state = 12}, + [1010] = {.lex_state = 2181, .external_lex_state = 6}, + [1011] = {.lex_state = 2181, .external_lex_state = 12}, + [1012] = {.lex_state = 2181, .external_lex_state = 12}, + [1013] = {.lex_state = 2181, .external_lex_state = 12}, + [1014] = {.lex_state = 2181, .external_lex_state = 12}, + [1015] = {.lex_state = 2181, .external_lex_state = 12}, + [1016] = {.lex_state = 2181, .external_lex_state = 6}, + [1017] = {.lex_state = 2181, .external_lex_state = 12}, + [1018] = {.lex_state = 2181, .external_lex_state = 6}, + [1019] = {.lex_state = 2181, .external_lex_state = 12}, + [1020] = {.lex_state = 2181, .external_lex_state = 12}, + [1021] = {.lex_state = 2181, .external_lex_state = 12}, + [1022] = {.lex_state = 2181, .external_lex_state = 9}, + [1023] = {.lex_state = 2181, .external_lex_state = 12}, + [1024] = {.lex_state = 2181, .external_lex_state = 6}, + [1025] = {.lex_state = 2181, .external_lex_state = 12}, + [1026] = {.lex_state = 2181, .external_lex_state = 6}, + [1027] = {.lex_state = 2181, .external_lex_state = 12}, + [1028] = {.lex_state = 2181, .external_lex_state = 5}, + [1029] = {.lex_state = 2181, .external_lex_state = 12}, + [1030] = {.lex_state = 2181, .external_lex_state = 12}, + [1031] = {.lex_state = 2181, .external_lex_state = 12}, + [1032] = {.lex_state = 2181, .external_lex_state = 5}, + [1033] = {.lex_state = 2181, .external_lex_state = 9}, + [1034] = {.lex_state = 2181, .external_lex_state = 6}, + [1035] = {.lex_state = 2181, .external_lex_state = 13}, + [1036] = {.lex_state = 2181, .external_lex_state = 5}, + [1037] = {.lex_state = 2181, .external_lex_state = 6}, + [1038] = {.lex_state = 2181, .external_lex_state = 13}, + [1039] = {.lex_state = 2181, .external_lex_state = 13}, + [1040] = {.lex_state = 2181, .external_lex_state = 5}, + [1041] = {.lex_state = 2181, .external_lex_state = 6}, + [1042] = {.lex_state = 2181, .external_lex_state = 13}, + [1043] = {.lex_state = 2181, .external_lex_state = 13}, + [1044] = {.lex_state = 2181, .external_lex_state = 13}, + [1045] = {.lex_state = 2181, .external_lex_state = 13}, + [1046] = {.lex_state = 2181, .external_lex_state = 13}, + [1047] = {.lex_state = 2181, .external_lex_state = 13}, + [1048] = {.lex_state = 2181, .external_lex_state = 13}, + [1049] = {.lex_state = 2181, .external_lex_state = 13}, + [1050] = {.lex_state = 2181, .external_lex_state = 13}, + [1051] = {.lex_state = 2181, .external_lex_state = 13}, + [1052] = {.lex_state = 2181, .external_lex_state = 11}, + [1053] = {.lex_state = 2181, .external_lex_state = 13}, + [1054] = {.lex_state = 2181, .external_lex_state = 13}, + [1055] = {.lex_state = 2181, .external_lex_state = 13}, + [1056] = {.lex_state = 2181, .external_lex_state = 13}, + [1057] = {.lex_state = 2181, .external_lex_state = 10}, + [1058] = {.lex_state = 2181, .external_lex_state = 13}, + [1059] = {.lex_state = 2181, .external_lex_state = 13}, + [1060] = {.lex_state = 2181, .external_lex_state = 6}, + [1061] = {.lex_state = 2181, .external_lex_state = 13}, + [1062] = {.lex_state = 2181, .external_lex_state = 13}, + [1063] = {.lex_state = 2181, .external_lex_state = 13}, + [1064] = {.lex_state = 2181, .external_lex_state = 13}, + [1065] = {.lex_state = 2181, .external_lex_state = 13}, + [1066] = {.lex_state = 2181, .external_lex_state = 13}, + [1067] = {.lex_state = 2181, .external_lex_state = 13}, + [1068] = {.lex_state = 2181, .external_lex_state = 13}, + [1069] = {.lex_state = 2181, .external_lex_state = 13}, + [1070] = {.lex_state = 2181, .external_lex_state = 13}, + [1071] = {.lex_state = 2181, .external_lex_state = 13}, + [1072] = {.lex_state = 2181, .external_lex_state = 13}, + [1073] = {.lex_state = 2181, .external_lex_state = 13}, + [1074] = {.lex_state = 2181, .external_lex_state = 13}, + [1075] = {.lex_state = 2181, .external_lex_state = 13}, + [1076] = {.lex_state = 2181, .external_lex_state = 13}, + [1077] = {.lex_state = 2181, .external_lex_state = 13}, + [1078] = {.lex_state = 2181, .external_lex_state = 13}, + [1079] = {.lex_state = 2181, .external_lex_state = 13}, + [1080] = {.lex_state = 2181, .external_lex_state = 13}, + [1081] = {.lex_state = 2181, .external_lex_state = 13}, + [1082] = {.lex_state = 2181, .external_lex_state = 6}, + [1083] = {.lex_state = 2181, .external_lex_state = 6}, + [1084] = {.lex_state = 2181, .external_lex_state = 13}, + [1085] = {.lex_state = 2181, .external_lex_state = 13}, + [1086] = {.lex_state = 2181, .external_lex_state = 13}, + [1087] = {.lex_state = 2181, .external_lex_state = 13}, + [1088] = {.lex_state = 2181, .external_lex_state = 13}, + [1089] = {.lex_state = 2181, .external_lex_state = 10}, + [1090] = {.lex_state = 2181, .external_lex_state = 13}, + [1091] = {.lex_state = 2181, .external_lex_state = 13}, + [1092] = {.lex_state = 2181, .external_lex_state = 13}, + [1093] = {.lex_state = 2181, .external_lex_state = 13}, + [1094] = {.lex_state = 2181, .external_lex_state = 6}, + [1095] = {.lex_state = 2181, .external_lex_state = 13}, + [1096] = {.lex_state = 2181, .external_lex_state = 6}, + [1097] = {.lex_state = 2181, .external_lex_state = 13}, + [1098] = {.lex_state = 2181, .external_lex_state = 13}, + [1099] = {.lex_state = 2181, .external_lex_state = 13}, + [1100] = {.lex_state = 2181, .external_lex_state = 13}, + [1101] = {.lex_state = 2181, .external_lex_state = 13}, + [1102] = {.lex_state = 2181, .external_lex_state = 13}, + [1103] = {.lex_state = 2181, .external_lex_state = 6}, + [1104] = {.lex_state = 2181, .external_lex_state = 13}, + [1105] = {.lex_state = 2181, .external_lex_state = 6}, + [1106] = {.lex_state = 2181, .external_lex_state = 13}, + [1107] = {.lex_state = 2181, .external_lex_state = 13}, + [1108] = {.lex_state = 2181, .external_lex_state = 13}, + [1109] = {.lex_state = 2181, .external_lex_state = 13}, + [1110] = {.lex_state = 2181, .external_lex_state = 13}, + [1111] = {.lex_state = 2181, .external_lex_state = 6}, + [1112] = {.lex_state = 2181, .external_lex_state = 13}, + [1113] = {.lex_state = 2181, .external_lex_state = 6}, + [1114] = {.lex_state = 2181, .external_lex_state = 13}, + [1115] = {.lex_state = 2181, .external_lex_state = 13}, + [1116] = {.lex_state = 2181, .external_lex_state = 13}, + [1117] = {.lex_state = 2181, .external_lex_state = 6}, + [1118] = {.lex_state = 2181, .external_lex_state = 13}, + [1119] = {.lex_state = 2181, .external_lex_state = 6}, + [1120] = {.lex_state = 2181, .external_lex_state = 13}, + [1121] = {.lex_state = 2181, .external_lex_state = 6}, + [1122] = {.lex_state = 2181, .external_lex_state = 13}, + [1123] = {.lex_state = 2181, .external_lex_state = 6}, + [1124] = {.lex_state = 2181, .external_lex_state = 13}, + [1125] = {.lex_state = 2181, .external_lex_state = 13}, + [1126] = {.lex_state = 2181, .external_lex_state = 13}, + [1127] = {.lex_state = 2181, .external_lex_state = 10}, + [1128] = {.lex_state = 2181, .external_lex_state = 5}, + [1129] = {.lex_state = 2181, .external_lex_state = 6}, + [1130] = {.lex_state = 2181, .external_lex_state = 5}, + [1131] = {.lex_state = 2181, .external_lex_state = 6}, + [1132] = {.lex_state = 2181, .external_lex_state = 10}, + [1133] = {.lex_state = 2181, .external_lex_state = 5}, + [1134] = {.lex_state = 2181, .external_lex_state = 6}, + [1135] = {.lex_state = 2181, .external_lex_state = 10}, + [1136] = {.lex_state = 2181, .external_lex_state = 5}, + [1137] = {.lex_state = 2181, .external_lex_state = 5}, + [1138] = {.lex_state = 2181, .external_lex_state = 6}, + [1139] = {.lex_state = 2181, .external_lex_state = 10}, + [1140] = {.lex_state = 2181, .external_lex_state = 5}, + [1141] = {.lex_state = 2181, .external_lex_state = 5}, + [1142] = {.lex_state = 2181, .external_lex_state = 5}, + [1143] = {.lex_state = 2181, .external_lex_state = 5}, + [1144] = {.lex_state = 2181, .external_lex_state = 5}, + [1145] = {.lex_state = 2181, .external_lex_state = 5}, + [1146] = {.lex_state = 2181, .external_lex_state = 5}, + [1147] = {.lex_state = 2181, .external_lex_state = 5}, + [1148] = {.lex_state = 2181, .external_lex_state = 6}, + [1149] = {.lex_state = 2181, .external_lex_state = 5}, + [1150] = {.lex_state = 2181, .external_lex_state = 5}, + [1151] = {.lex_state = 2181, .external_lex_state = 12}, + [1152] = {.lex_state = 2181, .external_lex_state = 5}, + [1153] = {.lex_state = 2181, .external_lex_state = 5}, + [1154] = {.lex_state = 2181, .external_lex_state = 5}, + [1155] = {.lex_state = 2181, .external_lex_state = 5}, + [1156] = {.lex_state = 2181, .external_lex_state = 10}, + [1157] = {.lex_state = 2181, .external_lex_state = 12}, + [1158] = {.lex_state = 2181, .external_lex_state = 5}, + [1159] = {.lex_state = 2181, .external_lex_state = 5}, + [1160] = {.lex_state = 2181, .external_lex_state = 5}, + [1161] = {.lex_state = 2181, .external_lex_state = 5}, + [1162] = {.lex_state = 2181, .external_lex_state = 5}, + [1163] = {.lex_state = 2181, .external_lex_state = 5}, + [1164] = {.lex_state = 2181, .external_lex_state = 5}, + [1165] = {.lex_state = 2181, .external_lex_state = 5}, + [1166] = {.lex_state = 2181, .external_lex_state = 5}, + [1167] = {.lex_state = 2181, .external_lex_state = 5}, + [1168] = {.lex_state = 2181, .external_lex_state = 5}, + [1169] = {.lex_state = 2181, .external_lex_state = 5}, + [1170] = {.lex_state = 2181, .external_lex_state = 5}, + [1171] = {.lex_state = 2181, .external_lex_state = 5}, + [1172] = {.lex_state = 2181, .external_lex_state = 5}, + [1173] = {.lex_state = 2181, .external_lex_state = 5}, + [1174] = {.lex_state = 2181, .external_lex_state = 5}, + [1175] = {.lex_state = 2181, .external_lex_state = 5}, + [1176] = {.lex_state = 2181, .external_lex_state = 5}, + [1177] = {.lex_state = 2181, .external_lex_state = 5}, + [1178] = {.lex_state = 2181, .external_lex_state = 5}, + [1179] = {.lex_state = 2181, .external_lex_state = 5}, + [1180] = {.lex_state = 2181, .external_lex_state = 5}, + [1181] = {.lex_state = 2181, .external_lex_state = 10}, + [1182] = {.lex_state = 2181, .external_lex_state = 5}, + [1183] = {.lex_state = 2181, .external_lex_state = 10}, + [1184] = {.lex_state = 2181, .external_lex_state = 5}, + [1185] = {.lex_state = 2181, .external_lex_state = 6}, + [1186] = {.lex_state = 2181, .external_lex_state = 6}, + [1187] = {.lex_state = 2181, .external_lex_state = 5}, + [1188] = {.lex_state = 2181, .external_lex_state = 5}, + [1189] = {.lex_state = 2181, .external_lex_state = 5}, + [1190] = {.lex_state = 2181, .external_lex_state = 5}, + [1191] = {.lex_state = 2181, .external_lex_state = 5}, + [1192] = {.lex_state = 2181, .external_lex_state = 10}, + [1193] = {.lex_state = 2181, .external_lex_state = 5}, + [1194] = {.lex_state = 2181, .external_lex_state = 5}, + [1195] = {.lex_state = 2181, .external_lex_state = 5}, + [1196] = {.lex_state = 2181, .external_lex_state = 5}, + [1197] = {.lex_state = 2181, .external_lex_state = 6}, + [1198] = {.lex_state = 2181, .external_lex_state = 5}, + [1199] = {.lex_state = 2181, .external_lex_state = 6}, + [1200] = {.lex_state = 2181, .external_lex_state = 5}, + [1201] = {.lex_state = 2181, .external_lex_state = 5}, + [1202] = {.lex_state = 2181, .external_lex_state = 5}, + [1203] = {.lex_state = 2181, .external_lex_state = 5}, + [1204] = {.lex_state = 2181, .external_lex_state = 5}, + [1205] = {.lex_state = 2181, .external_lex_state = 5}, + [1206] = {.lex_state = 2181, .external_lex_state = 6}, + [1207] = {.lex_state = 2181, .external_lex_state = 5}, + [1208] = {.lex_state = 2181, .external_lex_state = 10}, + [1209] = {.lex_state = 2181, .external_lex_state = 5}, + [1210] = {.lex_state = 2181, .external_lex_state = 5}, + [1211] = {.lex_state = 2181, .external_lex_state = 5}, + [1212] = {.lex_state = 2181, .external_lex_state = 5}, + [1213] = {.lex_state = 2181, .external_lex_state = 5}, + [1214] = {.lex_state = 2181, .external_lex_state = 6}, + [1215] = {.lex_state = 2181, .external_lex_state = 5}, + [1216] = {.lex_state = 2181, .external_lex_state = 6}, + [1217] = {.lex_state = 2181, .external_lex_state = 5}, + [1218] = {.lex_state = 2181, .external_lex_state = 5}, + [1219] = {.lex_state = 2181, .external_lex_state = 5}, + [1220] = {.lex_state = 2181, .external_lex_state = 6}, + [1221] = {.lex_state = 2181, .external_lex_state = 5}, + [1222] = {.lex_state = 2181, .external_lex_state = 6}, + [1223] = {.lex_state = 2181, .external_lex_state = 5}, + [1224] = {.lex_state = 2181, .external_lex_state = 5}, + [1225] = {.lex_state = 2181, .external_lex_state = 5}, + [1226] = {.lex_state = 2181, .external_lex_state = 6}, + [1227] = {.lex_state = 2181, .external_lex_state = 5}, + [1228] = {.lex_state = 2181, .external_lex_state = 5}, + [1229] = {.lex_state = 2181, .external_lex_state = 5}, + [1230] = {.lex_state = 2181, .external_lex_state = 5}, + [1231] = {.lex_state = 2181, .external_lex_state = 10}, + [1232] = {.lex_state = 2181, .external_lex_state = 5}, + [1233] = {.lex_state = 2181, .external_lex_state = 10}, + [1234] = {.lex_state = 2181, .external_lex_state = 6}, + [1235] = {.lex_state = 2181, .external_lex_state = 4}, + [1236] = {.lex_state = 4, .external_lex_state = 5}, + [1237] = {.lex_state = 2181, .external_lex_state = 6}, + [1238] = {.lex_state = 2181, .external_lex_state = 6}, + [1239] = {.lex_state = 4, .external_lex_state = 5}, + [1240] = {.lex_state = 4, .external_lex_state = 5}, + [1241] = {.lex_state = 2181, .external_lex_state = 6}, + [1242] = {.lex_state = 2181, .external_lex_state = 6}, + [1243] = {.lex_state = 4, .external_lex_state = 5}, + [1244] = {.lex_state = 4, .external_lex_state = 5}, + [1245] = {.lex_state = 4, .external_lex_state = 5}, + [1246] = {.lex_state = 4, .external_lex_state = 5}, + [1247] = {.lex_state = 4, .external_lex_state = 5}, + [1248] = {.lex_state = 4, .external_lex_state = 5}, + [1249] = {.lex_state = 4, .external_lex_state = 5}, + [1250] = {.lex_state = 4, .external_lex_state = 5}, + [1251] = {.lex_state = 2181, .external_lex_state = 6}, + [1252] = {.lex_state = 4, .external_lex_state = 5}, + [1253] = {.lex_state = 4, .external_lex_state = 5}, + [1254] = {.lex_state = 2181, .external_lex_state = 13}, + [1255] = {.lex_state = 4, .external_lex_state = 5}, + [1256] = {.lex_state = 4, .external_lex_state = 5}, + [1257] = {.lex_state = 4, .external_lex_state = 5}, + [1258] = {.lex_state = 2181, .external_lex_state = 10}, + [1259] = {.lex_state = 2181, .external_lex_state = 13}, + [1260] = {.lex_state = 4, .external_lex_state = 5}, + [1261] = {.lex_state = 4, .external_lex_state = 5}, + [1262] = {.lex_state = 2181, .external_lex_state = 5}, + [1263] = {.lex_state = 4, .external_lex_state = 5}, + [1264] = {.lex_state = 2181, .external_lex_state = 6}, + [1265] = {.lex_state = 4, .external_lex_state = 5}, + [1266] = {.lex_state = 4, .external_lex_state = 5}, + [1267] = {.lex_state = 4, .external_lex_state = 5}, + [1268] = {.lex_state = 4, .external_lex_state = 5}, + [1269] = {.lex_state = 4, .external_lex_state = 5}, + [1270] = {.lex_state = 4, .external_lex_state = 5}, + [1271] = {.lex_state = 4, .external_lex_state = 5}, + [1272] = {.lex_state = 4, .external_lex_state = 5}, + [1273] = {.lex_state = 4, .external_lex_state = 5}, + [1274] = {.lex_state = 4, .external_lex_state = 5}, + [1275] = {.lex_state = 4, .external_lex_state = 5}, + [1276] = {.lex_state = 4, .external_lex_state = 5}, + [1277] = {.lex_state = 4, .external_lex_state = 5}, + [1278] = {.lex_state = 4, .external_lex_state = 5}, + [1279] = {.lex_state = 4, .external_lex_state = 5}, + [1280] = {.lex_state = 4, .external_lex_state = 5}, + [1281] = {.lex_state = 4, .external_lex_state = 5}, + [1282] = {.lex_state = 4, .external_lex_state = 5}, + [1283] = {.lex_state = 2181, .external_lex_state = 10}, + [1284] = {.lex_state = 4, .external_lex_state = 5}, + [1285] = {.lex_state = 2181, .external_lex_state = 10}, + [1286] = {.lex_state = 4, .external_lex_state = 5}, + [1287] = {.lex_state = 2181, .external_lex_state = 5}, + [1288] = {.lex_state = 2181, .external_lex_state = 6}, + [1289] = {.lex_state = 4, .external_lex_state = 5}, + [1290] = {.lex_state = 4, .external_lex_state = 5}, + [1291] = {.lex_state = 4, .external_lex_state = 5}, + [1292] = {.lex_state = 4, .external_lex_state = 5}, + [1293] = {.lex_state = 4, .external_lex_state = 5}, + [1294] = {.lex_state = 2181, .external_lex_state = 10}, + [1295] = {.lex_state = 4, .external_lex_state = 5}, + [1296] = {.lex_state = 4, .external_lex_state = 5}, + [1297] = {.lex_state = 4, .external_lex_state = 5}, + [1298] = {.lex_state = 4, .external_lex_state = 5}, + [1299] = {.lex_state = 2181, .external_lex_state = 6}, + [1300] = {.lex_state = 4, .external_lex_state = 5}, + [1301] = {.lex_state = 2181, .external_lex_state = 6}, + [1302] = {.lex_state = 4, .external_lex_state = 5}, + [1303] = {.lex_state = 4, .external_lex_state = 5}, + [1304] = {.lex_state = 4, .external_lex_state = 5}, + [1305] = {.lex_state = 4, .external_lex_state = 5}, + [1306] = {.lex_state = 4, .external_lex_state = 5}, + [1307] = {.lex_state = 4, .external_lex_state = 5}, + [1308] = {.lex_state = 2181, .external_lex_state = 6}, + [1309] = {.lex_state = 4, .external_lex_state = 5}, + [1310] = {.lex_state = 2181, .external_lex_state = 6}, + [1311] = {.lex_state = 4, .external_lex_state = 5}, + [1312] = {.lex_state = 4, .external_lex_state = 5}, + [1313] = {.lex_state = 4, .external_lex_state = 5}, + [1314] = {.lex_state = 4, .external_lex_state = 5}, + [1315] = {.lex_state = 4, .external_lex_state = 5}, + [1316] = {.lex_state = 4, .external_lex_state = 5}, + [1317] = {.lex_state = 2181, .external_lex_state = 6}, + [1318] = {.lex_state = 4, .external_lex_state = 5}, + [1319] = {.lex_state = 4, .external_lex_state = 5}, + [1320] = {.lex_state = 4, .external_lex_state = 5}, + [1321] = {.lex_state = 2181, .external_lex_state = 5}, + [1322] = {.lex_state = 4, .external_lex_state = 5}, + [1323] = {.lex_state = 2181, .external_lex_state = 6}, + [1324] = {.lex_state = 4, .external_lex_state = 5}, + [1325] = {.lex_state = 2181, .external_lex_state = 6}, + [1326] = {.lex_state = 4, .external_lex_state = 5}, + [1327] = {.lex_state = 2181, .external_lex_state = 6}, + [1328] = {.lex_state = 4, .external_lex_state = 5}, + [1329] = {.lex_state = 4, .external_lex_state = 5}, + [1330] = {.lex_state = 4, .external_lex_state = 5}, + [1331] = {.lex_state = 2181, .external_lex_state = 9}, + [1332] = {.lex_state = 2181, .external_lex_state = 10}, + [1333] = {.lex_state = 2181, .external_lex_state = 5}, + [1334] = {.lex_state = 2181, .external_lex_state = 5}, + [1335] = {.lex_state = 2181, .external_lex_state = 10}, + [1336] = {.lex_state = 2181, .external_lex_state = 5}, + [1337] = {.lex_state = 4, .external_lex_state = 5}, + [1338] = {.lex_state = 4, .external_lex_state = 5}, + [1339] = {.lex_state = 2181, .external_lex_state = 5}, + [1340] = {.lex_state = 2181, .external_lex_state = 6}, + [1341] = {.lex_state = 2181, .external_lex_state = 5}, + [1342] = {.lex_state = 2181, .external_lex_state = 6}, + [1343] = {.lex_state = 2181, .external_lex_state = 5}, + [1344] = {.lex_state = 2181, .external_lex_state = 6}, + [1345] = {.lex_state = 2181, .external_lex_state = 5}, + [1346] = {.lex_state = 2181, .external_lex_state = 6}, + [1347] = {.lex_state = 2181, .external_lex_state = 6}, + [1348] = {.lex_state = 2181, .external_lex_state = 7}, + [1349] = {.lex_state = 2181, .external_lex_state = 10}, + [1350] = {.lex_state = 2181, .external_lex_state = 5}, + [1351] = {.lex_state = 2181, .external_lex_state = 5}, + [1352] = {.lex_state = 2181, .external_lex_state = 10}, + [1353] = {.lex_state = 2181, .external_lex_state = 5}, + [1354] = {.lex_state = 2181, .external_lex_state = 10}, + [1355] = {.lex_state = 2181, .external_lex_state = 7}, + [1356] = {.lex_state = 2181, .external_lex_state = 5}, + [1357] = {.lex_state = 2181, .external_lex_state = 5}, + [1358] = {.lex_state = 2181, .external_lex_state = 7}, + [1359] = {.lex_state = 2181, .external_lex_state = 9}, + [1360] = {.lex_state = 2181, .external_lex_state = 5}, + [1361] = {.lex_state = 2181, .external_lex_state = 5}, + [1362] = {.lex_state = 2181, .external_lex_state = 7}, + [1363] = {.lex_state = 2181, .external_lex_state = 7}, + [1364] = {.lex_state = 2181, .external_lex_state = 7}, + [1365] = {.lex_state = 2181, .external_lex_state = 7}, + [1366] = {.lex_state = 2181, .external_lex_state = 7}, + [1367] = {.lex_state = 2181, .external_lex_state = 7}, + [1368] = {.lex_state = 2181, .external_lex_state = 7}, + [1369] = {.lex_state = 2181, .external_lex_state = 7}, + [1370] = {.lex_state = 2181, .external_lex_state = 5}, + [1371] = {.lex_state = 2181, .external_lex_state = 7}, + [1372] = {.lex_state = 2181, .external_lex_state = 7}, + [1373] = {.lex_state = 2181, .external_lex_state = 6}, + [1374] = {.lex_state = 2181, .external_lex_state = 7}, + [1375] = {.lex_state = 2181, .external_lex_state = 7}, + [1376] = {.lex_state = 2181, .external_lex_state = 7}, + [1377] = {.lex_state = 2181, .external_lex_state = 7}, + [1378] = {.lex_state = 2181, .external_lex_state = 10}, + [1379] = {.lex_state = 2181, .external_lex_state = 6}, + [1380] = {.lex_state = 2181, .external_lex_state = 7}, + [1381] = {.lex_state = 2181, .external_lex_state = 7}, + [1382] = {.lex_state = 2181, .external_lex_state = 5}, + [1383] = {.lex_state = 2181, .external_lex_state = 7}, + [1384] = {.lex_state = 2181, .external_lex_state = 5}, + [1385] = {.lex_state = 2181, .external_lex_state = 7}, + [1386] = {.lex_state = 2181, .external_lex_state = 7}, + [1387] = {.lex_state = 2181, .external_lex_state = 7}, + [1388] = {.lex_state = 2181, .external_lex_state = 5}, + [1389] = {.lex_state = 2181, .external_lex_state = 7}, + [1390] = {.lex_state = 2181, .external_lex_state = 7}, + [1391] = {.lex_state = 2181, .external_lex_state = 7}, + [1392] = {.lex_state = 2181, .external_lex_state = 7}, + [1393] = {.lex_state = 2181, .external_lex_state = 7}, + [1394] = {.lex_state = 2181, .external_lex_state = 7}, + [1395] = {.lex_state = 2181, .external_lex_state = 7}, + [1396] = {.lex_state = 2181, .external_lex_state = 7}, + [1397] = {.lex_state = 2181, .external_lex_state = 7}, + [1398] = {.lex_state = 2181, .external_lex_state = 7}, + [1399] = {.lex_state = 2181, .external_lex_state = 7}, + [1400] = {.lex_state = 2181, .external_lex_state = 7}, + [1401] = {.lex_state = 2181, .external_lex_state = 7}, + [1402] = {.lex_state = 2181, .external_lex_state = 7}, + [1403] = {.lex_state = 2181, .external_lex_state = 7}, + [1404] = {.lex_state = 2181, .external_lex_state = 5}, + [1405] = {.lex_state = 2181, .external_lex_state = 7}, + [1406] = {.lex_state = 2181, .external_lex_state = 10}, + [1407] = {.lex_state = 2181, .external_lex_state = 7}, + [1408] = {.lex_state = 2181, .external_lex_state = 5}, + [1409] = {.lex_state = 2181, .external_lex_state = 10}, + [1410] = {.lex_state = 2181, .external_lex_state = 7}, + [1411] = {.lex_state = 2181, .external_lex_state = 7}, + [1412] = {.lex_state = 2181, .external_lex_state = 7}, + [1413] = {.lex_state = 2181, .external_lex_state = 7}, + [1414] = {.lex_state = 2181, .external_lex_state = 7}, + [1415] = {.lex_state = 2181, .external_lex_state = 10}, + [1416] = {.lex_state = 2181, .external_lex_state = 7}, + [1417] = {.lex_state = 2181, .external_lex_state = 7}, + [1418] = {.lex_state = 2181, .external_lex_state = 7}, + [1419] = {.lex_state = 2181, .external_lex_state = 7}, + [1420] = {.lex_state = 2181, .external_lex_state = 10}, + [1421] = {.lex_state = 2181, .external_lex_state = 7}, + [1422] = {.lex_state = 2181, .external_lex_state = 5}, + [1423] = {.lex_state = 2181, .external_lex_state = 7}, + [1424] = {.lex_state = 2181, .external_lex_state = 7}, + [1425] = {.lex_state = 2181, .external_lex_state = 7}, + [1426] = {.lex_state = 2181, .external_lex_state = 7}, + [1427] = {.lex_state = 2181, .external_lex_state = 7}, + [1428] = {.lex_state = 2181, .external_lex_state = 7}, + [1429] = {.lex_state = 2181, .external_lex_state = 10}, + [1430] = {.lex_state = 2181, .external_lex_state = 7}, + [1431] = {.lex_state = 2181, .external_lex_state = 5}, + [1432] = {.lex_state = 2181, .external_lex_state = 7}, + [1433] = {.lex_state = 2181, .external_lex_state = 7}, + [1434] = {.lex_state = 2181, .external_lex_state = 7}, + [1435] = {.lex_state = 2181, .external_lex_state = 7}, + [1436] = {.lex_state = 2181, .external_lex_state = 7}, + [1437] = {.lex_state = 2181, .external_lex_state = 7}, + [1438] = {.lex_state = 2181, .external_lex_state = 7}, + [1439] = {.lex_state = 2181, .external_lex_state = 7}, + [1440] = {.lex_state = 2181, .external_lex_state = 7}, + [1441] = {.lex_state = 2181, .external_lex_state = 7}, + [1442] = {.lex_state = 2181, .external_lex_state = 7}, + [1443] = {.lex_state = 2181, .external_lex_state = 7}, + [1444] = {.lex_state = 2181, .external_lex_state = 7}, + [1445] = {.lex_state = 2181, .external_lex_state = 7}, + [1446] = {.lex_state = 2181, .external_lex_state = 8}, + [1447] = {.lex_state = 2181, .external_lex_state = 10}, + [1448] = {.lex_state = 2181, .external_lex_state = 10}, + [1449] = {.lex_state = 2181, .external_lex_state = 5}, + [1450] = {.lex_state = 2181, .external_lex_state = 10}, + [1451] = {.lex_state = 2181, .external_lex_state = 10}, + [1452] = {.lex_state = 2181, .external_lex_state = 8}, + [1453] = {.lex_state = 2181, .external_lex_state = 5}, + [1454] = {.lex_state = 2181, .external_lex_state = 8}, + [1455] = {.lex_state = 2181, .external_lex_state = 8}, + [1456] = {.lex_state = 2181, .external_lex_state = 5}, + [1457] = {.lex_state = 2181, .external_lex_state = 5}, + [1458] = {.lex_state = 2181, .external_lex_state = 8}, + [1459] = {.lex_state = 2181, .external_lex_state = 8}, + [1460] = {.lex_state = 2181, .external_lex_state = 8}, + [1461] = {.lex_state = 2181, .external_lex_state = 8}, + [1462] = {.lex_state = 2181, .external_lex_state = 8}, + [1463] = {.lex_state = 2181, .external_lex_state = 8}, + [1464] = {.lex_state = 2181, .external_lex_state = 8}, + [1465] = {.lex_state = 2181, .external_lex_state = 8}, + [1466] = {.lex_state = 2181, .external_lex_state = 5}, + [1467] = {.lex_state = 2181, .external_lex_state = 8}, + [1468] = {.lex_state = 2181, .external_lex_state = 8}, + [1469] = {.lex_state = 2181, .external_lex_state = 7}, + [1470] = {.lex_state = 2181, .external_lex_state = 8}, + [1471] = {.lex_state = 2181, .external_lex_state = 8}, + [1472] = {.lex_state = 2181, .external_lex_state = 8}, + [1473] = {.lex_state = 2181, .external_lex_state = 8}, + [1474] = {.lex_state = 2181, .external_lex_state = 10}, + [1475] = {.lex_state = 2181, .external_lex_state = 7}, + [1476] = {.lex_state = 2181, .external_lex_state = 8}, + [1477] = {.lex_state = 2181, .external_lex_state = 8}, + [1478] = {.lex_state = 2181, .external_lex_state = 5}, + [1479] = {.lex_state = 2181, .external_lex_state = 8}, + [1480] = {.lex_state = 2181, .external_lex_state = 8}, + [1481] = {.lex_state = 2181, .external_lex_state = 8}, + [1482] = {.lex_state = 2181, .external_lex_state = 8}, + [1483] = {.lex_state = 2181, .external_lex_state = 8}, + [1484] = {.lex_state = 2181, .external_lex_state = 8}, + [1485] = {.lex_state = 2181, .external_lex_state = 8}, + [1486] = {.lex_state = 2181, .external_lex_state = 8}, + [1487] = {.lex_state = 2181, .external_lex_state = 8}, + [1488] = {.lex_state = 2181, .external_lex_state = 8}, + [1489] = {.lex_state = 2181, .external_lex_state = 8}, + [1490] = {.lex_state = 2181, .external_lex_state = 8}, + [1491] = {.lex_state = 2181, .external_lex_state = 8}, + [1492] = {.lex_state = 2181, .external_lex_state = 8}, + [1493] = {.lex_state = 2181, .external_lex_state = 8}, + [1494] = {.lex_state = 2181, .external_lex_state = 8}, + [1495] = {.lex_state = 2181, .external_lex_state = 8}, + [1496] = {.lex_state = 2181, .external_lex_state = 8}, + [1497] = {.lex_state = 2181, .external_lex_state = 8}, + [1498] = {.lex_state = 2181, .external_lex_state = 10}, + [1499] = {.lex_state = 2181, .external_lex_state = 8}, + [1500] = {.lex_state = 2181, .external_lex_state = 10}, + [1501] = {.lex_state = 2181, .external_lex_state = 8}, + [1502] = {.lex_state = 2181, .external_lex_state = 5}, + [1503] = {.lex_state = 2181, .external_lex_state = 10}, + [1504] = {.lex_state = 2181, .external_lex_state = 8}, + [1505] = {.lex_state = 2181, .external_lex_state = 8}, + [1506] = {.lex_state = 2181, .external_lex_state = 8}, + [1507] = {.lex_state = 2181, .external_lex_state = 8}, + [1508] = {.lex_state = 2181, .external_lex_state = 8}, + [1509] = {.lex_state = 2181, .external_lex_state = 10}, + [1510] = {.lex_state = 2181, .external_lex_state = 8}, + [1511] = {.lex_state = 2181, .external_lex_state = 8}, + [1512] = {.lex_state = 2181, .external_lex_state = 8}, + [1513] = {.lex_state = 2181, .external_lex_state = 8}, + [1514] = {.lex_state = 2181, .external_lex_state = 5}, + [1515] = {.lex_state = 2181, .external_lex_state = 8}, + [1516] = {.lex_state = 2181, .external_lex_state = 5}, + [1517] = {.lex_state = 2181, .external_lex_state = 8}, + [1518] = {.lex_state = 2181, .external_lex_state = 8}, + [1519] = {.lex_state = 2181, .external_lex_state = 8}, + [1520] = {.lex_state = 2181, .external_lex_state = 8}, + [1521] = {.lex_state = 2181, .external_lex_state = 8}, + [1522] = {.lex_state = 2181, .external_lex_state = 8}, + [1523] = {.lex_state = 2181, .external_lex_state = 5}, + [1524] = {.lex_state = 2181, .external_lex_state = 8}, + [1525] = {.lex_state = 2181, .external_lex_state = 8}, + [1526] = {.lex_state = 2181, .external_lex_state = 8}, + [1527] = {.lex_state = 2181, .external_lex_state = 8}, + [1528] = {.lex_state = 2181, .external_lex_state = 8}, + [1529] = {.lex_state = 2181, .external_lex_state = 8}, + [1530] = {.lex_state = 2181, .external_lex_state = 8}, + [1531] = {.lex_state = 2181, .external_lex_state = 8}, + [1532] = {.lex_state = 2181, .external_lex_state = 8}, + [1533] = {.lex_state = 2181, .external_lex_state = 8}, + [1534] = {.lex_state = 2181, .external_lex_state = 8}, + [1535] = {.lex_state = 2181, .external_lex_state = 8}, + [1536] = {.lex_state = 2181, .external_lex_state = 8}, + [1537] = {.lex_state = 2181, .external_lex_state = 8}, + [1538] = {.lex_state = 2181, .external_lex_state = 8}, + [1539] = {.lex_state = 2181, .external_lex_state = 10}, + [1540] = {.lex_state = 2181, .external_lex_state = 9}, + [1541] = {.lex_state = 2181, .external_lex_state = 10}, + [1542] = {.lex_state = 2181, .external_lex_state = 9}, + [1543] = {.lex_state = 2181, .external_lex_state = 4}, + [1544] = {.lex_state = 2181, .external_lex_state = 4}, + [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 = 4}, + [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 = 8}, + [1557] = {.lex_state = 2181, .external_lex_state = 4}, + [1558] = {.lex_state = 2181, .external_lex_state = 4}, + [1559] = {.lex_state = 2181, .external_lex_state = 4}, + [1560] = {.lex_state = 2181, .external_lex_state = 4}, + [1561] = {.lex_state = 2181, .external_lex_state = 10}, + [1562] = {.lex_state = 2181, .external_lex_state = 8}, + [1563] = {.lex_state = 2181, .external_lex_state = 4}, + [1564] = {.lex_state = 2181, .external_lex_state = 4}, + [1565] = {.lex_state = 2181, .external_lex_state = 4}, + [1566] = {.lex_state = 2181, .external_lex_state = 4}, + [1567] = {.lex_state = 2181, .external_lex_state = 4}, + [1568] = {.lex_state = 2181, .external_lex_state = 4}, + [1569] = {.lex_state = 2181, .external_lex_state = 4}, + [1570] = {.lex_state = 2181, .external_lex_state = 4}, + [1571] = {.lex_state = 2181, .external_lex_state = 4}, + [1572] = {.lex_state = 2181, .external_lex_state = 4}, + [1573] = {.lex_state = 2181, .external_lex_state = 4}, + [1574] = {.lex_state = 2181, .external_lex_state = 4}, + [1575] = {.lex_state = 2181, .external_lex_state = 4}, + [1576] = {.lex_state = 2181, .external_lex_state = 4}, + [1577] = {.lex_state = 2181, .external_lex_state = 4}, + [1578] = {.lex_state = 2181, .external_lex_state = 4}, + [1579] = {.lex_state = 2181, .external_lex_state = 4}, + [1580] = {.lex_state = 2181, .external_lex_state = 4}, + [1581] = {.lex_state = 2181, .external_lex_state = 4}, + [1582] = {.lex_state = 2181, .external_lex_state = 4}, + [1583] = {.lex_state = 2181, .external_lex_state = 4}, + [1584] = {.lex_state = 2181, .external_lex_state = 4}, + [1585] = {.lex_state = 2181, .external_lex_state = 4}, + [1586] = {.lex_state = 2181, .external_lex_state = 4}, + [1587] = {.lex_state = 2181, .external_lex_state = 4}, + [1588] = {.lex_state = 2181, .external_lex_state = 4}, + [1589] = {.lex_state = 2181, .external_lex_state = 4}, + [1590] = {.lex_state = 2181, .external_lex_state = 4}, + [1591] = {.lex_state = 2181, .external_lex_state = 10}, + [1592] = {.lex_state = 2181, .external_lex_state = 4}, + [1593] = {.lex_state = 2181, .external_lex_state = 4}, + [1594] = {.lex_state = 2181, .external_lex_state = 4}, + [1595] = {.lex_state = 2181, .external_lex_state = 4}, + [1596] = {.lex_state = 2181, .external_lex_state = 4}, + [1597] = {.lex_state = 2181, .external_lex_state = 4}, + [1598] = {.lex_state = 2181, .external_lex_state = 4}, + [1599] = {.lex_state = 2181, .external_lex_state = 4}, + [1600] = {.lex_state = 2181, .external_lex_state = 4}, + [1601] = {.lex_state = 2181, .external_lex_state = 4}, + [1602] = {.lex_state = 2181, .external_lex_state = 4}, + [1603] = {.lex_state = 2181, .external_lex_state = 4}, + [1604] = {.lex_state = 2181, .external_lex_state = 4}, + [1605] = {.lex_state = 2181, .external_lex_state = 4}, + [1606] = {.lex_state = 2181, .external_lex_state = 4}, + [1607] = {.lex_state = 2181, .external_lex_state = 4}, + [1608] = {.lex_state = 2181, .external_lex_state = 4}, + [1609] = {.lex_state = 2181, .external_lex_state = 4}, + [1610] = {.lex_state = 2181, .external_lex_state = 5}, + [1611] = {.lex_state = 2181, .external_lex_state = 4}, + [1612] = {.lex_state = 2181, .external_lex_state = 4}, + [1613] = {.lex_state = 2181, .external_lex_state = 4}, + [1614] = {.lex_state = 2181, .external_lex_state = 5}, + [1615] = {.lex_state = 2181, .external_lex_state = 4}, + [1616] = {.lex_state = 2181, .external_lex_state = 4}, + [1617] = {.lex_state = 2181, .external_lex_state = 5}, + [1618] = {.lex_state = 2181, .external_lex_state = 4}, + [1619] = {.lex_state = 2181, .external_lex_state = 5}, + [1620] = {.lex_state = 2181, .external_lex_state = 4}, + [1621] = {.lex_state = 2181, .external_lex_state = 4}, + [1622] = {.lex_state = 2181, .external_lex_state = 4}, + [1623] = {.lex_state = 2181, .external_lex_state = 10}, + [1624] = {.lex_state = 2181, .external_lex_state = 10}, + [1625] = {.lex_state = 2181, .external_lex_state = 5}, + [1626] = {.lex_state = 2181, .external_lex_state = 5}, + [1627] = {.lex_state = 2181, .external_lex_state = 10}, + [1628] = {.lex_state = 2181, .external_lex_state = 9}, + [1629] = {.lex_state = 2181, .external_lex_state = 5}, + [1630] = {.lex_state = 2181, .external_lex_state = 9}, + [1631] = {.lex_state = 2181, .external_lex_state = 9}, + [1632] = {.lex_state = 2181, .external_lex_state = 5}, + [1633] = {.lex_state = 2181, .external_lex_state = 9}, + [1634] = {.lex_state = 2181, .external_lex_state = 9}, + [1635] = {.lex_state = 2181, .external_lex_state = 9}, + [1636] = {.lex_state = 2181, .external_lex_state = 9}, + [1637] = {.lex_state = 2181, .external_lex_state = 9}, + [1638] = {.lex_state = 2181, .external_lex_state = 9}, + [1639] = {.lex_state = 2181, .external_lex_state = 9}, + [1640] = {.lex_state = 2181, .external_lex_state = 9}, + [1641] = {.lex_state = 2181, .external_lex_state = 5}, + [1642] = {.lex_state = 2181, .external_lex_state = 9}, + [1643] = {.lex_state = 2181, .external_lex_state = 9}, + [1644] = {.lex_state = 2181, .external_lex_state = 9}, + [1645] = {.lex_state = 2181, .external_lex_state = 9}, + [1646] = {.lex_state = 2181, .external_lex_state = 9}, + [1647] = {.lex_state = 2181, .external_lex_state = 9}, + [1648] = {.lex_state = 2181, .external_lex_state = 10}, + [1649] = {.lex_state = 2181, .external_lex_state = 4}, + [1650] = {.lex_state = 2181, .external_lex_state = 9}, + [1651] = {.lex_state = 2181, .external_lex_state = 9}, + [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 = 9}, + [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 = 9}, + [1667] = {.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 = 10}, + [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 = 10}, + [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 = 7}, [1690] = {.lex_state = 1}, [1691] = {.lex_state = 1}, [1692] = {.lex_state = 1}, - [1693] = {.lex_state = 1, .external_lex_state = 32}, + [1693] = {.lex_state = 1}, [1694] = {.lex_state = 1}, [1695] = {.lex_state = 1}, [1696] = {.lex_state = 1}, @@ -28568,12 +28563,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1715] = {.lex_state = 1}, [1716] = {.lex_state = 1}, [1717] = {.lex_state = 1}, - [1718] = {.lex_state = 1}, + [1718] = {.lex_state = 1, .external_lex_state = 32}, [1719] = {.lex_state = 1}, [1720] = {.lex_state = 1}, [1721] = {.lex_state = 1}, [1722] = {.lex_state = 1}, - [1723] = {.lex_state = 1}, + [1723] = {.lex_state = 1, .external_lex_state = 32}, [1724] = {.lex_state = 1}, [1725] = {.lex_state = 1}, [1726] = {.lex_state = 1}, @@ -28588,18 +28583,18 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1735] = {.lex_state = 1}, [1736] = {.lex_state = 1}, [1737] = {.lex_state = 1}, - [1738] = {.lex_state = 1, .external_lex_state = 32}, + [1738] = {.lex_state = 1}, [1739] = {.lex_state = 1}, [1740] = {.lex_state = 1}, [1741] = {.lex_state = 1}, [1742] = {.lex_state = 1}, [1743] = {.lex_state = 1, .external_lex_state = 32}, [1744] = {.lex_state = 1}, - [1745] = {.lex_state = 1}, - [1746] = {.lex_state = 1}, + [1745] = {.lex_state = 1, .external_lex_state = 32}, + [1746] = {.lex_state = 1, .external_lex_state = 32}, [1747] = {.lex_state = 1}, - [1748] = {.lex_state = 1, .external_lex_state = 32}, - [1749] = {.lex_state = 1, .external_lex_state = 32}, + [1748] = {.lex_state = 1}, + [1749] = {.lex_state = 1}, [1750] = {.lex_state = 1}, [1751] = {.lex_state = 1}, [1752] = {.lex_state = 1}, @@ -28608,265 +28603,265 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1755] = {.lex_state = 1}, [1756] = {.lex_state = 1}, [1757] = {.lex_state = 1}, - [1758] = {.lex_state = 1}, + [1758] = {.lex_state = 2, .external_lex_state = 33}, [1759] = {.lex_state = 2, .external_lex_state = 33}, - [1760] = {.lex_state = 2, .external_lex_state = 33}, + [1760] = {.lex_state = 1}, [1761] = {.lex_state = 2, .external_lex_state = 33}, [1762] = {.lex_state = 2, .external_lex_state = 33}, [1763] = {.lex_state = 2, .external_lex_state = 33}, - [1764] = {.lex_state = 2, .external_lex_state = 33}, + [1764] = {.lex_state = 1}, [1765] = {.lex_state = 2, .external_lex_state = 33}, [1766] = {.lex_state = 2, .external_lex_state = 33}, [1767] = {.lex_state = 2, .external_lex_state = 33}, [1768] = {.lex_state = 2, .external_lex_state = 33}, [1769] = {.lex_state = 2, .external_lex_state = 33}, [1770] = {.lex_state = 2, .external_lex_state = 33}, - [1771] = {.lex_state = 2, .external_lex_state = 33}, - [1772] = {.lex_state = 1}, + [1771] = {.lex_state = 1}, + [1772] = {.lex_state = 2, .external_lex_state = 33}, [1773] = {.lex_state = 2, .external_lex_state = 33}, - [1774] = {.lex_state = 1}, + [1774] = {.lex_state = 2, .external_lex_state = 33}, [1775] = {.lex_state = 2, .external_lex_state = 33}, [1776] = {.lex_state = 2, .external_lex_state = 33}, [1777] = {.lex_state = 2, .external_lex_state = 33}, [1778] = {.lex_state = 2, .external_lex_state = 33}, [1779] = {.lex_state = 2, .external_lex_state = 33}, - [1780] = {.lex_state = 2, .external_lex_state = 33}, + [1780] = {.lex_state = 1}, [1781] = {.lex_state = 2, .external_lex_state = 33}, - [1782] = {.lex_state = 1}, + [1782] = {.lex_state = 2, .external_lex_state = 33}, [1783] = {.lex_state = 2, .external_lex_state = 33}, [1784] = {.lex_state = 2, .external_lex_state = 33}, [1785] = {.lex_state = 2, .external_lex_state = 33}, [1786] = {.lex_state = 2, .external_lex_state = 33}, - [1787] = {.lex_state = 1}, - [1788] = {.lex_state = 1, .external_lex_state = 32}, + [1787] = {.lex_state = 1, .external_lex_state = 32}, + [1788] = {.lex_state = 1}, [1789] = {.lex_state = 1}, [1790] = {.lex_state = 1, .external_lex_state = 32}, [1791] = {.lex_state = 1, .external_lex_state = 32}, - [1792] = {.lex_state = 1, .external_lex_state = 34}, + [1792] = {.lex_state = 1, .external_lex_state = 32}, [1793] = {.lex_state = 1, .external_lex_state = 32}, - [1794] = {.lex_state = 1, .external_lex_state = 32}, + [1794] = {.lex_state = 1, .external_lex_state = 34}, [1795] = {.lex_state = 1}, [1796] = {.lex_state = 1, .external_lex_state = 32}, [1797] = {.lex_state = 1, .external_lex_state = 34}, - [1798] = {.lex_state = 1, .external_lex_state = 32}, - [1799] = {.lex_state = 1}, + [1798] = {.lex_state = 1}, + [1799] = {.lex_state = 1, .external_lex_state = 32}, [1800] = {.lex_state = 1}, - [1801] = {.lex_state = 6}, - [1802] = {.lex_state = 6}, - [1803] = {.lex_state = 1}, - [1804] = {.lex_state = 1}, + [1801] = {.lex_state = 1}, + [1802] = {.lex_state = 1}, + [1803] = {.lex_state = 6}, + [1804] = {.lex_state = 6}, [1805] = {.lex_state = 1}, - [1806] = {.lex_state = 1}, + [1806] = {.lex_state = 7}, [1807] = {.lex_state = 1}, [1808] = {.lex_state = 1}, [1809] = {.lex_state = 1}, - [1810] = {.lex_state = 7}, + [1810] = {.lex_state = 1}, [1811] = {.lex_state = 6}, [1812] = {.lex_state = 1}, - [1813] = {.lex_state = 1}, - [1814] = {.lex_state = 1}, + [1813] = {.lex_state = 1, .external_lex_state = 32}, + [1814] = {.lex_state = 7}, [1815] = {.lex_state = 1}, - [1816] = {.lex_state = 7}, + [1816] = {.lex_state = 1}, [1817] = {.lex_state = 1}, [1818] = {.lex_state = 1}, - [1819] = {.lex_state = 7}, + [1819] = {.lex_state = 1}, [1820] = {.lex_state = 1}, [1821] = {.lex_state = 1}, [1822] = {.lex_state = 1}, - [1823] = {.lex_state = 1}, - [1824] = {.lex_state = 1, .external_lex_state = 32}, - [1825] = {.lex_state = 1, .external_lex_state = 32}, - [1826] = {.lex_state = 1}, - [1827] = {.lex_state = 1}, - [1828] = {.lex_state = 2, .external_lex_state = 35}, + [1823] = {.lex_state = 7}, + [1824] = {.lex_state = 1}, + [1825] = {.lex_state = 1}, + [1826] = {.lex_state = 2, .external_lex_state = 35}, + [1827] = {.lex_state = 1, .external_lex_state = 32}, + [1828] = {.lex_state = 1}, [1829] = {.lex_state = 2, .external_lex_state = 36}, - [1830] = {.lex_state = 2, .external_lex_state = 35}, - [1831] = {.lex_state = 2, .external_lex_state = 33}, + [1830] = {.lex_state = 2, .external_lex_state = 36}, + [1831] = {.lex_state = 6, .external_lex_state = 32}, [1832] = {.lex_state = 2, .external_lex_state = 33}, - [1833] = {.lex_state = 2, .external_lex_state = 33}, - [1834] = {.lex_state = 7, .external_lex_state = 32}, - [1835] = {.lex_state = 7, .external_lex_state = 34}, - [1836] = {.lex_state = 6, .external_lex_state = 34}, + [1833] = {.lex_state = 1}, + [1834] = {.lex_state = 7, .external_lex_state = 34}, + [1835] = {.lex_state = 6, .external_lex_state = 34}, + [1836] = {.lex_state = 7, .external_lex_state = 32}, [1837] = {.lex_state = 2, .external_lex_state = 33}, - [1838] = {.lex_state = 6, .external_lex_state = 32}, - [1839] = {.lex_state = 1}, - [1840] = {.lex_state = 6}, - [1841] = {.lex_state = 7}, - [1842] = {.lex_state = 6}, - [1843] = {.lex_state = 7}, + [1838] = {.lex_state = 2, .external_lex_state = 33}, + [1839] = {.lex_state = 2, .external_lex_state = 33}, + [1840] = {.lex_state = 7}, + [1841] = {.lex_state = 6}, + [1842] = {.lex_state = 7}, + [1843] = {.lex_state = 6}, [1844] = {.lex_state = 5, .external_lex_state = 37}, [1845] = {.lex_state = 5, .external_lex_state = 37}, [1846] = {.lex_state = 5, .external_lex_state = 38}, - [1847] = {.lex_state = 5, .external_lex_state = 38}, + [1847] = {.lex_state = 5, .external_lex_state = 39}, [1848] = {.lex_state = 5, .external_lex_state = 39}, - [1849] = {.lex_state = 5, .external_lex_state = 38}, - [1850] = {.lex_state = 5, .external_lex_state = 39}, - [1851] = {.lex_state = 5, .external_lex_state = 38}, - [1852] = {.lex_state = 5, .external_lex_state = 39}, - [1853] = {.lex_state = 5, .external_lex_state = 38}, - [1854] = {.lex_state = 5, .external_lex_state = 39}, - [1855] = {.lex_state = 5, .external_lex_state = 38}, - [1856] = {.lex_state = 5, .external_lex_state = 39}, - [1857] = {.lex_state = 5, .external_lex_state = 38}, - [1858] = {.lex_state = 5, .external_lex_state = 39}, - [1859] = {.lex_state = 5, .external_lex_state = 38}, - [1860] = {.lex_state = 5, .external_lex_state = 39}, + [1849] = {.lex_state = 5, .external_lex_state = 39}, + [1850] = {.lex_state = 5, .external_lex_state = 38}, + [1851] = {.lex_state = 5, .external_lex_state = 39}, + [1852] = {.lex_state = 5, .external_lex_state = 38}, + [1853] = {.lex_state = 5, .external_lex_state = 39}, + [1854] = {.lex_state = 5, .external_lex_state = 38}, + [1855] = {.lex_state = 5, .external_lex_state = 39}, + [1856] = {.lex_state = 5, .external_lex_state = 38}, + [1857] = {.lex_state = 5, .external_lex_state = 39}, + [1858] = {.lex_state = 5, .external_lex_state = 38}, + [1859] = {.lex_state = 5, .external_lex_state = 39}, + [1860] = {.lex_state = 5, .external_lex_state = 38}, [1861] = {.lex_state = 5, .external_lex_state = 38}, [1862] = {.lex_state = 5, .external_lex_state = 39}, - [1863] = {.lex_state = 5, .external_lex_state = 38}, - [1864] = {.lex_state = 5, .external_lex_state = 39}, - [1865] = {.lex_state = 5, .external_lex_state = 38}, - [1866] = {.lex_state = 5, .external_lex_state = 39}, + [1863] = {.lex_state = 5, .external_lex_state = 39}, + [1864] = {.lex_state = 5, .external_lex_state = 38}, + [1865] = {.lex_state = 5, .external_lex_state = 39}, + [1866] = {.lex_state = 5, .external_lex_state = 38}, [1867] = {.lex_state = 5, .external_lex_state = 38}, - [1868] = {.lex_state = 5, .external_lex_state = 39}, - [1869] = {.lex_state = 5, .external_lex_state = 38}, - [1870] = {.lex_state = 5, .external_lex_state = 39}, - [1871] = {.lex_state = 5, .external_lex_state = 38}, - [1872] = {.lex_state = 5, .external_lex_state = 39}, - [1873] = {.lex_state = 5, .external_lex_state = 38}, - [1874] = {.lex_state = 5, .external_lex_state = 39}, - [1875] = {.lex_state = 5, .external_lex_state = 38}, - [1876] = {.lex_state = 5, .external_lex_state = 39}, - [1877] = {.lex_state = 5, .external_lex_state = 38}, - [1878] = {.lex_state = 5, .external_lex_state = 39}, - [1879] = {.lex_state = 5, .external_lex_state = 38}, - [1880] = {.lex_state = 5, .external_lex_state = 39}, + [1868] = {.lex_state = 5, .external_lex_state = 38}, + [1869] = {.lex_state = 5, .external_lex_state = 39}, + [1870] = {.lex_state = 5, .external_lex_state = 38}, + [1871] = {.lex_state = 5, .external_lex_state = 39}, + [1872] = {.lex_state = 5, .external_lex_state = 38}, + [1873] = {.lex_state = 5, .external_lex_state = 39}, + [1874] = {.lex_state = 5, .external_lex_state = 38}, + [1875] = {.lex_state = 5, .external_lex_state = 39}, + [1876] = {.lex_state = 5, .external_lex_state = 38}, + [1877] = {.lex_state = 5, .external_lex_state = 39}, + [1878] = {.lex_state = 5, .external_lex_state = 38}, + [1879] = {.lex_state = 5, .external_lex_state = 39}, + [1880] = {.lex_state = 5, .external_lex_state = 38}, [1881] = {.lex_state = 5, .external_lex_state = 38}, [1882] = {.lex_state = 5, .external_lex_state = 39}, - [1883] = {.lex_state = 5, .external_lex_state = 38}, - [1884] = {.lex_state = 5, .external_lex_state = 39}, - [1885] = {.lex_state = 5, .external_lex_state = 38}, - [1886] = {.lex_state = 5, .external_lex_state = 39}, + [1883] = {.lex_state = 5, .external_lex_state = 39}, + [1884] = {.lex_state = 5, .external_lex_state = 38}, + [1885] = {.lex_state = 5, .external_lex_state = 39}, + [1886] = {.lex_state = 5, .external_lex_state = 38}, [1887] = {.lex_state = 5, .external_lex_state = 38}, - [1888] = {.lex_state = 5, .external_lex_state = 39}, - [1889] = {.lex_state = 5, .external_lex_state = 39}, + [1888] = {.lex_state = 5, .external_lex_state = 38}, + [1889] = {.lex_state = 5, .external_lex_state = 38}, [1890] = {.lex_state = 5, .external_lex_state = 39}, - [1891] = {.lex_state = 5, .external_lex_state = 39}, - [1892] = {.lex_state = 5, .external_lex_state = 38}, - [1893] = {.lex_state = 5, .external_lex_state = 39}, - [1894] = {.lex_state = 5, .external_lex_state = 38}, + [1891] = {.lex_state = 5, .external_lex_state = 38}, + [1892] = {.lex_state = 5, .external_lex_state = 39}, + [1893] = {.lex_state = 5, .external_lex_state = 38}, + [1894] = {.lex_state = 5, .external_lex_state = 39}, [1895] = {.lex_state = 5, .external_lex_state = 39}, [1896] = {.lex_state = 5, .external_lex_state = 37}, [1897] = {.lex_state = 5, .external_lex_state = 37}, [1898] = {.lex_state = 5, .external_lex_state = 37}, - [1899] = {.lex_state = 12}, + [1899] = {.lex_state = 2181}, [1900] = {.lex_state = 2181}, [1901] = {.lex_state = 2181}, - [1902] = {.lex_state = 12}, + [1902] = {.lex_state = 2181}, [1903] = {.lex_state = 2181}, - [1904] = {.lex_state = 12}, - [1905] = {.lex_state = 2181}, - [1906] = {.lex_state = 2181}, - [1907] = {.lex_state = 2181}, + [1904] = {.lex_state = 2181}, + [1905] = {.lex_state = 12}, + [1906] = {.lex_state = 12}, + [1907] = {.lex_state = 12}, [1908] = {.lex_state = 2181}, [1909] = {.lex_state = 2181}, [1910] = {.lex_state = 2181}, [1911] = {.lex_state = 2181}, - [1912] = {.lex_state = 12}, + [1912] = {.lex_state = 2181}, [1913] = {.lex_state = 2181}, - [1914] = {.lex_state = 12}, + [1914] = {.lex_state = 2181}, [1915] = {.lex_state = 2181}, [1916] = {.lex_state = 2181}, [1917] = {.lex_state = 2181}, - [1918] = {.lex_state = 2181}, - [1919] = {.lex_state = 2181}, + [1918] = {.lex_state = 12}, + [1919] = {.lex_state = 5, .external_lex_state = 40}, [1920] = {.lex_state = 2181}, [1921] = {.lex_state = 2181}, - [1922] = {.lex_state = 12}, - [1923] = {.lex_state = 12}, + [1922] = {.lex_state = 5, .external_lex_state = 41}, + [1923] = {.lex_state = 2181}, [1924] = {.lex_state = 2181}, - [1925] = {.lex_state = 2181}, - [1926] = {.lex_state = 2181}, + [1925] = {.lex_state = 12}, + [1926] = {.lex_state = 12}, [1927] = {.lex_state = 2181}, [1928] = {.lex_state = 2181}, [1929] = {.lex_state = 2181}, - [1930] = {.lex_state = 12}, + [1930] = {.lex_state = 2181}, [1931] = {.lex_state = 2181}, [1932] = {.lex_state = 2181}, [1933] = {.lex_state = 2181}, [1934] = {.lex_state = 2181}, [1935] = {.lex_state = 2181}, [1936] = {.lex_state = 2181}, - [1937] = {.lex_state = 12}, + [1937] = {.lex_state = 2181}, [1938] = {.lex_state = 2181}, - [1939] = {.lex_state = 12}, + [1939] = {.lex_state = 2181}, [1940] = {.lex_state = 2181}, [1941] = {.lex_state = 2181}, [1942] = {.lex_state = 2181}, [1943] = {.lex_state = 2181}, [1944] = {.lex_state = 2181}, - [1945] = {.lex_state = 12}, + [1945] = {.lex_state = 2181}, [1946] = {.lex_state = 12}, - [1947] = {.lex_state = 5, .external_lex_state = 40}, - [1948] = {.lex_state = 2181}, - [1949] = {.lex_state = 2181}, + [1947] = {.lex_state = 2181}, + [1948] = {.lex_state = 12}, + [1949] = {.lex_state = 12}, [1950] = {.lex_state = 2181}, [1951] = {.lex_state = 2181}, [1952] = {.lex_state = 2181}, [1953] = {.lex_state = 2181}, - [1954] = {.lex_state = 5, .external_lex_state = 41}, - [1955] = {.lex_state = 2181}, + [1954] = {.lex_state = 12}, + [1955] = {.lex_state = 12}, [1956] = {.lex_state = 2181}, [1957] = {.lex_state = 2181}, [1958] = {.lex_state = 2181}, [1959] = {.lex_state = 2181}, - [1960] = {.lex_state = 2181}, + [1960] = {.lex_state = 12}, [1961] = {.lex_state = 12}, [1962] = {.lex_state = 8, .external_lex_state = 42}, [1963] = {.lex_state = 8, .external_lex_state = 42}, [1964] = {.lex_state = 12}, - [1965] = {.lex_state = 8, .external_lex_state = 42}, + [1965] = {.lex_state = 5, .external_lex_state = 38}, [1966] = {.lex_state = 12}, - [1967] = {.lex_state = 12}, + [1967] = {.lex_state = 8, .external_lex_state = 42}, [1968] = {.lex_state = 8, .external_lex_state = 42}, - [1969] = {.lex_state = 8, .external_lex_state = 42}, - [1970] = {.lex_state = 12}, + [1969] = {.lex_state = 2181}, + [1970] = {.lex_state = 8, .external_lex_state = 42}, [1971] = {.lex_state = 8, .external_lex_state = 42}, - [1972] = {.lex_state = 8, .external_lex_state = 42}, - [1973] = {.lex_state = 8, .external_lex_state = 42}, + [1972] = {.lex_state = 12}, + [1973] = {.lex_state = 12}, [1974] = {.lex_state = 12}, - [1975] = {.lex_state = 12}, + [1975] = {.lex_state = 8, .external_lex_state = 42}, [1976] = {.lex_state = 12}, - [1977] = {.lex_state = 3, .external_lex_state = 34}, - [1978] = {.lex_state = 12}, - [1979] = {.lex_state = 12}, - [1980] = {.lex_state = 8, .external_lex_state = 42}, - [1981] = {.lex_state = 8, .external_lex_state = 42}, - [1982] = {.lex_state = 12}, + [1977] = {.lex_state = 12}, + [1978] = {.lex_state = 8, .external_lex_state = 42}, + [1979] = {.lex_state = 8, .external_lex_state = 42}, + [1980] = {.lex_state = 5, .external_lex_state = 43}, + [1981] = {.lex_state = 12}, + [1982] = {.lex_state = 8, .external_lex_state = 42}, [1983] = {.lex_state = 8, .external_lex_state = 42}, [1984] = {.lex_state = 8, .external_lex_state = 42}, - [1985] = {.lex_state = 12}, - [1986] = {.lex_state = 8, .external_lex_state = 42}, - [1987] = {.lex_state = 12}, - [1988] = {.lex_state = 12}, - [1989] = {.lex_state = 2181}, - [1990] = {.lex_state = 5, .external_lex_state = 43}, - [1991] = {.lex_state = 8, .external_lex_state = 42}, - [1992] = {.lex_state = 8, .external_lex_state = 42}, - [1993] = {.lex_state = 12}, - [1994] = {.lex_state = 12}, + [1985] = {.lex_state = 8, .external_lex_state = 42}, + [1986] = {.lex_state = 12}, + [1987] = {.lex_state = 8, .external_lex_state = 42}, + [1988] = {.lex_state = 8, .external_lex_state = 42}, + [1989] = {.lex_state = 12}, + [1990] = {.lex_state = 12}, + [1991] = {.lex_state = 12}, + [1992] = {.lex_state = 12}, + [1993] = {.lex_state = 5, .external_lex_state = 39}, + [1994] = {.lex_state = 8, .external_lex_state = 42}, [1995] = {.lex_state = 8, .external_lex_state = 42}, [1996] = {.lex_state = 12}, [1997] = {.lex_state = 12}, - [1998] = {.lex_state = 8, .external_lex_state = 42}, - [1999] = {.lex_state = 5, .external_lex_state = 38}, + [1998] = {.lex_state = 12}, + [1999] = {.lex_state = 12}, [2000] = {.lex_state = 8, .external_lex_state = 42}, - [2001] = {.lex_state = 12}, - [2002] = {.lex_state = 12}, + [2001] = {.lex_state = 8, .external_lex_state = 42}, + [2002] = {.lex_state = 3, .external_lex_state = 34}, [2003] = {.lex_state = 8, .external_lex_state = 42}, - [2004] = {.lex_state = 8, .external_lex_state = 42}, + [2004] = {.lex_state = 12}, [2005] = {.lex_state = 12}, [2006] = {.lex_state = 8, .external_lex_state = 42}, - [2007] = {.lex_state = 8, .external_lex_state = 42}, - [2008] = {.lex_state = 12}, - [2009] = {.lex_state = 8, .external_lex_state = 42}, - [2010] = {.lex_state = 12}, - [2011] = {.lex_state = 8, .external_lex_state = 42}, - [2012] = {.lex_state = 5, .external_lex_state = 39}, + [2007] = {.lex_state = 12}, + [2008] = {.lex_state = 8, .external_lex_state = 42}, + [2009] = {.lex_state = 12}, + [2010] = {.lex_state = 8, .external_lex_state = 42}, + [2011] = {.lex_state = 12}, + [2012] = {.lex_state = 8, .external_lex_state = 42}, [2013] = {.lex_state = 8, .external_lex_state = 42}, [2014] = {.lex_state = 12}, [2015] = {.lex_state = 12}, - [2016] = {.lex_state = 3}, + [2016] = {.lex_state = 12}, [2017] = {.lex_state = 12}, [2018] = {.lex_state = 12}, [2019] = {.lex_state = 12}, @@ -28882,8 +28877,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2029] = {.lex_state = 12}, [2030] = {.lex_state = 12}, [2031] = {.lex_state = 12}, - [2032] = {.lex_state = 12}, - [2033] = {.lex_state = 12}, + [2032] = {.lex_state = 5, .external_lex_state = 37}, + [2033] = {.lex_state = 3}, [2034] = {.lex_state = 12}, [2035] = {.lex_state = 12}, [2036] = {.lex_state = 12}, @@ -28900,15 +28895,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2047] = {.lex_state = 12}, [2048] = {.lex_state = 12}, [2049] = {.lex_state = 12}, - [2050] = {.lex_state = 5, .external_lex_state = 37}, + [2050] = {.lex_state = 12}, [2051] = {.lex_state = 12}, [2052] = {.lex_state = 12}, [2053] = {.lex_state = 8, .external_lex_state = 44}, - [2054] = {.lex_state = 2181}, + [2054] = {.lex_state = 12}, [2055] = {.lex_state = 2181}, [2056] = {.lex_state = 2181}, [2057] = {.lex_state = 2181}, - [2058] = {.lex_state = 12}, + [2058] = {.lex_state = 2181}, [2059] = {.lex_state = 2181}, [2060] = {.lex_state = 2181}, [2061] = {.lex_state = 2181}, @@ -28925,29 +28920,29 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2072] = {.lex_state = 2181}, [2073] = {.lex_state = 2181}, [2074] = {.lex_state = 2181}, - [2075] = {.lex_state = 12}, - [2076] = {.lex_state = 8, .external_lex_state = 42}, + [2075] = {.lex_state = 2181}, + [2076] = {.lex_state = 2181}, [2077] = {.lex_state = 2181}, [2078] = {.lex_state = 2181}, - [2079] = {.lex_state = 12}, + [2079] = {.lex_state = 2181}, [2080] = {.lex_state = 2181}, - [2081] = {.lex_state = 2181}, - [2082] = {.lex_state = 12}, + [2081] = {.lex_state = 12}, + [2082] = {.lex_state = 2181}, [2083] = {.lex_state = 2181}, [2084] = {.lex_state = 2181}, [2085] = {.lex_state = 2181}, [2086] = {.lex_state = 2181}, [2087] = {.lex_state = 2181}, - [2088] = {.lex_state = 12}, + [2088] = {.lex_state = 2181}, [2089] = {.lex_state = 2181}, [2090] = {.lex_state = 2181}, - [2091] = {.lex_state = 12}, + [2091] = {.lex_state = 2181}, [2092] = {.lex_state = 2181}, - [2093] = {.lex_state = 2181}, + [2093] = {.lex_state = 12}, [2094] = {.lex_state = 2181}, [2095] = {.lex_state = 2181}, [2096] = {.lex_state = 2181}, - [2097] = {.lex_state = 12}, + [2097] = {.lex_state = 2181}, [2098] = {.lex_state = 2181}, [2099] = {.lex_state = 2181}, [2100] = {.lex_state = 2181}, @@ -28956,11 +28951,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2103] = {.lex_state = 2181}, [2104] = {.lex_state = 2181}, [2105] = {.lex_state = 2181}, - [2106] = {.lex_state = 12}, - [2107] = {.lex_state = 12}, + [2106] = {.lex_state = 2181}, + [2107] = {.lex_state = 2181}, [2108] = {.lex_state = 2181}, [2109] = {.lex_state = 2181}, - [2110] = {.lex_state = 2181}, + [2110] = {.lex_state = 12}, [2111] = {.lex_state = 2181}, [2112] = {.lex_state = 2181}, [2113] = {.lex_state = 2181}, @@ -28972,7 +28967,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2119] = {.lex_state = 2181}, [2120] = {.lex_state = 2181}, [2121] = {.lex_state = 2181}, - [2122] = {.lex_state = 2181}, + [2122] = {.lex_state = 12}, [2123] = {.lex_state = 2181}, [2124] = {.lex_state = 2181}, [2125] = {.lex_state = 2181}, @@ -28982,33 +28977,33 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2129] = {.lex_state = 2181}, [2130] = {.lex_state = 2181}, [2131] = {.lex_state = 2181}, - [2132] = {.lex_state = 2181}, - [2133] = {.lex_state = 12}, + [2132] = {.lex_state = 12}, + [2133] = {.lex_state = 2181}, [2134] = {.lex_state = 2181}, - [2135] = {.lex_state = 12}, - [2136] = {.lex_state = 2181}, + [2135] = {.lex_state = 2181}, + [2136] = {.lex_state = 12}, [2137] = {.lex_state = 2181}, - [2138] = {.lex_state = 2181}, - [2139] = {.lex_state = 2181}, + [2138] = {.lex_state = 12}, + [2139] = {.lex_state = 12}, [2140] = {.lex_state = 2181}, - [2141] = {.lex_state = 2181}, + [2141] = {.lex_state = 12}, [2142] = {.lex_state = 2181}, [2143] = {.lex_state = 2181}, - [2144] = {.lex_state = 12}, - [2145] = {.lex_state = 2181}, - [2146] = {.lex_state = 2181}, - [2147] = {.lex_state = 2181}, + [2144] = {.lex_state = 2181}, + [2145] = {.lex_state = 12}, + [2146] = {.lex_state = 8, .external_lex_state = 42}, + [2147] = {.lex_state = 12}, [2148] = {.lex_state = 2181}, [2149] = {.lex_state = 2181}, - [2150] = {.lex_state = 12}, + [2150] = {.lex_state = 2181}, [2151] = {.lex_state = 2181}, - [2152] = {.lex_state = 12}, - [2153] = {.lex_state = 8, .external_lex_state = 42}, - [2154] = {.lex_state = 2181}, + [2152] = {.lex_state = 2181}, + [2153] = {.lex_state = 2181}, + [2154] = {.lex_state = 12}, [2155] = {.lex_state = 2181}, [2156] = {.lex_state = 2181}, - [2157] = {.lex_state = 2181}, - [2158] = {.lex_state = 12}, + [2157] = {.lex_state = 12}, + [2158] = {.lex_state = 2181}, [2159] = {.lex_state = 2181}, [2160] = {.lex_state = 2181}, [2161] = {.lex_state = 2181}, @@ -29016,18 +29011,18 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2163] = {.lex_state = 2181}, [2164] = {.lex_state = 2181}, [2165] = {.lex_state = 2181}, - [2166] = {.lex_state = 2181}, + [2166] = {.lex_state = 12}, [2167] = {.lex_state = 2181}, - [2168] = {.lex_state = 12}, - [2169] = {.lex_state = 12}, - [2170] = {.lex_state = 2181}, + [2168] = {.lex_state = 2181}, + [2169] = {.lex_state = 2181}, + [2170] = {.lex_state = 12}, [2171] = {.lex_state = 2181}, [2172] = {.lex_state = 2181}, [2173] = {.lex_state = 2181}, [2174] = {.lex_state = 2181}, [2175] = {.lex_state = 2181}, [2176] = {.lex_state = 2181}, - [2177] = {.lex_state = 12}, + [2177] = {.lex_state = 2181}, [2178] = {.lex_state = 2181}, [2179] = {.lex_state = 2181}, [2180] = {.lex_state = 2181}, @@ -29035,51 +29030,51 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2182] = {.lex_state = 2181}, [2183] = {.lex_state = 2181}, [2184] = {.lex_state = 2181}, - [2185] = {.lex_state = 2181}, + [2185] = {.lex_state = 12}, [2186] = {.lex_state = 2181}, [2187] = {.lex_state = 2181}, - [2188] = {.lex_state = 2181}, + [2188] = {.lex_state = 12}, [2189] = {.lex_state = 2181}, [2190] = {.lex_state = 2181}, [2191] = {.lex_state = 2181}, [2192] = {.lex_state = 2181}, [2193] = {.lex_state = 2181}, - [2194] = {.lex_state = 12}, + [2194] = {.lex_state = 2181}, [2195] = {.lex_state = 2181}, - [2196] = {.lex_state = 2181}, + [2196] = {.lex_state = 12}, [2197] = {.lex_state = 2181}, - [2198] = {.lex_state = 2181}, + [2198] = {.lex_state = 12}, [2199] = {.lex_state = 2181}, [2200] = {.lex_state = 2181}, [2201] = {.lex_state = 2181}, [2202] = {.lex_state = 2181}, [2203] = {.lex_state = 2181}, - [2204] = {.lex_state = 2181}, - [2205] = {.lex_state = 8, .external_lex_state = 42}, + [2204] = {.lex_state = 12}, + [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}, - [2211] = {.lex_state = 12}, + [2211] = {.lex_state = 2181}, [2212] = {.lex_state = 2181}, [2213] = {.lex_state = 2181}, [2214] = {.lex_state = 12}, [2215] = {.lex_state = 2181}, - [2216] = {.lex_state = 12}, + [2216] = {.lex_state = 2181}, [2217] = {.lex_state = 2181}, [2218] = {.lex_state = 2181}, [2219] = {.lex_state = 2181}, [2220] = {.lex_state = 2181}, [2221] = {.lex_state = 2181}, [2222] = {.lex_state = 2181}, - [2223] = {.lex_state = 12}, + [2223] = {.lex_state = 2181}, [2224] = {.lex_state = 2181}, [2225] = {.lex_state = 2181}, [2226] = {.lex_state = 2181}, [2227] = {.lex_state = 2181}, [2228] = {.lex_state = 2181}, - [2229] = {.lex_state = 2181}, + [2229] = {.lex_state = 12}, [2230] = {.lex_state = 2181}, [2231] = {.lex_state = 2181}, [2232] = {.lex_state = 2181}, @@ -29098,7 +29093,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2245] = {.lex_state = 2181}, [2246] = {.lex_state = 2181}, [2247] = {.lex_state = 2181}, - [2248] = {.lex_state = 2181}, + [2248] = {.lex_state = 8, .external_lex_state = 42}, [2249] = {.lex_state = 2181}, [2250] = {.lex_state = 2181}, [2251] = {.lex_state = 2181}, @@ -29107,26 +29102,26 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2254] = {.lex_state = 2181}, [2255] = {.lex_state = 12}, [2256] = {.lex_state = 2181}, - [2257] = {.lex_state = 2181}, + [2257] = {.lex_state = 12}, [2258] = {.lex_state = 2181}, [2259] = {.lex_state = 2181}, [2260] = {.lex_state = 2181}, - [2261] = {.lex_state = 12}, - [2262] = {.lex_state = 12}, + [2261] = {.lex_state = 2181}, + [2262] = {.lex_state = 2181}, [2263] = {.lex_state = 2181}, - [2264] = {.lex_state = 2181}, + [2264] = {.lex_state = 12}, [2265] = {.lex_state = 12}, [2266] = {.lex_state = 2181}, - [2267] = {.lex_state = 12}, - [2268] = {.lex_state = 12}, + [2267] = {.lex_state = 2181}, + [2268] = {.lex_state = 2181}, [2269] = {.lex_state = 2181}, [2270] = {.lex_state = 2181}, - [2271] = {.lex_state = 2181}, - [2272] = {.lex_state = 2181}, + [2271] = {.lex_state = 12}, + [2272] = {.lex_state = 12}, [2273] = {.lex_state = 2181}, [2274] = {.lex_state = 2181}, [2275] = {.lex_state = 2181}, - [2276] = {.lex_state = 12}, + [2276] = {.lex_state = 2181}, [2277] = {.lex_state = 2181}, [2278] = {.lex_state = 2181}, [2279] = {.lex_state = 2181}, @@ -29137,38 +29132,38 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2284] = {.lex_state = 2181}, [2285] = {.lex_state = 2181}, [2286] = {.lex_state = 2181}, - [2287] = {.lex_state = 2181}, + [2287] = {.lex_state = 12}, [2288] = {.lex_state = 2181}, [2289] = {.lex_state = 2181}, [2290] = {.lex_state = 2181}, - [2291] = {.lex_state = 12}, + [2291] = {.lex_state = 2181}, [2292] = {.lex_state = 2181}, [2293] = {.lex_state = 2181}, [2294] = {.lex_state = 2181}, [2295] = {.lex_state = 2181}, - [2296] = {.lex_state = 2181}, - [2297] = {.lex_state = 2181}, + [2296] = {.lex_state = 12}, + [2297] = {.lex_state = 12}, [2298] = {.lex_state = 2181}, - [2299] = {.lex_state = 2181}, + [2299] = {.lex_state = 8, .external_lex_state = 42}, [2300] = {.lex_state = 2181}, [2301] = {.lex_state = 2181}, [2302] = {.lex_state = 2181}, [2303] = {.lex_state = 2181}, [2304] = {.lex_state = 2181}, [2305] = {.lex_state = 2181}, - [2306] = {.lex_state = 12}, + [2306] = {.lex_state = 2181}, [2307] = {.lex_state = 2181}, [2308] = {.lex_state = 2181}, [2309] = {.lex_state = 2181}, - [2310] = {.lex_state = 2181}, - [2311] = {.lex_state = 2181}, + [2310] = {.lex_state = 12}, + [2311] = {.lex_state = 12}, [2312] = {.lex_state = 2181}, [2313] = {.lex_state = 2181}, [2314] = {.lex_state = 2181}, [2315] = {.lex_state = 2181}, - [2316] = {.lex_state = 12}, + [2316] = {.lex_state = 2181}, [2317] = {.lex_state = 2181}, - [2318] = {.lex_state = 2181}, + [2318] = {.lex_state = 12}, [2319] = {.lex_state = 2181}, [2320] = {.lex_state = 2181}, [2321] = {.lex_state = 2181}, @@ -29182,152 +29177,152 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2329] = {.lex_state = 2181}, [2330] = {.lex_state = 2181}, [2331] = {.lex_state = 2181}, - [2332] = {.lex_state = 12}, + [2332] = {.lex_state = 2181}, [2333] = {.lex_state = 12}, [2334] = {.lex_state = 12}, - [2335] = {.lex_state = 17}, - [2336] = {.lex_state = 2181}, - [2337] = {.lex_state = 2181}, + [2335] = {.lex_state = 12}, + [2336] = {.lex_state = 12}, + [2337] = {.lex_state = 12}, [2338] = {.lex_state = 12}, [2339] = {.lex_state = 12}, - [2340] = {.lex_state = 2181}, + [2340] = {.lex_state = 12}, [2341] = {.lex_state = 12}, [2342] = {.lex_state = 12}, [2343] = {.lex_state = 12}, - [2344] = {.lex_state = 12}, + [2344] = {.lex_state = 2181}, [2345] = {.lex_state = 12}, [2346] = {.lex_state = 12}, [2347] = {.lex_state = 12}, - [2348] = {.lex_state = 10}, - [2349] = {.lex_state = 12}, + [2348] = {.lex_state = 12}, + [2349] = {.lex_state = 17}, [2350] = {.lex_state = 12}, [2351] = {.lex_state = 12}, - [2352] = {.lex_state = 12}, - [2353] = {.lex_state = 12}, - [2354] = {.lex_state = 12}, - [2355] = {.lex_state = 12}, + [2352] = {.lex_state = 2181}, + [2353] = {.lex_state = 2181}, + [2354] = {.lex_state = 2181}, + [2355] = {.lex_state = 2181}, [2356] = {.lex_state = 12}, [2357] = {.lex_state = 12}, [2358] = {.lex_state = 12}, - [2359] = {.lex_state = 12}, + [2359] = {.lex_state = 17}, [2360] = {.lex_state = 12}, - [2361] = {.lex_state = 12}, - [2362] = {.lex_state = 12}, - [2363] = {.lex_state = 12}, - [2364] = {.lex_state = 12}, - [2365] = {.lex_state = 12}, + [2361] = {.lex_state = 2181}, + [2362] = {.lex_state = 2181}, + [2363] = {.lex_state = 2181}, + [2364] = {.lex_state = 2181}, + [2365] = {.lex_state = 17}, [2366] = {.lex_state = 12}, - [2367] = {.lex_state = 12}, - [2368] = {.lex_state = 12}, - [2369] = {.lex_state = 12}, - [2370] = {.lex_state = 12}, + [2367] = {.lex_state = 2181}, + [2368] = {.lex_state = 2181}, + [2369] = {.lex_state = 2181}, + [2370] = {.lex_state = 2181}, [2371] = {.lex_state = 12}, [2372] = {.lex_state = 12}, - [2373] = {.lex_state = 10}, - [2374] = {.lex_state = 12}, + [2373] = {.lex_state = 12}, + [2374] = {.lex_state = 17}, [2375] = {.lex_state = 12}, - [2376] = {.lex_state = 12}, - [2377] = {.lex_state = 12}, - [2378] = {.lex_state = 12}, - [2379] = {.lex_state = 12}, + [2376] = {.lex_state = 2181}, + [2377] = {.lex_state = 2181}, + [2378] = {.lex_state = 2181}, + [2379] = {.lex_state = 2181}, [2380] = {.lex_state = 12}, [2381] = {.lex_state = 12}, [2382] = {.lex_state = 12}, - [2383] = {.lex_state = 12}, - [2384] = {.lex_state = 2181}, + [2383] = {.lex_state = 2181}, + [2384] = {.lex_state = 17}, [2385] = {.lex_state = 12}, - [2386] = {.lex_state = 17}, + [2386] = {.lex_state = 12}, [2387] = {.lex_state = 2181}, [2388] = {.lex_state = 2181}, [2389] = {.lex_state = 2181}, [2390] = {.lex_state = 2181}, - [2391] = {.lex_state = 17}, + [2391] = {.lex_state = 12}, [2392] = {.lex_state = 12}, - [2393] = {.lex_state = 2181}, - [2394] = {.lex_state = 2181}, - [2395] = {.lex_state = 2181}, + [2393] = {.lex_state = 12}, + [2394] = {.lex_state = 17}, + [2395] = {.lex_state = 10}, [2396] = {.lex_state = 2181}, - [2397] = {.lex_state = 17}, + [2397] = {.lex_state = 2181}, [2398] = {.lex_state = 2181}, [2399] = {.lex_state = 2181}, - [2400] = {.lex_state = 2181}, - [2401] = {.lex_state = 2181}, - [2402] = {.lex_state = 17}, - [2403] = {.lex_state = 2181}, - [2404] = {.lex_state = 2181}, - [2405] = {.lex_state = 2181}, - [2406] = {.lex_state = 2181}, - [2407] = {.lex_state = 17}, + [2400] = {.lex_state = 12}, + [2401] = {.lex_state = 12}, + [2402] = {.lex_state = 12}, + [2403] = {.lex_state = 12}, + [2404] = {.lex_state = 17}, + [2405] = {.lex_state = 12}, + [2406] = {.lex_state = 12}, + [2407] = {.lex_state = 2181}, [2408] = {.lex_state = 2181}, [2409] = {.lex_state = 2181}, [2410] = {.lex_state = 2181}, - [2411] = {.lex_state = 2181}, + [2411] = {.lex_state = 12}, [2412] = {.lex_state = 12}, - [2413] = {.lex_state = 17}, - [2414] = {.lex_state = 12}, - [2415] = {.lex_state = 2181}, + [2413] = {.lex_state = 12}, + [2414] = {.lex_state = 17}, + [2415] = {.lex_state = 12}, [2416] = {.lex_state = 2181}, [2417] = {.lex_state = 2181}, [2418] = {.lex_state = 2181}, - [2419] = {.lex_state = 12}, - [2420] = {.lex_state = 17}, + [2419] = {.lex_state = 2181}, + [2420] = {.lex_state = 12}, [2421] = {.lex_state = 2181}, - [2422] = {.lex_state = 2181}, - [2423] = {.lex_state = 2181}, - [2424] = {.lex_state = 2181}, - [2425] = {.lex_state = 17}, + [2422] = {.lex_state = 12}, + [2423] = {.lex_state = 17}, + [2424] = {.lex_state = 12}, + [2425] = {.lex_state = 12}, [2426] = {.lex_state = 2181}, [2427] = {.lex_state = 2181}, [2428] = {.lex_state = 2181}, [2429] = {.lex_state = 2181}, - [2430] = {.lex_state = 17}, - [2431] = {.lex_state = 2181}, - [2432] = {.lex_state = 2181}, + [2430] = {.lex_state = 12}, + [2431] = {.lex_state = 12}, + [2432] = {.lex_state = 17}, [2433] = {.lex_state = 2181}, - [2434] = {.lex_state = 2181}, - [2435] = {.lex_state = 12}, - [2436] = {.lex_state = 12}, - [2437] = {.lex_state = 17}, - [2438] = {.lex_state = 12}, - [2439] = {.lex_state = 2181}, - [2440] = {.lex_state = 2181}, - [2441] = {.lex_state = 2181}, - [2442] = {.lex_state = 2181}, - [2443] = {.lex_state = 2181}, - [2444] = {.lex_state = 17}, + [2434] = {.lex_state = 12}, + [2435] = {.lex_state = 2181}, + [2436] = {.lex_state = 2181}, + [2437] = {.lex_state = 2181}, + [2438] = {.lex_state = 2181}, + [2439] = {.lex_state = 10}, + [2440] = {.lex_state = 17}, + [2441] = {.lex_state = 12}, + [2442] = {.lex_state = 17}, + [2443] = {.lex_state = 12}, + [2444] = {.lex_state = 2181}, [2445] = {.lex_state = 2181}, [2446] = {.lex_state = 2181}, [2447] = {.lex_state = 2181}, [2448] = {.lex_state = 2181}, [2449] = {.lex_state = 2181}, [2450] = {.lex_state = 12}, - [2451] = {.lex_state = 12}, - [2452] = {.lex_state = 2181}, + [2451] = {.lex_state = 2181}, + [2452] = {.lex_state = 12}, [2453] = {.lex_state = 12}, [2454] = {.lex_state = 2181}, - [2455] = {.lex_state = 12}, - [2456] = {.lex_state = 2181}, + [2455] = {.lex_state = 2181}, + [2456] = {.lex_state = 10}, [2457] = {.lex_state = 2181}, - [2458] = {.lex_state = 12}, - [2459] = {.lex_state = 12}, + [2458] = {.lex_state = 2181}, + [2459] = {.lex_state = 2181}, [2460] = {.lex_state = 2181}, [2461] = {.lex_state = 2181}, [2462] = {.lex_state = 2181}, [2463] = {.lex_state = 2181}, - [2464] = {.lex_state = 2181}, + [2464] = {.lex_state = 12}, [2465] = {.lex_state = 2181}, - [2466] = {.lex_state = 12}, + [2466] = {.lex_state = 2181}, [2467] = {.lex_state = 2181}, - [2468] = {.lex_state = 10}, + [2468] = {.lex_state = 2181}, [2469] = {.lex_state = 2181}, [2470] = {.lex_state = 2181}, [2471] = {.lex_state = 2181}, [2472] = {.lex_state = 2181}, - [2473] = {.lex_state = 12}, + [2473] = {.lex_state = 2181}, [2474] = {.lex_state = 2181}, [2475] = {.lex_state = 2181}, - [2476] = {.lex_state = 2181}, - [2477] = {.lex_state = 2181}, + [2476] = {.lex_state = 12}, + [2477] = {.lex_state = 10}, [2478] = {.lex_state = 2181}, [2479] = {.lex_state = 2181}, [2480] = {.lex_state = 2181}, @@ -29337,27 +29332,27 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2484] = {.lex_state = 2181}, [2485] = {.lex_state = 2181}, [2486] = {.lex_state = 2181}, - [2487] = {.lex_state = 10}, + [2487] = {.lex_state = 2181}, [2488] = {.lex_state = 2181}, [2489] = {.lex_state = 2181}, [2490] = {.lex_state = 2181}, - [2491] = {.lex_state = 2181}, + [2491] = {.lex_state = 12}, [2492] = {.lex_state = 2181}, [2493] = {.lex_state = 2181}, [2494] = {.lex_state = 2181}, [2495] = {.lex_state = 2181}, - [2496] = {.lex_state = 2181}, - [2497] = {.lex_state = 2181}, + [2496] = {.lex_state = 12}, + [2497] = {.lex_state = 12}, [2498] = {.lex_state = 2181}, [2499] = {.lex_state = 2181}, - [2500] = {.lex_state = 12}, + [2500] = {.lex_state = 2181}, [2501] = {.lex_state = 2181}, [2502] = {.lex_state = 2181}, [2503] = {.lex_state = 2181}, [2504] = {.lex_state = 2181}, [2505] = {.lex_state = 2181}, [2506] = {.lex_state = 2181}, - [2507] = {.lex_state = 2181}, + [2507] = {.lex_state = 12}, [2508] = {.lex_state = 2181}, [2509] = {.lex_state = 2181}, [2510] = {.lex_state = 2181}, @@ -29369,75 +29364,75 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2516] = {.lex_state = 2181}, [2517] = {.lex_state = 2181}, [2518] = {.lex_state = 2181}, - [2519] = {.lex_state = 2181}, - [2520] = {.lex_state = 12}, - [2521] = {.lex_state = 3, .external_lex_state = 45}, - [2522] = {.lex_state = 3, .external_lex_state = 45}, - [2523] = {.lex_state = 3, .external_lex_state = 45}, - [2524] = {.lex_state = 3, .external_lex_state = 45}, - [2525] = {.lex_state = 3, .external_lex_state = 45}, + [2519] = {.lex_state = 3, .external_lex_state = 45}, + [2520] = {.lex_state = 2181}, + [2521] = {.lex_state = 3, .external_lex_state = 46}, + [2522] = {.lex_state = 6}, + [2523] = {.lex_state = 3, .external_lex_state = 46}, + [2524] = {.lex_state = 3, .external_lex_state = 47}, + [2525] = {.lex_state = 3, .external_lex_state = 47}, [2526] = {.lex_state = 3, .external_lex_state = 46}, - [2527] = {.lex_state = 6}, + [2527] = {.lex_state = 3, .external_lex_state = 47}, [2528] = {.lex_state = 3, .external_lex_state = 46}, - [2529] = {.lex_state = 6}, + [2529] = {.lex_state = 3, .external_lex_state = 47}, [2530] = {.lex_state = 3, .external_lex_state = 46}, - [2531] = {.lex_state = 3, .external_lex_state = 45}, + [2531] = {.lex_state = 3, .external_lex_state = 47}, [2532] = {.lex_state = 3, .external_lex_state = 46}, - [2533] = {.lex_state = 3, .external_lex_state = 46}, - [2534] = {.lex_state = 3, .external_lex_state = 45}, - [2535] = {.lex_state = 6}, - [2536] = {.lex_state = 3, .external_lex_state = 45}, - [2537] = {.lex_state = 3, .external_lex_state = 45}, + [2533] = {.lex_state = 3, .external_lex_state = 47}, + [2534] = {.lex_state = 3, .external_lex_state = 46}, + [2535] = {.lex_state = 3, .external_lex_state = 47}, + [2536] = {.lex_state = 3, .external_lex_state = 47}, + [2537] = {.lex_state = 3, .external_lex_state = 46}, [2538] = {.lex_state = 3, .external_lex_state = 46}, - [2539] = {.lex_state = 3, .external_lex_state = 46}, - [2540] = {.lex_state = 3, .external_lex_state = 45}, - [2541] = {.lex_state = 3, .external_lex_state = 46}, + [2539] = {.lex_state = 3, .external_lex_state = 47}, + [2540] = {.lex_state = 3, .external_lex_state = 47}, + [2541] = {.lex_state = 3, .external_lex_state = 47}, [2542] = {.lex_state = 3, .external_lex_state = 46}, [2543] = {.lex_state = 6}, - [2544] = {.lex_state = 6}, - [2545] = {.lex_state = 3, .external_lex_state = 45}, - [2546] = {.lex_state = 3, .external_lex_state = 47}, - [2547] = {.lex_state = 3, .external_lex_state = 45}, - [2548] = {.lex_state = 3, .external_lex_state = 46}, + [2544] = {.lex_state = 3, .external_lex_state = 47}, + [2545] = {.lex_state = 3, .external_lex_state = 46}, + [2546] = {.lex_state = 3, .external_lex_state = 46}, + [2547] = {.lex_state = 3, .external_lex_state = 47}, + [2548] = {.lex_state = 3, .external_lex_state = 47}, [2549] = {.lex_state = 3, .external_lex_state = 46}, [2550] = {.lex_state = 3, .external_lex_state = 46}, - [2551] = {.lex_state = 3, .external_lex_state = 45}, - [2552] = {.lex_state = 3, .external_lex_state = 46}, - [2553] = {.lex_state = 3, .external_lex_state = 45}, - [2554] = {.lex_state = 3, .external_lex_state = 45}, - [2555] = {.lex_state = 3, .external_lex_state = 46}, - [2556] = {.lex_state = 3, .external_lex_state = 45}, - [2557] = {.lex_state = 6}, - [2558] = {.lex_state = 3, .external_lex_state = 45}, - [2559] = {.lex_state = 3, .external_lex_state = 46}, - [2560] = {.lex_state = 6}, - [2561] = {.lex_state = 3, .external_lex_state = 46}, + [2551] = {.lex_state = 3, .external_lex_state = 47}, + [2552] = {.lex_state = 3, .external_lex_state = 48}, + [2553] = {.lex_state = 2181}, + [2554] = {.lex_state = 6}, + [2555] = {.lex_state = 6}, + [2556] = {.lex_state = 3, .external_lex_state = 46}, + [2557] = {.lex_state = 12}, + [2558] = {.lex_state = 3, .external_lex_state = 46}, + [2559] = {.lex_state = 6}, + [2560] = {.lex_state = 2181}, + [2561] = {.lex_state = 6}, [2562] = {.lex_state = 3, .external_lex_state = 46}, - [2563] = {.lex_state = 2181}, - [2564] = {.lex_state = 6}, - [2565] = {.lex_state = 6}, - [2566] = {.lex_state = 3, .external_lex_state = 45}, - [2567] = {.lex_state = 3, .external_lex_state = 46}, - [2568] = {.lex_state = 3, .external_lex_state = 45}, + [2563] = {.lex_state = 3, .external_lex_state = 47}, + [2564] = {.lex_state = 3, .external_lex_state = 47}, + [2565] = {.lex_state = 2181}, + [2566] = {.lex_state = 3, .external_lex_state = 46}, + [2567] = {.lex_state = 3, .external_lex_state = 47}, + [2568] = {.lex_state = 3, .external_lex_state = 47}, [2569] = {.lex_state = 6}, - [2570] = {.lex_state = 6}, - [2571] = {.lex_state = 3, .external_lex_state = 45}, - [2572] = {.lex_state = 3, .external_lex_state = 45}, + [2570] = {.lex_state = 3, .external_lex_state = 47}, + [2571] = {.lex_state = 6}, + [2572] = {.lex_state = 3, .external_lex_state = 46}, [2573] = {.lex_state = 3, .external_lex_state = 46}, - [2574] = {.lex_state = 2181}, - [2575] = {.lex_state = 3, .external_lex_state = 45}, - [2576] = {.lex_state = 3, .external_lex_state = 46}, - [2577] = {.lex_state = 3, .external_lex_state = 48}, - [2578] = {.lex_state = 6}, - [2579] = {.lex_state = 3, .external_lex_state = 45}, - [2580] = {.lex_state = 3, .external_lex_state = 45}, - [2581] = {.lex_state = 3, .external_lex_state = 46}, - [2582] = {.lex_state = 3, .external_lex_state = 46}, - [2583] = {.lex_state = 3, .external_lex_state = 46}, + [2574] = {.lex_state = 3, .external_lex_state = 47}, + [2575] = {.lex_state = 3, .external_lex_state = 46}, + [2576] = {.lex_state = 3, .external_lex_state = 47}, + [2577] = {.lex_state = 6}, + [2578] = {.lex_state = 2181}, + [2579] = {.lex_state = 3, .external_lex_state = 46}, + [2580] = {.lex_state = 6}, + [2581] = {.lex_state = 3, .external_lex_state = 47}, + [2582] = {.lex_state = 3, .external_lex_state = 47}, + [2583] = {.lex_state = 3, .external_lex_state = 47}, [2584] = {.lex_state = 3, .external_lex_state = 46}, - [2585] = {.lex_state = 3, .external_lex_state = 46}, - [2586] = {.lex_state = 2181}, - [2587] = {.lex_state = 2181}, + [2585] = {.lex_state = 3, .external_lex_state = 47}, + [2586] = {.lex_state = 3, .external_lex_state = 46}, + [2587] = {.lex_state = 6}, [2588] = {.lex_state = 2181}, [2589] = {.lex_state = 2181}, [2590] = {.lex_state = 2181}, @@ -29459,153 +29454,153 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2606] = {.lex_state = 2181}, [2607] = {.lex_state = 2181}, [2608] = {.lex_state = 2181}, - [2609] = {.lex_state = 3, .external_lex_state = 46}, - [2610] = {.lex_state = 6}, - [2611] = {.lex_state = 3}, - [2612] = {.lex_state = 0, .external_lex_state = 49}, + [2609] = {.lex_state = 6}, + [2610] = {.lex_state = 2181}, + [2611] = {.lex_state = 6}, + [2612] = {.lex_state = 2181}, [2613] = {.lex_state = 6}, - [2614] = {.lex_state = 2181}, - [2615] = {.lex_state = 6}, + [2614] = {.lex_state = 3, .external_lex_state = 46}, + [2615] = {.lex_state = 2181}, [2616] = {.lex_state = 6}, [2617] = {.lex_state = 6}, [2618] = {.lex_state = 6}, [2619] = {.lex_state = 6}, [2620] = {.lex_state = 6}, [2621] = {.lex_state = 2181}, - [2622] = {.lex_state = 2181}, - [2623] = {.lex_state = 2181}, + [2622] = {.lex_state = 6}, + [2623] = {.lex_state = 6}, [2624] = {.lex_state = 6}, - [2625] = {.lex_state = 2181}, + [2625] = {.lex_state = 6}, [2626] = {.lex_state = 6}, - [2627] = {.lex_state = 2181}, - [2628] = {.lex_state = 2181}, + [2627] = {.lex_state = 6}, + [2628] = {.lex_state = 6}, [2629] = {.lex_state = 6}, - [2630] = {.lex_state = 2181}, + [2630] = {.lex_state = 3}, [2631] = {.lex_state = 6}, - [2632] = {.lex_state = 6}, - [2633] = {.lex_state = 3, .external_lex_state = 46}, + [2632] = {.lex_state = 2181}, + [2633] = {.lex_state = 6}, [2634] = {.lex_state = 6}, [2635] = {.lex_state = 6}, [2636] = {.lex_state = 6}, - [2637] = {.lex_state = 2181}, + [2637] = {.lex_state = 6}, [2638] = {.lex_state = 6}, [2639] = {.lex_state = 6}, [2640] = {.lex_state = 6}, - [2641] = {.lex_state = 6}, + [2641] = {.lex_state = 2181}, [2642] = {.lex_state = 6}, - [2643] = {.lex_state = 6}, - [2644] = {.lex_state = 6}, - [2645] = {.lex_state = 6}, + [2643] = {.lex_state = 2181}, + [2644] = {.lex_state = 3, .external_lex_state = 47}, + [2645] = {.lex_state = 0, .external_lex_state = 49}, [2646] = {.lex_state = 2181}, - [2647] = {.lex_state = 3, .external_lex_state = 45}, - [2648] = {.lex_state = 6}, - [2649] = {.lex_state = 3}, - [2650] = {.lex_state = 0}, + [2647] = {.lex_state = 2181}, + [2648] = {.lex_state = 2181}, + [2649] = {.lex_state = 0}, + [2650] = {.lex_state = 2175}, [2651] = {.lex_state = 2181}, - [2652] = {.lex_state = 0}, + [2652] = {.lex_state = 2178}, [2653] = {.lex_state = 2175}, [2654] = {.lex_state = 2175}, - [2655] = {.lex_state = 2175}, - [2656] = {.lex_state = 2178}, - [2657] = {.lex_state = 2178}, + [2655] = {.lex_state = 2181}, + [2656] = {.lex_state = 2181}, + [2657] = {.lex_state = 0}, [2658] = {.lex_state = 2181}, - [2659] = {.lex_state = 2175}, - [2660] = {.lex_state = 2181}, - [2661] = {.lex_state = 2181}, + [2659] = {.lex_state = 0}, + [2660] = {.lex_state = 0}, + [2661] = {.lex_state = 0}, [2662] = {.lex_state = 2175}, - [2663] = {.lex_state = 0}, - [2664] = {.lex_state = 2181}, - [2665] = {.lex_state = 0}, - [2666] = {.lex_state = 2181}, + [2663] = {.lex_state = 3}, + [2664] = {.lex_state = 2178}, + [2665] = {.lex_state = 2178}, + [2666] = {.lex_state = 0}, [2667] = {.lex_state = 2175}, - [2668] = {.lex_state = 2175}, + [2668] = {.lex_state = 0, .external_lex_state = 50}, [2669] = {.lex_state = 2181}, - [2670] = {.lex_state = 2175}, - [2671] = {.lex_state = 0}, - [2672] = {.lex_state = 2178}, - [2673] = {.lex_state = 2178}, - [2674] = {.lex_state = 0}, - [2675] = {.lex_state = 0}, - [2676] = {.lex_state = 2175}, + [2670] = {.lex_state = 0, .external_lex_state = 50}, + [2671] = {.lex_state = 2175}, + [2672] = {.lex_state = 2181}, + [2673] = {.lex_state = 0}, + [2674] = {.lex_state = 2175}, + [2675] = {.lex_state = 2175}, + [2676] = {.lex_state = 0}, [2677] = {.lex_state = 2181}, - [2678] = {.lex_state = 0}, - [2679] = {.lex_state = 2175}, - [2680] = {.lex_state = 0}, + [2678] = {.lex_state = 2181}, + [2679] = {.lex_state = 2178}, + [2680] = {.lex_state = 2178}, [2681] = {.lex_state = 0}, - [2682] = {.lex_state = 0}, - [2683] = {.lex_state = 0}, + [2682] = {.lex_state = 2178}, + [2683] = {.lex_state = 2178}, [2684] = {.lex_state = 0}, - [2685] = {.lex_state = 2181}, - [2686] = {.lex_state = 0}, - [2687] = {.lex_state = 0}, - [2688] = {.lex_state = 2178}, - [2689] = {.lex_state = 2178}, - [2690] = {.lex_state = 0}, - [2691] = {.lex_state = 2175}, - [2692] = {.lex_state = 2178}, + [2685] = {.lex_state = 2175}, + [2686] = {.lex_state = 2175}, + [2687] = {.lex_state = 2181}, + [2688] = {.lex_state = 2181}, + [2689] = {.lex_state = 2181}, + [2690] = {.lex_state = 2181}, + [2691] = {.lex_state = 0}, + [2692] = {.lex_state = 0}, [2693] = {.lex_state = 2181}, - [2694] = {.lex_state = 2178}, + [2694] = {.lex_state = 0}, [2695] = {.lex_state = 0}, - [2696] = {.lex_state = 2175}, - [2697] = {.lex_state = 0}, - [2698] = {.lex_state = 2181}, - [2699] = {.lex_state = 2175}, - [2700] = {.lex_state = 0}, - [2701] = {.lex_state = 0}, + [2696] = {.lex_state = 0}, + [2697] = {.lex_state = 0, .external_lex_state = 50}, + [2698] = {.lex_state = 0}, + [2699] = {.lex_state = 0}, + [2700] = {.lex_state = 2178}, + [2701] = {.lex_state = 2178}, [2702] = {.lex_state = 0}, [2703] = {.lex_state = 0}, - [2704] = {.lex_state = 2178}, - [2705] = {.lex_state = 2178}, + [2704] = {.lex_state = 0}, + [2705] = {.lex_state = 2181}, [2706] = {.lex_state = 2175}, - [2707] = {.lex_state = 2175}, + [2707] = {.lex_state = 0, .external_lex_state = 50}, [2708] = {.lex_state = 0}, - [2709] = {.lex_state = 2181}, + [2709] = {.lex_state = 0}, [2710] = {.lex_state = 0}, - [2711] = {.lex_state = 0}, + [2711] = {.lex_state = 2175}, [2712] = {.lex_state = 0}, - [2713] = {.lex_state = 0, .external_lex_state = 50}, - [2714] = {.lex_state = 2178}, - [2715] = {.lex_state = 2178}, - [2716] = {.lex_state = 0}, + [2713] = {.lex_state = 0}, + [2714] = {.lex_state = 0}, + [2715] = {.lex_state = 0}, + [2716] = {.lex_state = 2175}, [2717] = {.lex_state = 0}, - [2718] = {.lex_state = 2181}, - [2719] = {.lex_state = 2181}, + [2718] = {.lex_state = 2178}, + [2719] = {.lex_state = 2178}, [2720] = {.lex_state = 2178}, [2721] = {.lex_state = 2178}, - [2722] = {.lex_state = 2175}, - [2723] = {.lex_state = 2175}, - [2724] = {.lex_state = 2178}, - [2725] = {.lex_state = 2181}, + [2722] = {.lex_state = 0}, + [2723] = {.lex_state = 2181}, + [2724] = {.lex_state = 0}, + [2725] = {.lex_state = 0}, [2726] = {.lex_state = 0}, - [2727] = {.lex_state = 2181}, - [2728] = {.lex_state = 0}, - [2729] = {.lex_state = 0, .external_lex_state = 50}, - [2730] = {.lex_state = 0}, + [2727] = {.lex_state = 0}, + [2728] = {.lex_state = 2175}, + [2729] = {.lex_state = 2181}, + [2730] = {.lex_state = 2175}, [2731] = {.lex_state = 0}, - [2732] = {.lex_state = 2181}, - [2733] = {.lex_state = 2181}, - [2734] = {.lex_state = 2178}, + [2732] = {.lex_state = 2175}, + [2733] = {.lex_state = 0}, + [2734] = {.lex_state = 0}, [2735] = {.lex_state = 2178}, [2736] = {.lex_state = 2178}, [2737] = {.lex_state = 2178}, - [2738] = {.lex_state = 2181}, - [2739] = {.lex_state = 0}, + [2738] = {.lex_state = 2175}, + [2739] = {.lex_state = 2175}, [2740] = {.lex_state = 2181}, [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 = 0}, - [2749] = {.lex_state = 0}, + [2742] = {.lex_state = 2181}, + [2743] = {.lex_state = 0}, + [2744] = {.lex_state = 2175}, + [2745] = {.lex_state = 2181}, + [2746] = {.lex_state = 2175}, + [2747] = {.lex_state = 2181}, + [2748] = {.lex_state = 2178}, + [2749] = {.lex_state = 2181}, [2750] = {.lex_state = 0}, [2751] = {.lex_state = 0}, [2752] = {.lex_state = 0}, [2753] = {.lex_state = 0}, [2754] = {.lex_state = 2178}, - [2755] = {.lex_state = 2178}, + [2755] = {.lex_state = 2175}, [2756] = {.lex_state = 3}, [2757] = {.lex_state = 3}, [2758] = {.lex_state = 3}, @@ -29619,7 +29614,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2766] = {.lex_state = 3}, [2767] = {.lex_state = 3}, [2768] = {.lex_state = 3}, - [2769] = {.lex_state = 0, .external_lex_state = 50}, + [2769] = {.lex_state = 3}, [2770] = {.lex_state = 3}, [2771] = {.lex_state = 3}, [2772] = {.lex_state = 3}, @@ -29629,30 +29624,30 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2776] = {.lex_state = 3}, [2777] = {.lex_state = 3}, [2778] = {.lex_state = 3}, - [2779] = {.lex_state = 0}, - [2780] = {.lex_state = 2175}, - [2781] = {.lex_state = 2175}, + [2779] = {.lex_state = 3}, + [2780] = {.lex_state = 2178}, + [2781] = {.lex_state = 2178}, [2782] = {.lex_state = 2181}, [2783] = {.lex_state = 2175}, [2784] = {.lex_state = 2175}, - [2785] = {.lex_state = 3}, - [2786] = {.lex_state = 2178}, - [2787] = {.lex_state = 0}, + [2785] = {.lex_state = 2181}, + [2786] = {.lex_state = 0}, + [2787] = {.lex_state = 2178}, [2788] = {.lex_state = 0}, - [2789] = {.lex_state = 0}, + [2789] = {.lex_state = 2175}, [2790] = {.lex_state = 0}, [2791] = {.lex_state = 0}, - [2792] = {.lex_state = 0}, - [2793] = {.lex_state = 2178}, - [2794] = {.lex_state = 2178}, - [2795] = {.lex_state = 2175}, - [2796] = {.lex_state = 2175}, + [2792] = {.lex_state = 2181}, + [2793] = {.lex_state = 0}, + [2794] = {.lex_state = 0}, + [2795] = {.lex_state = 2178}, + [2796] = {.lex_state = 2181}, [2797] = {.lex_state = 0}, - [2798] = {.lex_state = 2181}, - [2799] = {.lex_state = 0}, - [2800] = {.lex_state = 3}, - [2801] = {.lex_state = 2181}, - [2802] = {.lex_state = 0, .external_lex_state = 50}, + [2798] = {.lex_state = 2178}, + [2799] = {.lex_state = 2178}, + [2800] = {.lex_state = 0}, + [2801] = {.lex_state = 0}, + [2802] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -29754,7 +29749,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_close_underscore] = ACTIONS(1), }, [STATE(1)] = { - [sym_inline] = STATE(2792), + [sym_inline] = STATE(2681), + [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(598), + [sym__link_text_non_empty] = STATE(675), + [sym_inline_link] = STATE(826), + [sym_image] = STATE(469), + [sym__image_inline_link] = STATE(1449), + [sym__image_description] = STATE(2655), + [sym__image_description_non_empty] = STATE(2655), + [sym_hard_line_break] = STATE(469), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1453), + [sym__inline_base] = STATE(826), + [sym__text_base] = STATE(469), + [sym__inline_element] = STATE(826), + [aux_sym__inline] = STATE(17), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(826), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(826), + [aux_sym__inline_base_repeat1] = STATE(469), + [sym__backslash_escape] = ACTIONS(3), + [sym_entity_reference] = ACTIONS(5), + [sym_numeric_character_reference] = ACTIONS(5), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(9), + [anon_sym_BANG] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_DOLLAR] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_PLUS] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_EQ] = ACTIONS(9), + [anon_sym_QMARK] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_PIPE] = ACTIONS(9), + [anon_sym_TILDE] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(9), + [sym__newline_token] = ACTIONS(19), + [aux_sym_insert_token1] = ACTIONS(21), + [aux_sym_delete_token1] = ACTIONS(23), + [aux_sym_highlight_token1] = ACTIONS(25), + [aux_sym_edit_comment_token1] = ACTIONS(27), + [anon_sym_CARET_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_CARET] = ACTIONS(31), + [sym_uri_autolink] = ACTIONS(5), + [sym_email_autolink] = ACTIONS(5), + [sym__whitespace_ge_2] = ACTIONS(33), + [aux_sym__whitespace_token1] = ACTIONS(35), + [sym__word_no_digit] = ACTIONS(37), + [sym__digits] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym__code_span_start] = ACTIONS(41), + [sym__emphasis_open_star] = ACTIONS(43), + [sym__emphasis_open_underscore] = ACTIONS(45), + [sym__last_token_whitespace] = ACTIONS(47), + [sym__strikeout_open] = ACTIONS(49), + [sym__latex_span_start] = ACTIONS(51), + [sym__single_quote_open] = ACTIONS(53), + [sym__double_quote_open] = ACTIONS(55), + [sym__superscript_open] = ACTIONS(57), + [sym__subscript_open] = ACTIONS(59), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(61), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(63), + [sym__cite_author_in_text] = ACTIONS(65), + [sym__cite_suppress_author] = ACTIONS(67), + [sym__shortcode_open_escaped] = ACTIONS(69), + [sym__shortcode_open] = ACTIONS(71), + [sym__unclosed_span] = ACTIONS(5), + [sym__strong_emphasis_open_star] = ACTIONS(73), + [sym__strong_emphasis_open_underscore] = ACTIONS(75), + }, + [STATE(2)] = { [sym_backslash_escape] = STATE(458), [sym_commonmark_attribute] = STATE(458), [sym_code_span] = STATE(458), @@ -29772,26 +29871,1599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(458), [sym_shortcode] = STATE(458), [sym_note_reference] = STATE(458), - [sym__link_text] = STATE(678), - [sym__link_text_non_empty] = STATE(562), - [sym_inline_link] = STATE(1543), + [sym__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(35), [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1434), - [sym__image_description] = STATE(2651), - [sym__image_description_non_empty] = STATE(2651), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(91), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__last_token_punctuation] = ACTIONS(123), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(3)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(376), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(376), + [sym__text_base] = STATE(458), + [sym__inline_element] = 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_insert_repeat1] = STATE(376), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(153), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__last_token_punctuation] = ACTIONS(155), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(4)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(80), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(800), - [sym__word] = STATE(800), - [sym__soft_line_break] = STATE(1530), - [sym__inline_base] = STATE(1543), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(80), [sym__text_base] = STATE(458), - [sym__inline_element] = STATE(1543), - [aux_sym__inline] = STATE(143), - [sym__emphasis_star] = STATE(1543), - [sym__strong_emphasis_star] = STATE(1543), - [sym__emphasis_underscore] = STATE(1543), - [sym__strong_emphasis_underscore] = STATE(1543), + [sym__inline_element] = STATE(80), + [sym__emphasis_star] = STATE(80), + [sym__strong_emphasis_star] = STATE(80), + [sym__emphasis_underscore] = STATE(80), + [sym__strong_emphasis_underscore] = STATE(80), + [aux_sym_insert_repeat1] = STATE(80), [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__last_token_punctuation] = ACTIONS(159), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(5)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(110), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(110), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(110), + [sym__emphasis_star] = STATE(110), + [sym__strong_emphasis_star] = STATE(110), + [sym__emphasis_underscore] = STATE(110), + [sym__strong_emphasis_underscore] = STATE(110), + [aux_sym_insert_repeat1] = STATE(110), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__last_token_punctuation] = ACTIONS(163), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(6)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(140), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(140), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(140), + [sym__emphasis_star] = STATE(140), + [sym__strong_emphasis_star] = STATE(140), + [sym__emphasis_underscore] = STATE(140), + [sym__strong_emphasis_underscore] = STATE(140), + [aux_sym_insert_repeat1] = STATE(140), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__last_token_punctuation] = ACTIONS(167), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(7)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(169), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(169), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(169), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__last_token_punctuation] = ACTIONS(171), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(8)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(198), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(198), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(173), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__last_token_punctuation] = ACTIONS(175), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(9)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(227), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(227), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(177), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__last_token_punctuation] = ACTIONS(179), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(10)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(257), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(257), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(257), + [sym__emphasis_star] = STATE(257), + [sym__strong_emphasis_star] = STATE(257), + [sym__emphasis_underscore] = STATE(257), + [sym__strong_emphasis_underscore] = STATE(257), + [aux_sym_insert_repeat1] = STATE(257), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(181), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__last_token_punctuation] = ACTIONS(183), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(11)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(286), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(286), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(286), + [sym__emphasis_star] = STATE(286), + [sym__strong_emphasis_star] = STATE(286), + [sym__emphasis_underscore] = STATE(286), + [sym__strong_emphasis_underscore] = STATE(286), + [aux_sym_insert_repeat1] = STATE(286), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__last_token_punctuation] = ACTIONS(187), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(12)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(316), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(316), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(316), + [sym__emphasis_star] = STATE(316), + [sym__strong_emphasis_star] = STATE(316), + [sym__emphasis_underscore] = STATE(316), + [sym__strong_emphasis_underscore] = STATE(316), + [aux_sym_insert_repeat1] = STATE(316), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__last_token_punctuation] = ACTIONS(191), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(13)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(346), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(346), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(346), + [sym__emphasis_star] = STATE(346), + [sym__strong_emphasis_star] = STATE(346), + [sym__emphasis_underscore] = STATE(346), + [sym__strong_emphasis_underscore] = STATE(346), + [aux_sym_insert_repeat1] = STATE(346), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(193), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__last_token_punctuation] = ACTIONS(195), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(14)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(157), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(157), + [sym__text_base] = STATE(459), + [sym__inline_element] = 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_insert_repeat1] = STATE(157), + [aux_sym__inline_base_repeat1] = STATE(459), + [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__single_quote_close] = 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(15)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(33), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(33), + [sym__text_base] = STATE(461), + [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(461), + [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(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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(19), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(19), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(19), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__last_token_punctuation] = ACTIONS(389), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(17)] = { + [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(598), + [sym__link_text_non_empty] = STATE(675), + [sym_inline_link] = STATE(826), + [sym_image] = STATE(469), + [sym__image_inline_link] = STATE(1449), + [sym__image_description] = STATE(2655), + [sym__image_description_non_empty] = STATE(2655), + [sym_hard_line_break] = STATE(469), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1453), + [sym__inline_base] = STATE(826), + [sym__text_base] = STATE(469), + [sym__inline_element] = STATE(826), + [aux_sym__inline] = STATE(36), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(826), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(826), + [aux_sym__inline_base_repeat1] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(419), [sym__backslash_escape] = ACTIONS(3), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), @@ -29804,7 +31476,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(9), [anon_sym_AMP] = ACTIONS(7), [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(9), [anon_sym_PLUS] = ACTIONS(9), [anon_sym_COMMA] = ACTIONS(9), [anon_sym_DASH] = ACTIONS(7), @@ -29842,7 +31513,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(41), [sym__emphasis_open_star] = ACTIONS(43), [sym__emphasis_open_underscore] = ACTIONS(45), - [sym__last_token_whitespace] = ACTIONS(47), [sym__strikeout_open] = ACTIONS(49), [sym__latex_span_start] = ACTIONS(51), [sym__single_quote_open] = ACTIONS(53), @@ -29859,855 +31529,735 @@ 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(2)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(262), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(262), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(262), - [aux_sym__inline_no_star] = STATE(262), - [sym__emphasis_star] = STATE(262), - [sym__strong_emphasis_star] = STATE(262), - [sym__emphasis_underscore] = STATE(262), - [sym__strong_emphasis_underscore] = STATE(262), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(77), - [sym_entity_reference] = ACTIONS(80), - [sym_numeric_character_reference] = ACTIONS(80), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(86), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(86), - [anon_sym_POUND] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_PERCENT] = ACTIONS(86), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(86), - [anon_sym_PLUS] = ACTIONS(86), - [anon_sym_COMMA] = ACTIONS(86), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(83), - [anon_sym_SLASH] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(86), - [anon_sym_SEMI] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(86), - [anon_sym_QMARK] = ACTIONS(86), - [anon_sym_LBRACK] = ACTIONS(92), - [anon_sym_BSLASH] = ACTIONS(95), - [anon_sym_CARET] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(86), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_PIPE] = ACTIONS(86), - [anon_sym_TILDE] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(86), - [sym__newline_token] = ACTIONS(101), - [aux_sym_insert_token1] = ACTIONS(104), - [aux_sym_delete_token1] = ACTIONS(107), - [aux_sym_highlight_token1] = ACTIONS(110), - [aux_sym_edit_comment_token1] = ACTIONS(113), - [anon_sym_CARET_LBRACK] = ACTIONS(116), - [anon_sym_LBRACK_CARET] = ACTIONS(119), - [sym_uri_autolink] = ACTIONS(80), - [sym_email_autolink] = ACTIONS(80), - [sym__whitespace_ge_2] = ACTIONS(122), - [aux_sym__whitespace_token1] = ACTIONS(125), - [sym__word_no_digit] = ACTIONS(128), - [sym__digits] = ACTIONS(128), - [anon_sym_DASH_DASH] = ACTIONS(131), - [anon_sym_DASH_DASH_DASH] = ACTIONS(128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(128), - [sym__code_span_start] = ACTIONS(134), - [sym__emphasis_open_star] = ACTIONS(137), - [sym__emphasis_open_underscore] = ACTIONS(140), - [sym__last_token_punctuation] = ACTIONS(143), - [sym__strikeout_open] = ACTIONS(145), - [sym__latex_span_start] = ACTIONS(148), - [sym__single_quote_open] = ACTIONS(151), - [sym__double_quote_open] = ACTIONS(154), - [sym__superscript_open] = ACTIONS(157), - [sym__subscript_open] = ACTIONS(160), - [sym__subscript_close] = ACTIONS(163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(165), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(168), - [sym__cite_author_in_text] = ACTIONS(171), - [sym__cite_suppress_author] = ACTIONS(174), - [sym__shortcode_open_escaped] = ACTIONS(177), - [sym__shortcode_open] = ACTIONS(180), - [sym__unclosed_span] = ACTIONS(80), - [sym__strong_emphasis_open_star] = ACTIONS(183), - [sym__strong_emphasis_open_underscore] = ACTIONS(186), - }, - [STATE(3)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(35), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(35), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(35), - [aux_sym__inline_no_underscore] = 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__inline_base_repeat1] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(163), - [sym__backslash_escape] = ACTIONS(189), - [sym_entity_reference] = ACTIONS(192), - [sym_numeric_character_reference] = ACTIONS(192), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(198), - [anon_sym_POUND] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_PERCENT] = ACTIONS(198), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(198), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_COMMA] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_COLON] = ACTIONS(198), - [anon_sym_SEMI] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_QMARK] = ACTIONS(198), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(198), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_RPAREN] = ACTIONS(198), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(216), - [aux_sym_delete_token1] = ACTIONS(219), - [aux_sym_highlight_token1] = ACTIONS(222), - [aux_sym_edit_comment_token1] = ACTIONS(225), - [anon_sym_CARET_LBRACK] = ACTIONS(228), - [anon_sym_LBRACK_CARET] = ACTIONS(231), - [sym_uri_autolink] = ACTIONS(192), - [sym_email_autolink] = ACTIONS(192), - [sym__whitespace_ge_2] = ACTIONS(234), - [aux_sym__whitespace_token1] = ACTIONS(237), - [sym__word_no_digit] = ACTIONS(240), - [sym__digits] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_DASH_DASH_DASH] = ACTIONS(240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(240), - [sym__code_span_start] = ACTIONS(246), - [sym__emphasis_open_star] = ACTIONS(249), - [sym__emphasis_open_underscore] = ACTIONS(252), - [sym__last_token_punctuation] = ACTIONS(255), - [sym__strikeout_open] = ACTIONS(257), - [sym__latex_span_start] = ACTIONS(260), - [sym__single_quote_open] = ACTIONS(263), - [sym__double_quote_open] = ACTIONS(266), - [sym__superscript_open] = ACTIONS(269), - [sym__subscript_open] = ACTIONS(272), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(278), - [sym__cite_author_in_text] = ACTIONS(281), - [sym__cite_suppress_author] = ACTIONS(284), - [sym__shortcode_open_escaped] = ACTIONS(287), - [sym__shortcode_open] = ACTIONS(290), - [sym__unclosed_span] = ACTIONS(192), - [sym__strong_emphasis_open_star] = ACTIONS(293), - [sym__strong_emphasis_open_underscore] = ACTIONS(296), + [STATE(18)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(465), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, - [STATE(4)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(88), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(88), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(88), - [aux_sym__inline_no_underscore] = STATE(88), - [sym__emphasis_star] = STATE(88), - [sym__strong_emphasis_star] = STATE(88), - [sym__emphasis_underscore] = STATE(88), - [sym__strong_emphasis_underscore] = STATE(88), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(299), - [sym_entity_reference] = ACTIONS(302), - [sym_numeric_character_reference] = ACTIONS(302), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(308), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(308), - [anon_sym_POUND] = ACTIONS(308), - [anon_sym_DOLLAR] = ACTIONS(308), - [anon_sym_PERCENT] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(305), - [anon_sym_SQUOTE] = ACTIONS(308), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_COMMA] = ACTIONS(308), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_SLASH] = ACTIONS(308), - [anon_sym_COLON] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(308), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(305), - [anon_sym_BQUOTE] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(308), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_RPAREN] = ACTIONS(308), - [sym__newline_token] = ACTIONS(323), - [aux_sym_insert_token1] = ACTIONS(326), - [aux_sym_delete_token1] = ACTIONS(329), - [aux_sym_highlight_token1] = ACTIONS(332), - [aux_sym_edit_comment_token1] = ACTIONS(335), - [anon_sym_CARET_LBRACK] = ACTIONS(338), - [anon_sym_LBRACK_CARET] = ACTIONS(341), - [sym_uri_autolink] = ACTIONS(302), - [sym_email_autolink] = ACTIONS(302), - [sym__whitespace_ge_2] = ACTIONS(344), - [aux_sym__whitespace_token1] = ACTIONS(347), - [sym__word_no_digit] = ACTIONS(350), - [sym__digits] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(353), - [anon_sym_DASH_DASH_DASH] = ACTIONS(350), - [anon_sym_DOT_DOT_DOT] = ACTIONS(350), - [sym__code_span_start] = ACTIONS(356), - [sym__emphasis_open_star] = ACTIONS(359), - [sym__emphasis_open_underscore] = ACTIONS(362), - [sym__emphasis_close_star] = ACTIONS(365), - [sym__last_token_punctuation] = ACTIONS(367), - [sym__strikeout_open] = ACTIONS(369), - [sym__latex_span_start] = ACTIONS(372), - [sym__single_quote_open] = ACTIONS(375), - [sym__double_quote_open] = ACTIONS(378), - [sym__superscript_open] = ACTIONS(381), - [sym__subscript_open] = ACTIONS(384), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(387), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(390), - [sym__cite_author_in_text] = ACTIONS(393), - [sym__cite_suppress_author] = ACTIONS(396), - [sym__shortcode_open_escaped] = ACTIONS(399), - [sym__shortcode_open] = ACTIONS(402), - [sym__unclosed_span] = ACTIONS(302), - [sym__strong_emphasis_open_star] = ACTIONS(405), - [sym__strong_emphasis_open_underscore] = ACTIONS(408), + [STATE(19)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(495), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, - [STATE(5)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(114), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(114), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(114), - [aux_sym__inline_no_star] = STATE(114), - [sym__emphasis_star] = STATE(114), - [sym__strong_emphasis_star] = STATE(114), - [sym__emphasis_underscore] = STATE(114), - [sym__strong_emphasis_underscore] = STATE(114), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(411), - [sym_entity_reference] = ACTIONS(414), - [sym_numeric_character_reference] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DQUOTE] = ACTIONS(420), - [anon_sym_POUND] = ACTIONS(420), - [anon_sym_DOLLAR] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_SQUOTE] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_COMMA] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_DOT] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_COLON] = ACTIONS(420), - [anon_sym_SEMI] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_LBRACK] = ACTIONS(426), - [anon_sym_BSLASH] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_LPAREN] = ACTIONS(420), - [anon_sym_RPAREN] = ACTIONS(420), - [sym__newline_token] = ACTIONS(435), - [aux_sym_insert_token1] = ACTIONS(438), - [aux_sym_delete_token1] = ACTIONS(441), - [aux_sym_highlight_token1] = ACTIONS(444), - [aux_sym_edit_comment_token1] = ACTIONS(447), - [anon_sym_CARET_LBRACK] = ACTIONS(450), - [anon_sym_LBRACK_CARET] = ACTIONS(453), - [sym_uri_autolink] = ACTIONS(414), - [sym_email_autolink] = ACTIONS(414), - [sym__whitespace_ge_2] = ACTIONS(456), - [aux_sym__whitespace_token1] = ACTIONS(459), - [sym__word_no_digit] = ACTIONS(462), - [sym__digits] = ACTIONS(462), - [anon_sym_DASH_DASH] = ACTIONS(465), - [anon_sym_DASH_DASH_DASH] = ACTIONS(462), - [anon_sym_DOT_DOT_DOT] = ACTIONS(462), - [sym__code_span_start] = ACTIONS(468), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(474), - [sym__emphasis_close_underscore] = ACTIONS(477), - [sym__last_token_punctuation] = ACTIONS(479), - [sym__strikeout_open] = ACTIONS(481), - [sym__latex_span_start] = ACTIONS(484), - [sym__single_quote_open] = ACTIONS(487), - [sym__double_quote_open] = ACTIONS(490), - [sym__superscript_open] = ACTIONS(493), - [sym__subscript_open] = ACTIONS(496), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(499), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(502), - [sym__cite_author_in_text] = ACTIONS(505), - [sym__cite_suppress_author] = ACTIONS(508), - [sym__shortcode_open_escaped] = ACTIONS(511), - [sym__shortcode_open] = ACTIONS(514), - [sym__unclosed_span] = ACTIONS(414), - [sym__strong_emphasis_open_star] = ACTIONS(517), - [sym__strong_emphasis_open_underscore] = ACTIONS(520), + [STATE(20)] = { + [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(598), + [sym__link_text_non_empty] = STATE(675), + [sym_inline_link] = STATE(826), + [sym_image] = STATE(469), + [sym__image_inline_link] = STATE(1449), + [sym__image_description] = STATE(2655), + [sym__image_description_non_empty] = STATE(2655), + [sym_hard_line_break] = STATE(469), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1453), + [sym__inline_base] = STATE(826), + [sym__text_base] = STATE(469), + [sym__inline_element] = STATE(826), + [aux_sym__inline] = STATE(36), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(826), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(826), + [aux_sym__inline_base_repeat1] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(497), + [sym__backslash_escape] = ACTIONS(3), + [sym_entity_reference] = ACTIONS(5), + [sym_numeric_character_reference] = ACTIONS(5), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(9), + [anon_sym_BANG] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_DOLLAR] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_PLUS] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_EQ] = ACTIONS(9), + [anon_sym_QMARK] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_PIPE] = ACTIONS(9), + [anon_sym_TILDE] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(9), + [sym__newline_token] = ACTIONS(19), + [aux_sym_insert_token1] = ACTIONS(21), + [aux_sym_delete_token1] = ACTIONS(23), + [aux_sym_highlight_token1] = ACTIONS(25), + [aux_sym_edit_comment_token1] = ACTIONS(27), + [anon_sym_CARET_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_CARET] = ACTIONS(31), + [sym_uri_autolink] = ACTIONS(5), + [sym_email_autolink] = ACTIONS(5), + [sym__whitespace_ge_2] = ACTIONS(33), + [aux_sym__whitespace_token1] = ACTIONS(35), + [sym__word_no_digit] = ACTIONS(37), + [sym__digits] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym__code_span_start] = ACTIONS(41), + [sym__emphasis_open_star] = ACTIONS(43), + [sym__emphasis_open_underscore] = ACTIONS(45), + [sym__strikeout_open] = ACTIONS(49), + [sym__latex_span_start] = ACTIONS(51), + [sym__single_quote_open] = ACTIONS(53), + [sym__double_quote_open] = ACTIONS(55), + [sym__superscript_open] = ACTIONS(57), + [sym__subscript_open] = ACTIONS(59), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(61), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(63), + [sym__cite_author_in_text] = ACTIONS(65), + [sym__cite_suppress_author] = ACTIONS(67), + [sym__shortcode_open_escaped] = ACTIONS(69), + [sym__shortcode_open] = ACTIONS(71), + [sym__unclosed_span] = ACTIONS(5), + [sym__strong_emphasis_open_star] = ACTIONS(73), + [sym__strong_emphasis_open_underscore] = ACTIONS(75), }, - [STATE(6)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(144), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(144), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(144), - [aux_sym__inline_no_star] = STATE(144), - [sym__emphasis_star] = STATE(144), - [sym__strong_emphasis_star] = STATE(144), - [sym__emphasis_underscore] = STATE(144), - [sym__strong_emphasis_underscore] = STATE(144), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(77), - [sym_entity_reference] = ACTIONS(80), - [sym_numeric_character_reference] = ACTIONS(80), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(86), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(86), - [anon_sym_POUND] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_PERCENT] = ACTIONS(86), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(86), - [anon_sym_PLUS] = ACTIONS(86), - [anon_sym_COMMA] = ACTIONS(86), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(83), - [anon_sym_SLASH] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(86), - [anon_sym_SEMI] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(86), - [anon_sym_QMARK] = ACTIONS(86), - [anon_sym_LBRACK] = ACTIONS(92), - [anon_sym_BSLASH] = ACTIONS(95), - [anon_sym_CARET] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(86), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_PIPE] = ACTIONS(86), - [anon_sym_TILDE] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(86), - [sym__newline_token] = ACTIONS(101), - [aux_sym_insert_token1] = ACTIONS(104), - [aux_sym_delete_token1] = ACTIONS(107), - [aux_sym_highlight_token1] = ACTIONS(110), - [aux_sym_edit_comment_token1] = ACTIONS(113), - [anon_sym_CARET_LBRACK] = ACTIONS(116), - [anon_sym_LBRACK_CARET] = ACTIONS(119), - [sym_uri_autolink] = ACTIONS(80), - [sym_email_autolink] = ACTIONS(80), - [sym__whitespace_ge_2] = ACTIONS(122), - [aux_sym__whitespace_token1] = ACTIONS(125), - [sym__word_no_digit] = ACTIONS(128), - [sym__digits] = ACTIONS(128), - [anon_sym_DASH_DASH] = ACTIONS(131), - [anon_sym_DASH_DASH_DASH] = ACTIONS(128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(128), - [sym__code_span_start] = ACTIONS(134), - [sym__emphasis_open_star] = ACTIONS(137), - [sym__emphasis_open_underscore] = ACTIONS(140), - [sym__last_token_punctuation] = ACTIONS(523), - [sym__strikeout_open] = ACTIONS(145), - [sym__strikeout_close] = ACTIONS(163), - [sym__latex_span_start] = ACTIONS(148), - [sym__single_quote_open] = ACTIONS(151), - [sym__double_quote_open] = ACTIONS(154), - [sym__superscript_open] = ACTIONS(157), - [sym__subscript_open] = ACTIONS(160), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(165), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(168), - [sym__cite_author_in_text] = ACTIONS(171), - [sym__cite_suppress_author] = ACTIONS(174), - [sym__shortcode_open_escaped] = ACTIONS(177), - [sym__shortcode_open] = ACTIONS(180), - [sym__unclosed_span] = ACTIONS(80), - [sym__strong_emphasis_open_star] = ACTIONS(183), - [sym__strong_emphasis_open_underscore] = ACTIONS(186), + [STATE(21)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(545), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), }, - [STATE(7)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(145), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(145), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(145), - [aux_sym__inline_no_underscore] = STATE(145), - [sym__emphasis_star] = STATE(145), - [sym__strong_emphasis_star] = STATE(145), - [sym__emphasis_underscore] = STATE(145), - [sym__strong_emphasis_underscore] = STATE(145), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(189), - [sym_entity_reference] = ACTIONS(192), - [sym_numeric_character_reference] = ACTIONS(192), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(198), - [anon_sym_POUND] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_PERCENT] = ACTIONS(198), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(198), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_COMMA] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_COLON] = ACTIONS(198), - [anon_sym_SEMI] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_QMARK] = ACTIONS(198), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(198), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_RPAREN] = ACTIONS(198), + [STATE(22)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), + [sym__text_base] = STATE(459), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), + [aux_sym__inline_base_repeat1] = STATE(459), + [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(216), - [aux_sym_delete_token1] = ACTIONS(219), - [aux_sym_highlight_token1] = ACTIONS(222), - [aux_sym_edit_comment_token1] = ACTIONS(225), - [anon_sym_CARET_LBRACK] = ACTIONS(228), - [anon_sym_LBRACK_CARET] = ACTIONS(231), - [sym_uri_autolink] = ACTIONS(192), - [sym_email_autolink] = ACTIONS(192), - [sym__whitespace_ge_2] = ACTIONS(234), - [aux_sym__whitespace_token1] = ACTIONS(237), - [sym__word_no_digit] = ACTIONS(240), - [sym__digits] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_DASH_DASH_DASH] = ACTIONS(240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(240), - [sym__code_span_start] = ACTIONS(246), - [sym__emphasis_open_star] = ACTIONS(249), - [sym__emphasis_open_underscore] = ACTIONS(252), - [sym__last_token_punctuation] = ACTIONS(525), - [sym__strikeout_open] = ACTIONS(257), - [sym__strikeout_close] = ACTIONS(163), - [sym__latex_span_start] = ACTIONS(260), - [sym__single_quote_open] = ACTIONS(263), - [sym__double_quote_open] = ACTIONS(266), - [sym__superscript_open] = ACTIONS(269), - [sym__subscript_open] = ACTIONS(272), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(278), - [sym__cite_author_in_text] = ACTIONS(281), - [sym__cite_suppress_author] = ACTIONS(284), - [sym__shortcode_open_escaped] = ACTIONS(287), - [sym__shortcode_open] = ACTIONS(290), - [sym__unclosed_span] = ACTIONS(192), - [sym__strong_emphasis_open_star] = ACTIONS(293), - [sym__strong_emphasis_open_underscore] = ACTIONS(296), + [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__single_quote_close] = ACTIONS(573), + [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(8)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(292), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(292), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(292), - [aux_sym__inline_no_underscore] = STATE(292), - [sym__emphasis_star] = STATE(292), - [sym__strong_emphasis_star] = STATE(292), - [sym__emphasis_underscore] = STATE(292), - [sym__strong_emphasis_underscore] = STATE(292), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(299), - [sym_entity_reference] = ACTIONS(302), - [sym_numeric_character_reference] = ACTIONS(302), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(308), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(308), - [anon_sym_POUND] = ACTIONS(308), - [anon_sym_DOLLAR] = ACTIONS(308), - [anon_sym_PERCENT] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(305), - [anon_sym_SQUOTE] = ACTIONS(308), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_PLUS] = ACTIONS(308), - [anon_sym_COMMA] = ACTIONS(308), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_DOT] = ACTIONS(305), - [anon_sym_SLASH] = ACTIONS(308), - [anon_sym_COLON] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(308), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_BSLASH] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(305), - [anon_sym_BQUOTE] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(308), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_RPAREN] = ACTIONS(308), - [sym__newline_token] = ACTIONS(323), - [aux_sym_insert_token1] = ACTIONS(326), - [aux_sym_delete_token1] = ACTIONS(329), - [aux_sym_highlight_token1] = ACTIONS(332), - [aux_sym_edit_comment_token1] = ACTIONS(335), - [anon_sym_CARET_LBRACK] = ACTIONS(338), - [anon_sym_LBRACK_CARET] = ACTIONS(341), - [sym_uri_autolink] = ACTIONS(302), - [sym_email_autolink] = ACTIONS(302), - [sym__whitespace_ge_2] = ACTIONS(344), - [aux_sym__whitespace_token1] = ACTIONS(347), - [sym__word_no_digit] = ACTIONS(350), - [sym__digits] = ACTIONS(350), - [anon_sym_DASH_DASH] = ACTIONS(353), - [anon_sym_DASH_DASH_DASH] = ACTIONS(350), - [anon_sym_DOT_DOT_DOT] = ACTIONS(350), - [sym__code_span_start] = ACTIONS(356), - [sym__emphasis_open_star] = ACTIONS(359), - [sym__emphasis_open_underscore] = ACTIONS(362), - [sym__last_token_punctuation] = ACTIONS(527), - [sym__strikeout_open] = ACTIONS(369), - [sym__latex_span_start] = ACTIONS(372), - [sym__single_quote_open] = ACTIONS(375), - [sym__double_quote_open] = ACTIONS(378), - [sym__superscript_open] = ACTIONS(381), - [sym__subscript_open] = ACTIONS(384), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(387), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(390), - [sym__cite_author_in_text] = ACTIONS(393), - [sym__cite_suppress_author] = ACTIONS(396), - [sym__shortcode_open_escaped] = ACTIONS(399), - [sym__shortcode_open] = ACTIONS(402), - [sym__unclosed_span] = ACTIONS(302), - [sym__strong_emphasis_open_star] = ACTIONS(405), - [sym__strong_emphasis_close_star] = ACTIONS(365), - [sym__strong_emphasis_open_underscore] = ACTIONS(408), + [STATE(23)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(573), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), }, - [STATE(9)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(321), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(321), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(321), - [aux_sym__inline_no_star] = STATE(321), - [sym__emphasis_star] = STATE(321), - [sym__strong_emphasis_star] = STATE(321), - [sym__emphasis_underscore] = STATE(321), - [sym__strong_emphasis_underscore] = STATE(321), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(411), - [sym_entity_reference] = ACTIONS(414), - [sym_numeric_character_reference] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_DQUOTE] = ACTIONS(420), - [anon_sym_POUND] = ACTIONS(420), - [anon_sym_DOLLAR] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_SQUOTE] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_COMMA] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_DOT] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_COLON] = ACTIONS(420), - [anon_sym_SEMI] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_LBRACK] = ACTIONS(426), - [anon_sym_BSLASH] = ACTIONS(429), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_LPAREN] = ACTIONS(420), - [anon_sym_RPAREN] = ACTIONS(420), - [sym__newline_token] = ACTIONS(435), - [aux_sym_insert_token1] = ACTIONS(438), - [aux_sym_delete_token1] = ACTIONS(441), - [aux_sym_highlight_token1] = ACTIONS(444), - [aux_sym_edit_comment_token1] = ACTIONS(447), - [anon_sym_CARET_LBRACK] = ACTIONS(450), - [anon_sym_LBRACK_CARET] = ACTIONS(453), - [sym_uri_autolink] = ACTIONS(414), - [sym_email_autolink] = ACTIONS(414), - [sym__whitespace_ge_2] = ACTIONS(456), - [aux_sym__whitespace_token1] = ACTIONS(459), - [sym__word_no_digit] = ACTIONS(462), - [sym__digits] = ACTIONS(462), - [anon_sym_DASH_DASH] = ACTIONS(465), - [anon_sym_DASH_DASH_DASH] = ACTIONS(462), - [anon_sym_DOT_DOT_DOT] = ACTIONS(462), - [sym__code_span_start] = ACTIONS(468), - [sym__emphasis_open_star] = ACTIONS(471), - [sym__emphasis_open_underscore] = ACTIONS(474), - [sym__last_token_punctuation] = ACTIONS(529), - [sym__strikeout_open] = ACTIONS(481), - [sym__latex_span_start] = ACTIONS(484), - [sym__single_quote_open] = ACTIONS(487), - [sym__double_quote_open] = ACTIONS(490), - [sym__superscript_open] = ACTIONS(493), - [sym__subscript_open] = ACTIONS(496), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(499), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(502), - [sym__cite_author_in_text] = ACTIONS(505), - [sym__cite_suppress_author] = ACTIONS(508), - [sym__shortcode_open_escaped] = ACTIONS(511), - [sym__shortcode_open] = ACTIONS(514), - [sym__unclosed_span] = ACTIONS(414), - [sym__strong_emphasis_open_star] = ACTIONS(517), - [sym__strong_emphasis_open_underscore] = ACTIONS(520), - [sym__strong_emphasis_close_underscore] = ACTIONS(477), + [STATE(24)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = 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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, - [STATE(10)] = { + [STATE(25)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -30725,95 +32275,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(173), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(173), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(173), - [aux_sym__inline_no_star] = STATE(173), - [sym__emphasis_star] = STATE(173), - [sym__strong_emphasis_star] = STATE(173), - [sym__emphasis_underscore] = STATE(173), - [sym__strong_emphasis_underscore] = STATE(173), + [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(474), - [sym__backslash_escape] = ACTIONS(77), - [sym_entity_reference] = ACTIONS(80), - [sym_numeric_character_reference] = ACTIONS(80), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(86), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(86), - [anon_sym_POUND] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_PERCENT] = ACTIONS(86), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(86), - [anon_sym_PLUS] = ACTIONS(86), - [anon_sym_COMMA] = ACTIONS(86), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(83), - [anon_sym_SLASH] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(86), - [anon_sym_SEMI] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(86), - [anon_sym_QMARK] = ACTIONS(86), - [anon_sym_LBRACK] = ACTIONS(92), - [anon_sym_BSLASH] = ACTIONS(95), - [anon_sym_CARET] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(86), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_PIPE] = ACTIONS(86), - [anon_sym_TILDE] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(86), - [sym__newline_token] = ACTIONS(101), - [aux_sym_insert_token1] = ACTIONS(104), - [aux_sym_delete_token1] = ACTIONS(107), - [aux_sym_highlight_token1] = ACTIONS(110), - [aux_sym_edit_comment_token1] = ACTIONS(113), - [anon_sym_CARET_LBRACK] = ACTIONS(116), - [anon_sym_LBRACK_CARET] = ACTIONS(119), - [sym_uri_autolink] = ACTIONS(80), - [sym_email_autolink] = ACTIONS(80), - [sym__whitespace_ge_2] = ACTIONS(122), - [aux_sym__whitespace_token1] = ACTIONS(125), - [sym__word_no_digit] = ACTIONS(128), - [sym__digits] = ACTIONS(128), - [anon_sym_DASH_DASH] = ACTIONS(131), - [anon_sym_DASH_DASH_DASH] = ACTIONS(128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(128), - [sym__code_span_start] = ACTIONS(134), - [sym__emphasis_open_star] = ACTIONS(137), - [sym__emphasis_open_underscore] = ACTIONS(140), - [sym__last_token_punctuation] = ACTIONS(531), - [sym__strikeout_open] = ACTIONS(145), - [sym__latex_span_start] = ACTIONS(148), - [sym__single_quote_open] = ACTIONS(151), - [sym__single_quote_close] = ACTIONS(163), - [sym__double_quote_open] = ACTIONS(154), - [sym__superscript_open] = ACTIONS(157), - [sym__subscript_open] = ACTIONS(160), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(165), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(168), - [sym__cite_author_in_text] = ACTIONS(171), - [sym__cite_suppress_author] = ACTIONS(174), - [sym__shortcode_open_escaped] = ACTIONS(177), - [sym__shortcode_open] = ACTIONS(180), - [sym__unclosed_span] = ACTIONS(80), - [sym__strong_emphasis_open_star] = ACTIONS(183), - [sym__strong_emphasis_open_underscore] = ACTIONS(186), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(777), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(11)] = { + [STATE(26)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -30831,12822 +32379,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(174), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(174), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(174), - [aux_sym__inline_no_underscore] = STATE(174), - [sym__emphasis_star] = STATE(174), - [sym__strong_emphasis_star] = STATE(174), - [sym__emphasis_underscore] = STATE(174), - [sym__strong_emphasis_underscore] = STATE(174), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(189), - [sym_entity_reference] = ACTIONS(192), - [sym_numeric_character_reference] = ACTIONS(192), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(198), - [anon_sym_POUND] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_PERCENT] = ACTIONS(198), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(198), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_COMMA] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_COLON] = ACTIONS(198), - [anon_sym_SEMI] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_QMARK] = ACTIONS(198), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(198), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_RPAREN] = ACTIONS(198), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(216), - [aux_sym_delete_token1] = ACTIONS(219), - [aux_sym_highlight_token1] = ACTIONS(222), - [aux_sym_edit_comment_token1] = ACTIONS(225), - [anon_sym_CARET_LBRACK] = ACTIONS(228), - [anon_sym_LBRACK_CARET] = ACTIONS(231), - [sym_uri_autolink] = ACTIONS(192), - [sym_email_autolink] = ACTIONS(192), - [sym__whitespace_ge_2] = ACTIONS(234), - [aux_sym__whitespace_token1] = ACTIONS(237), - [sym__word_no_digit] = ACTIONS(240), - [sym__digits] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_DASH_DASH_DASH] = ACTIONS(240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(240), - [sym__code_span_start] = ACTIONS(246), - [sym__emphasis_open_star] = ACTIONS(249), - [sym__emphasis_open_underscore] = ACTIONS(252), - [sym__last_token_punctuation] = ACTIONS(533), - [sym__strikeout_open] = ACTIONS(257), - [sym__latex_span_start] = ACTIONS(260), - [sym__single_quote_open] = ACTIONS(263), - [sym__single_quote_close] = ACTIONS(163), - [sym__double_quote_open] = ACTIONS(266), - [sym__superscript_open] = ACTIONS(269), - [sym__subscript_open] = ACTIONS(272), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(278), - [sym__cite_author_in_text] = ACTIONS(281), - [sym__cite_suppress_author] = ACTIONS(284), - [sym__shortcode_open_escaped] = ACTIONS(287), - [sym__shortcode_open] = ACTIONS(290), - [sym__unclosed_span] = ACTIONS(192), - [sym__strong_emphasis_open_star] = ACTIONS(293), - [sym__strong_emphasis_open_underscore] = ACTIONS(296), - }, - [STATE(12)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(202), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(202), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(202), - [aux_sym__inline_no_star] = 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(474), - [sym__backslash_escape] = ACTIONS(77), - [sym_entity_reference] = ACTIONS(80), - [sym_numeric_character_reference] = ACTIONS(80), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(86), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(86), - [anon_sym_POUND] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_PERCENT] = ACTIONS(86), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(86), - [anon_sym_PLUS] = ACTIONS(86), - [anon_sym_COMMA] = ACTIONS(86), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(83), - [anon_sym_SLASH] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(86), - [anon_sym_SEMI] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(86), - [anon_sym_QMARK] = ACTIONS(86), - [anon_sym_LBRACK] = ACTIONS(92), - [anon_sym_BSLASH] = ACTIONS(95), - [anon_sym_CARET] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(86), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_PIPE] = ACTIONS(86), - [anon_sym_TILDE] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(86), - [sym__newline_token] = ACTIONS(101), - [aux_sym_insert_token1] = ACTIONS(104), - [aux_sym_delete_token1] = ACTIONS(107), - [aux_sym_highlight_token1] = ACTIONS(110), - [aux_sym_edit_comment_token1] = ACTIONS(113), - [anon_sym_CARET_LBRACK] = ACTIONS(116), - [anon_sym_LBRACK_CARET] = ACTIONS(119), - [sym_uri_autolink] = ACTIONS(80), - [sym_email_autolink] = ACTIONS(80), - [sym__whitespace_ge_2] = ACTIONS(122), - [aux_sym__whitespace_token1] = ACTIONS(125), - [sym__word_no_digit] = ACTIONS(128), - [sym__digits] = ACTIONS(128), - [anon_sym_DASH_DASH] = ACTIONS(131), - [anon_sym_DASH_DASH_DASH] = ACTIONS(128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(128), - [sym__code_span_start] = ACTIONS(134), - [sym__emphasis_open_star] = ACTIONS(137), - [sym__emphasis_open_underscore] = ACTIONS(140), - [sym__last_token_punctuation] = ACTIONS(535), - [sym__strikeout_open] = ACTIONS(145), - [sym__latex_span_start] = ACTIONS(148), - [sym__single_quote_open] = ACTIONS(151), - [sym__double_quote_open] = ACTIONS(154), - [sym__double_quote_close] = ACTIONS(163), - [sym__superscript_open] = ACTIONS(157), - [sym__subscript_open] = ACTIONS(160), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(165), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(168), - [sym__cite_author_in_text] = ACTIONS(171), - [sym__cite_suppress_author] = ACTIONS(174), - [sym__shortcode_open_escaped] = ACTIONS(177), - [sym__shortcode_open] = ACTIONS(180), - [sym__unclosed_span] = ACTIONS(80), - [sym__strong_emphasis_open_star] = ACTIONS(183), - [sym__strong_emphasis_open_underscore] = ACTIONS(186), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_close_star] = ACTIONS(865), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(13)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(203), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(203), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(203), - [aux_sym__inline_no_underscore] = STATE(203), - [sym__emphasis_star] = STATE(203), - [sym__strong_emphasis_star] = STATE(203), - [sym__emphasis_underscore] = STATE(203), - [sym__strong_emphasis_underscore] = STATE(203), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(189), - [sym_entity_reference] = ACTIONS(192), - [sym_numeric_character_reference] = ACTIONS(192), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(198), - [anon_sym_POUND] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_PERCENT] = ACTIONS(198), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(198), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_COMMA] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_COLON] = ACTIONS(198), - [anon_sym_SEMI] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_QMARK] = ACTIONS(198), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(198), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_RPAREN] = ACTIONS(198), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(216), - [aux_sym_delete_token1] = ACTIONS(219), - [aux_sym_highlight_token1] = ACTIONS(222), - [aux_sym_edit_comment_token1] = ACTIONS(225), - [anon_sym_CARET_LBRACK] = ACTIONS(228), - [anon_sym_LBRACK_CARET] = ACTIONS(231), - [sym_uri_autolink] = ACTIONS(192), - [sym_email_autolink] = ACTIONS(192), - [sym__whitespace_ge_2] = ACTIONS(234), - [aux_sym__whitespace_token1] = ACTIONS(237), - [sym__word_no_digit] = ACTIONS(240), - [sym__digits] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_DASH_DASH_DASH] = ACTIONS(240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(240), - [sym__code_span_start] = ACTIONS(246), - [sym__emphasis_open_star] = ACTIONS(249), - [sym__emphasis_open_underscore] = ACTIONS(252), - [sym__last_token_punctuation] = ACTIONS(537), - [sym__strikeout_open] = ACTIONS(257), - [sym__latex_span_start] = ACTIONS(260), - [sym__single_quote_open] = ACTIONS(263), - [sym__double_quote_open] = ACTIONS(266), - [sym__double_quote_close] = ACTIONS(163), - [sym__superscript_open] = ACTIONS(269), - [sym__subscript_open] = ACTIONS(272), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(278), - [sym__cite_author_in_text] = ACTIONS(281), - [sym__cite_suppress_author] = ACTIONS(284), - [sym__shortcode_open_escaped] = ACTIONS(287), - [sym__shortcode_open] = ACTIONS(290), - [sym__unclosed_span] = ACTIONS(192), - [sym__strong_emphasis_open_star] = ACTIONS(293), - [sym__strong_emphasis_open_underscore] = ACTIONS(296), - }, - [STATE(14)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(232), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(232), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(232), - [aux_sym__inline_no_star] = STATE(232), - [sym__emphasis_star] = STATE(232), - [sym__strong_emphasis_star] = STATE(232), - [sym__emphasis_underscore] = STATE(232), - [sym__strong_emphasis_underscore] = STATE(232), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(77), - [sym_entity_reference] = ACTIONS(80), - [sym_numeric_character_reference] = ACTIONS(80), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(86), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(86), - [anon_sym_POUND] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_PERCENT] = ACTIONS(86), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(86), - [anon_sym_PLUS] = ACTIONS(86), - [anon_sym_COMMA] = ACTIONS(86), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(83), - [anon_sym_SLASH] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(86), - [anon_sym_SEMI] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(86), - [anon_sym_QMARK] = ACTIONS(86), - [anon_sym_LBRACK] = ACTIONS(92), - [anon_sym_BSLASH] = ACTIONS(95), - [anon_sym_CARET] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(86), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_PIPE] = ACTIONS(86), - [anon_sym_TILDE] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(86), - [sym__newline_token] = ACTIONS(101), - [aux_sym_insert_token1] = ACTIONS(104), - [aux_sym_delete_token1] = ACTIONS(107), - [aux_sym_highlight_token1] = ACTIONS(110), - [aux_sym_edit_comment_token1] = ACTIONS(113), - [anon_sym_CARET_LBRACK] = ACTIONS(116), - [anon_sym_LBRACK_CARET] = ACTIONS(119), - [sym_uri_autolink] = ACTIONS(80), - [sym_email_autolink] = ACTIONS(80), - [sym__whitespace_ge_2] = ACTIONS(122), - [aux_sym__whitespace_token1] = ACTIONS(125), - [sym__word_no_digit] = ACTIONS(128), - [sym__digits] = ACTIONS(128), - [anon_sym_DASH_DASH] = ACTIONS(131), - [anon_sym_DASH_DASH_DASH] = ACTIONS(128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(128), - [sym__code_span_start] = ACTIONS(134), - [sym__emphasis_open_star] = ACTIONS(137), - [sym__emphasis_open_underscore] = ACTIONS(140), - [sym__last_token_punctuation] = ACTIONS(539), - [sym__strikeout_open] = ACTIONS(145), - [sym__latex_span_start] = ACTIONS(148), - [sym__single_quote_open] = ACTIONS(151), - [sym__double_quote_open] = ACTIONS(154), - [sym__superscript_open] = ACTIONS(157), - [sym__superscript_close] = ACTIONS(163), - [sym__subscript_open] = ACTIONS(160), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(165), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(168), - [sym__cite_author_in_text] = ACTIONS(171), - [sym__cite_suppress_author] = ACTIONS(174), - [sym__shortcode_open_escaped] = ACTIONS(177), - [sym__shortcode_open] = ACTIONS(180), - [sym__unclosed_span] = ACTIONS(80), - [sym__strong_emphasis_open_star] = ACTIONS(183), - [sym__strong_emphasis_open_underscore] = ACTIONS(186), - }, - [STATE(15)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(233), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(233), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(233), - [aux_sym__inline_no_underscore] = STATE(233), - [sym__emphasis_star] = STATE(233), - [sym__strong_emphasis_star] = STATE(233), - [sym__emphasis_underscore] = STATE(233), - [sym__strong_emphasis_underscore] = STATE(233), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(189), - [sym_entity_reference] = ACTIONS(192), - [sym_numeric_character_reference] = ACTIONS(192), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(198), - [anon_sym_POUND] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_PERCENT] = ACTIONS(198), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(198), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_COMMA] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_COLON] = ACTIONS(198), - [anon_sym_SEMI] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_QMARK] = ACTIONS(198), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(198), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_RPAREN] = ACTIONS(198), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(216), - [aux_sym_delete_token1] = ACTIONS(219), - [aux_sym_highlight_token1] = ACTIONS(222), - [aux_sym_edit_comment_token1] = ACTIONS(225), - [anon_sym_CARET_LBRACK] = ACTIONS(228), - [anon_sym_LBRACK_CARET] = ACTIONS(231), - [sym_uri_autolink] = ACTIONS(192), - [sym_email_autolink] = ACTIONS(192), - [sym__whitespace_ge_2] = ACTIONS(234), - [aux_sym__whitespace_token1] = ACTIONS(237), - [sym__word_no_digit] = ACTIONS(240), - [sym__digits] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_DASH_DASH_DASH] = ACTIONS(240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(240), - [sym__code_span_start] = ACTIONS(246), - [sym__emphasis_open_star] = ACTIONS(249), - [sym__emphasis_open_underscore] = ACTIONS(252), - [sym__last_token_punctuation] = ACTIONS(541), - [sym__strikeout_open] = ACTIONS(257), - [sym__latex_span_start] = ACTIONS(260), - [sym__single_quote_open] = ACTIONS(263), - [sym__double_quote_open] = ACTIONS(266), - [sym__superscript_open] = ACTIONS(269), - [sym__superscript_close] = ACTIONS(163), - [sym__subscript_open] = ACTIONS(272), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(278), - [sym__cite_author_in_text] = ACTIONS(281), - [sym__cite_suppress_author] = ACTIONS(284), - [sym__shortcode_open_escaped] = ACTIONS(287), - [sym__shortcode_open] = ACTIONS(290), - [sym__unclosed_span] = ACTIONS(192), - [sym__strong_emphasis_open_star] = ACTIONS(293), - [sym__strong_emphasis_open_underscore] = ACTIONS(296), - }, - [STATE(16)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(320), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(320), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(320), - [aux_sym__inline_no_star] = STATE(320), - [sym__emphasis_star] = STATE(320), - [sym__strong_emphasis_star] = STATE(320), - [sym__emphasis_underscore] = STATE(320), - [sym__strong_emphasis_underscore] = STATE(320), - [aux_sym__inline_base_repeat1] = STATE(474), - [ts_builtin_sym_end] = ACTIONS(163), - [sym__backslash_escape] = ACTIONS(77), - [sym_entity_reference] = ACTIONS(80), - [sym_numeric_character_reference] = ACTIONS(80), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(86), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(86), - [anon_sym_POUND] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_PERCENT] = ACTIONS(86), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(86), - [anon_sym_PLUS] = ACTIONS(86), - [anon_sym_COMMA] = ACTIONS(86), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(83), - [anon_sym_SLASH] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(86), - [anon_sym_SEMI] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(86), - [anon_sym_QMARK] = ACTIONS(86), - [anon_sym_LBRACK] = ACTIONS(92), - [anon_sym_BSLASH] = ACTIONS(95), - [anon_sym_CARET] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(86), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_PIPE] = ACTIONS(86), - [anon_sym_TILDE] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(86), - [sym__newline_token] = ACTIONS(101), - [aux_sym_insert_token1] = ACTIONS(104), - [aux_sym_delete_token1] = ACTIONS(107), - [aux_sym_highlight_token1] = ACTIONS(110), - [aux_sym_edit_comment_token1] = ACTIONS(113), - [anon_sym_CARET_LBRACK] = ACTIONS(116), - [anon_sym_LBRACK_CARET] = ACTIONS(119), - [sym_uri_autolink] = ACTIONS(80), - [sym_email_autolink] = ACTIONS(80), - [sym__whitespace_ge_2] = ACTIONS(122), - [aux_sym__whitespace_token1] = ACTIONS(125), - [sym__word_no_digit] = ACTIONS(128), - [sym__digits] = ACTIONS(128), - [anon_sym_DASH_DASH] = ACTIONS(131), - [anon_sym_DASH_DASH_DASH] = ACTIONS(128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(128), - [sym__code_span_start] = ACTIONS(134), - [sym__emphasis_open_star] = ACTIONS(137), - [sym__emphasis_open_underscore] = ACTIONS(140), - [sym__last_token_punctuation] = ACTIONS(543), - [sym__strikeout_open] = ACTIONS(145), - [sym__latex_span_start] = ACTIONS(148), - [sym__single_quote_open] = ACTIONS(151), - [sym__double_quote_open] = ACTIONS(154), - [sym__superscript_open] = ACTIONS(157), - [sym__subscript_open] = ACTIONS(160), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(165), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(168), - [sym__cite_author_in_text] = ACTIONS(171), - [sym__cite_suppress_author] = ACTIONS(174), - [sym__shortcode_open_escaped] = ACTIONS(177), - [sym__shortcode_open] = ACTIONS(180), - [sym__unclosed_span] = ACTIONS(80), - [sym__strong_emphasis_open_star] = ACTIONS(183), - [sym__strong_emphasis_open_underscore] = ACTIONS(186), - }, - [STATE(17)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(263), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(263), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(263), - [aux_sym__inline_no_underscore] = STATE(263), - [sym__emphasis_star] = STATE(263), - [sym__strong_emphasis_star] = STATE(263), - [sym__emphasis_underscore] = STATE(263), - [sym__strong_emphasis_underscore] = STATE(263), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(189), - [sym_entity_reference] = ACTIONS(192), - [sym_numeric_character_reference] = ACTIONS(192), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(198), - [anon_sym_POUND] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_PERCENT] = ACTIONS(198), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(198), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_COMMA] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_COLON] = ACTIONS(198), - [anon_sym_SEMI] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_QMARK] = ACTIONS(198), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(198), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_RPAREN] = ACTIONS(198), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(216), - [aux_sym_delete_token1] = ACTIONS(219), - [aux_sym_highlight_token1] = ACTIONS(222), - [aux_sym_edit_comment_token1] = ACTIONS(225), - [anon_sym_CARET_LBRACK] = ACTIONS(228), - [anon_sym_LBRACK_CARET] = ACTIONS(231), - [sym_uri_autolink] = ACTIONS(192), - [sym_email_autolink] = ACTIONS(192), - [sym__whitespace_ge_2] = ACTIONS(234), - [aux_sym__whitespace_token1] = ACTIONS(237), - [sym__word_no_digit] = ACTIONS(240), - [sym__digits] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_DASH_DASH_DASH] = ACTIONS(240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(240), - [sym__code_span_start] = ACTIONS(246), - [sym__emphasis_open_star] = ACTIONS(249), - [sym__emphasis_open_underscore] = ACTIONS(252), - [sym__last_token_punctuation] = ACTIONS(545), - [sym__strikeout_open] = ACTIONS(257), - [sym__latex_span_start] = ACTIONS(260), - [sym__single_quote_open] = ACTIONS(263), - [sym__double_quote_open] = ACTIONS(266), - [sym__superscript_open] = ACTIONS(269), - [sym__subscript_open] = ACTIONS(272), - [sym__subscript_close] = ACTIONS(163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(278), - [sym__cite_author_in_text] = ACTIONS(281), - [sym__cite_suppress_author] = ACTIONS(284), - [sym__shortcode_open_escaped] = ACTIONS(287), - [sym__shortcode_open] = ACTIONS(290), - [sym__unclosed_span] = ACTIONS(192), - [sym__strong_emphasis_open_star] = ACTIONS(293), - [sym__strong_emphasis_open_underscore] = ACTIONS(296), - }, - [STATE(18)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(351), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(351), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(351), - [aux_sym__inline_no_star] = STATE(351), - [sym__emphasis_star] = STATE(351), - [sym__strong_emphasis_star] = STATE(351), - [sym__emphasis_underscore] = STATE(351), - [sym__strong_emphasis_underscore] = STATE(351), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(77), - [sym_entity_reference] = ACTIONS(80), - [sym_numeric_character_reference] = ACTIONS(80), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(86), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(86), - [anon_sym_POUND] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_PERCENT] = ACTIONS(86), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(86), - [anon_sym_PLUS] = ACTIONS(86), - [anon_sym_COMMA] = ACTIONS(86), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(83), - [anon_sym_SLASH] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(86), - [anon_sym_SEMI] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(86), - [anon_sym_QMARK] = ACTIONS(86), - [anon_sym_LBRACK] = ACTIONS(92), - [anon_sym_BSLASH] = ACTIONS(95), - [anon_sym_RBRACK] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(86), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_PIPE] = ACTIONS(86), - [anon_sym_TILDE] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(86), - [sym__newline_token] = ACTIONS(101), - [aux_sym_insert_token1] = ACTIONS(104), - [aux_sym_delete_token1] = ACTIONS(107), - [aux_sym_highlight_token1] = ACTIONS(110), - [aux_sym_edit_comment_token1] = ACTIONS(113), - [anon_sym_CARET_LBRACK] = ACTIONS(116), - [anon_sym_LBRACK_CARET] = ACTIONS(119), - [sym_uri_autolink] = ACTIONS(80), - [sym_email_autolink] = ACTIONS(80), - [sym__whitespace_ge_2] = ACTIONS(122), - [aux_sym__whitespace_token1] = ACTIONS(125), - [sym__word_no_digit] = ACTIONS(128), - [sym__digits] = ACTIONS(128), - [anon_sym_DASH_DASH] = ACTIONS(131), - [anon_sym_DASH_DASH_DASH] = ACTIONS(128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(128), - [sym__code_span_start] = ACTIONS(134), - [sym__emphasis_open_star] = ACTIONS(137), - [sym__emphasis_open_underscore] = ACTIONS(140), - [sym__last_token_punctuation] = ACTIONS(547), - [sym__strikeout_open] = ACTIONS(145), - [sym__latex_span_start] = ACTIONS(148), - [sym__single_quote_open] = ACTIONS(151), - [sym__double_quote_open] = ACTIONS(154), - [sym__superscript_open] = ACTIONS(157), - [sym__subscript_open] = ACTIONS(160), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(165), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(168), - [sym__cite_author_in_text] = ACTIONS(171), - [sym__cite_suppress_author] = ACTIONS(174), - [sym__shortcode_open_escaped] = ACTIONS(177), - [sym__shortcode_open] = ACTIONS(180), - [sym__unclosed_span] = ACTIONS(80), - [sym__strong_emphasis_open_star] = ACTIONS(183), - [sym__strong_emphasis_open_underscore] = ACTIONS(186), - }, - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(352), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(352), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(352), - [aux_sym__inline_no_underscore] = STATE(352), - [sym__emphasis_star] = STATE(352), - [sym__strong_emphasis_star] = STATE(352), - [sym__emphasis_underscore] = STATE(352), - [sym__strong_emphasis_underscore] = STATE(352), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(189), - [sym_entity_reference] = ACTIONS(192), - [sym_numeric_character_reference] = ACTIONS(192), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(198), - [anon_sym_POUND] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_PERCENT] = ACTIONS(198), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(198), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_COMMA] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_COLON] = ACTIONS(198), - [anon_sym_SEMI] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_QMARK] = ACTIONS(198), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(198), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_RPAREN] = ACTIONS(198), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(216), - [aux_sym_delete_token1] = ACTIONS(219), - [aux_sym_highlight_token1] = ACTIONS(222), - [aux_sym_edit_comment_token1] = ACTIONS(225), - [anon_sym_CARET_LBRACK] = ACTIONS(228), - [anon_sym_LBRACK_CARET] = ACTIONS(231), - [sym_uri_autolink] = ACTIONS(192), - [sym_email_autolink] = ACTIONS(192), - [sym__whitespace_ge_2] = ACTIONS(234), - [aux_sym__whitespace_token1] = ACTIONS(237), - [sym__word_no_digit] = ACTIONS(240), - [sym__digits] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_DASH_DASH_DASH] = ACTIONS(240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(240), - [sym__code_span_start] = ACTIONS(246), - [sym__emphasis_open_star] = ACTIONS(249), - [sym__emphasis_open_underscore] = ACTIONS(252), - [sym__last_token_punctuation] = ACTIONS(549), - [sym__strikeout_open] = ACTIONS(257), - [sym__latex_span_start] = ACTIONS(260), - [sym__single_quote_open] = ACTIONS(263), - [sym__double_quote_open] = ACTIONS(266), - [sym__superscript_open] = ACTIONS(269), - [sym__subscript_open] = ACTIONS(272), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(278), - [sym__cite_author_in_text] = ACTIONS(281), - [sym__cite_suppress_author] = ACTIONS(284), - [sym__shortcode_open_escaped] = ACTIONS(287), - [sym__shortcode_open] = ACTIONS(290), - [sym__unclosed_span] = ACTIONS(192), - [sym__strong_emphasis_open_star] = ACTIONS(293), - [sym__strong_emphasis_open_underscore] = ACTIONS(296), - }, - [STATE(20)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(381), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(381), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(381), - [aux_sym__inline_no_star] = STATE(381), - [sym__emphasis_star] = STATE(381), - [sym__strong_emphasis_star] = STATE(381), - [sym__emphasis_underscore] = STATE(381), - [sym__strong_emphasis_underscore] = STATE(381), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(77), - [sym_entity_reference] = ACTIONS(80), - [sym_numeric_character_reference] = ACTIONS(80), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_GT] = ACTIONS(86), - [anon_sym_BANG] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(86), - [anon_sym_POUND] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(86), - [anon_sym_PERCENT] = ACTIONS(86), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_SQUOTE] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(86), - [anon_sym_PLUS] = ACTIONS(86), - [anon_sym_COMMA] = ACTIONS(86), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(83), - [anon_sym_SLASH] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(86), - [anon_sym_SEMI] = ACTIONS(86), - [anon_sym_EQ] = ACTIONS(86), - [anon_sym_QMARK] = ACTIONS(86), - [anon_sym_LBRACK] = ACTIONS(92), - [anon_sym_BSLASH] = ACTIONS(95), - [anon_sym_CARET] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(86), - [anon_sym_LBRACE] = ACTIONS(98), - [anon_sym_PIPE] = ACTIONS(86), - [anon_sym_TILDE] = ACTIONS(86), - [anon_sym_LPAREN] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(86), - [sym__newline_token] = ACTIONS(101), - [aux_sym_insert_token1] = ACTIONS(104), - [aux_sym_insert_token2] = ACTIONS(163), - [aux_sym_delete_token1] = ACTIONS(107), - [aux_sym_highlight_token1] = ACTIONS(110), - [aux_sym_edit_comment_token1] = ACTIONS(113), - [anon_sym_CARET_LBRACK] = ACTIONS(116), - [anon_sym_LBRACK_CARET] = ACTIONS(119), - [sym_uri_autolink] = ACTIONS(80), - [sym_email_autolink] = ACTIONS(80), - [sym__whitespace_ge_2] = ACTIONS(551), - [aux_sym__whitespace_token1] = ACTIONS(125), - [sym__word_no_digit] = ACTIONS(128), - [sym__digits] = ACTIONS(128), - [anon_sym_DASH_DASH] = ACTIONS(131), - [anon_sym_DASH_DASH_DASH] = ACTIONS(128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(128), - [sym__code_span_start] = ACTIONS(134), - [sym__emphasis_open_star] = ACTIONS(137), - [sym__emphasis_open_underscore] = ACTIONS(140), - [sym__last_token_punctuation] = ACTIONS(554), - [sym__strikeout_open] = ACTIONS(145), - [sym__latex_span_start] = ACTIONS(148), - [sym__single_quote_open] = ACTIONS(151), - [sym__double_quote_open] = ACTIONS(154), - [sym__superscript_open] = ACTIONS(157), - [sym__subscript_open] = ACTIONS(160), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(165), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(168), - [sym__cite_author_in_text] = ACTIONS(171), - [sym__cite_suppress_author] = ACTIONS(174), - [sym__shortcode_open_escaped] = ACTIONS(177), - [sym__shortcode_open] = ACTIONS(180), - [sym__unclosed_span] = ACTIONS(80), - [sym__strong_emphasis_open_star] = ACTIONS(183), - [sym__strong_emphasis_open_underscore] = ACTIONS(186), - }, - [STATE(21)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(382), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(382), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(382), - [aux_sym__inline_no_underscore] = STATE(382), - [sym__emphasis_star] = STATE(382), - [sym__strong_emphasis_star] = STATE(382), - [sym__emphasis_underscore] = STATE(382), - [sym__strong_emphasis_underscore] = STATE(382), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(189), - [sym_entity_reference] = ACTIONS(192), - [sym_numeric_character_reference] = ACTIONS(192), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_DQUOTE] = ACTIONS(198), - [anon_sym_POUND] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_PERCENT] = ACTIONS(198), - [anon_sym_AMP] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(198), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_COMMA] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_COLON] = ACTIONS(198), - [anon_sym_SEMI] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_QMARK] = ACTIONS(198), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_BSLASH] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_BQUOTE] = ACTIONS(198), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(198), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(198), - [anon_sym_RPAREN] = ACTIONS(198), - [sym__newline_token] = ACTIONS(213), - [aux_sym_insert_token1] = ACTIONS(216), - [aux_sym_insert_token2] = ACTIONS(163), - [aux_sym_delete_token1] = ACTIONS(219), - [aux_sym_highlight_token1] = ACTIONS(222), - [aux_sym_edit_comment_token1] = ACTIONS(225), - [anon_sym_CARET_LBRACK] = ACTIONS(228), - [anon_sym_LBRACK_CARET] = ACTIONS(231), - [sym_uri_autolink] = ACTIONS(192), - [sym_email_autolink] = ACTIONS(192), - [sym__whitespace_ge_2] = ACTIONS(556), - [aux_sym__whitespace_token1] = ACTIONS(237), - [sym__word_no_digit] = ACTIONS(240), - [sym__digits] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_DASH_DASH_DASH] = ACTIONS(240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(240), - [sym__code_span_start] = ACTIONS(246), - [sym__emphasis_open_star] = ACTIONS(249), - [sym__emphasis_open_underscore] = ACTIONS(252), - [sym__last_token_punctuation] = ACTIONS(559), - [sym__strikeout_open] = ACTIONS(257), - [sym__latex_span_start] = ACTIONS(260), - [sym__single_quote_open] = ACTIONS(263), - [sym__double_quote_open] = ACTIONS(266), - [sym__superscript_open] = ACTIONS(269), - [sym__subscript_open] = ACTIONS(272), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(278), - [sym__cite_author_in_text] = ACTIONS(281), - [sym__cite_suppress_author] = ACTIONS(284), - [sym__shortcode_open_escaped] = ACTIONS(287), - [sym__shortcode_open] = ACTIONS(290), - [sym__unclosed_span] = ACTIONS(192), - [sym__strong_emphasis_open_star] = ACTIONS(293), - [sym__strong_emphasis_open_underscore] = ACTIONS(296), - }, - [STATE(22)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(102), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(102), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(102), - [sym__emphasis_star] = STATE(102), - [sym__strong_emphasis_star] = STATE(102), - [sym__emphasis_underscore] = STATE(102), - [sym__strong_emphasis_underscore] = STATE(102), - [aux_sym_insert_repeat1] = STATE(102), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__last_token_punctuation] = ACTIONS(607), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(23)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(51), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(51), - [sym__text_base] = STATE(471), - [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(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__last_token_punctuation] = ACTIONS(639), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(24)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(129), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(129), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(129), - [sym__emphasis_star] = STATE(129), - [sym__strong_emphasis_star] = STATE(129), - [sym__emphasis_underscore] = STATE(129), - [sym__strong_emphasis_underscore] = STATE(129), - [aux_sym_insert_repeat1] = STATE(129), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(641), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__last_token_punctuation] = ACTIONS(643), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(25)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(159), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(159), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(159), - [sym__emphasis_star] = STATE(159), - [sym__strong_emphasis_star] = STATE(159), - [sym__emphasis_underscore] = STATE(159), - [sym__strong_emphasis_underscore] = STATE(159), - [aux_sym_insert_repeat1] = STATE(159), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(645), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__last_token_punctuation] = ACTIONS(647), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(26)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(188), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(188), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(188), - [sym__emphasis_star] = STATE(188), - [sym__strong_emphasis_star] = STATE(188), - [sym__emphasis_underscore] = STATE(188), - [sym__strong_emphasis_underscore] = STATE(188), - [aux_sym_insert_repeat1] = STATE(188), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__last_token_punctuation] = ACTIONS(651), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(27)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(217), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(217), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(217), - [sym__emphasis_star] = STATE(217), - [sym__strong_emphasis_star] = STATE(217), - [sym__emphasis_underscore] = STATE(217), - [sym__strong_emphasis_underscore] = STATE(217), - [aux_sym_insert_repeat1] = STATE(217), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(653), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__last_token_punctuation] = ACTIONS(655), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(28)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(247), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(247), - [sym__text_base] = STATE(471), - [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(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(657), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__last_token_punctuation] = ACTIONS(659), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(29)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(277), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(277), - [sym__text_base] = STATE(471), - [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(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(661), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__last_token_punctuation] = ACTIONS(663), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(30)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(306), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(306), - [sym__text_base] = STATE(471), - [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(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(665), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__last_token_punctuation] = ACTIONS(667), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(31)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(336), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(336), - [sym__text_base] = STATE(471), - [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(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(669), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__last_token_punctuation] = ACTIONS(671), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(32)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(366), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(366), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(366), - [sym__emphasis_star] = STATE(366), - [sym__strong_emphasis_star] = STATE(366), - [sym__emphasis_underscore] = STATE(366), - [sym__strong_emphasis_underscore] = STATE(366), - [aux_sym_insert_repeat1] = STATE(366), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__last_token_punctuation] = ACTIONS(675), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(33)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(396), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(396), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(396), - [sym__emphasis_star] = STATE(396), - [sym__strong_emphasis_star] = STATE(396), - [sym__emphasis_underscore] = STATE(396), - [sym__strong_emphasis_underscore] = STATE(396), - [aux_sym_insert_repeat1] = STATE(396), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(677), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__last_token_punctuation] = ACTIONS(679), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(34)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(725), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(35)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(755), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(36)] = { - [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(678), - [sym__link_text_non_empty] = STATE(562), - [sym_inline_link] = STATE(1543), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1434), - [sym__image_description] = STATE(2651), - [sym__image_description_non_empty] = STATE(2651), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(800), - [sym__word] = STATE(800), - [sym__soft_line_break] = STATE(1530), - [sym__inline_base] = STATE(1543), - [sym__text_base] = STATE(458), - [sym__inline_element] = STATE(1543), - [aux_sym__inline] = STATE(52), - [sym__emphasis_star] = STATE(1543), - [sym__strong_emphasis_star] = STATE(1543), - [sym__emphasis_underscore] = STATE(1543), - [sym__strong_emphasis_underscore] = STATE(1543), - [aux_sym__inline_base_repeat1] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(757), - [sym__backslash_escape] = ACTIONS(3), - [sym_entity_reference] = ACTIONS(5), - [sym_numeric_character_reference] = ACTIONS(5), - [anon_sym_LT] = ACTIONS(7), - [anon_sym_GT] = ACTIONS(9), - [anon_sym_BANG] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(9), - [anon_sym_PERCENT] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(9), - [anon_sym_PLUS] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(9), - [anon_sym_DASH] = ACTIONS(7), - [anon_sym_DOT] = ACTIONS(7), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_EQ] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_CARET] = ACTIONS(7), - [anon_sym_BQUOTE] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_PIPE] = ACTIONS(9), - [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(9), - [sym__newline_token] = ACTIONS(19), - [aux_sym_insert_token1] = ACTIONS(21), - [aux_sym_delete_token1] = ACTIONS(23), - [aux_sym_highlight_token1] = ACTIONS(25), - [aux_sym_edit_comment_token1] = ACTIONS(27), - [anon_sym_CARET_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_CARET] = ACTIONS(31), - [sym_uri_autolink] = ACTIONS(5), - [sym_email_autolink] = ACTIONS(5), - [sym__whitespace_ge_2] = ACTIONS(33), - [aux_sym__whitespace_token1] = ACTIONS(35), - [sym__word_no_digit] = ACTIONS(37), - [sym__digits] = ACTIONS(37), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(37), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym__code_span_start] = ACTIONS(41), - [sym__emphasis_open_star] = ACTIONS(43), - [sym__emphasis_open_underscore] = ACTIONS(45), - [sym__strikeout_open] = ACTIONS(49), - [sym__latex_span_start] = ACTIONS(51), - [sym__single_quote_open] = ACTIONS(53), - [sym__double_quote_open] = ACTIONS(55), - [sym__superscript_open] = ACTIONS(57), - [sym__subscript_open] = ACTIONS(59), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(61), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(63), - [sym__cite_author_in_text] = ACTIONS(65), - [sym__cite_suppress_author] = ACTIONS(67), - [sym__shortcode_open_escaped] = ACTIONS(69), - [sym__shortcode_open] = ACTIONS(71), - [sym__unclosed_span] = ACTIONS(5), - [sym__strong_emphasis_open_star] = ACTIONS(73), - [sym__strong_emphasis_open_underscore] = ACTIONS(75), - }, - [STATE(37)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(805), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), - }, - [STATE(38)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(883), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), - }, - [STATE(39)] = { - [sym_backslash_escape] = STATE(461), - [sym_commonmark_attribute] = STATE(461), - [sym_code_span] = STATE(461), - [sym_latex_span] = STATE(461), - [sym_insert] = STATE(461), - [sym_delete] = STATE(461), - [sym_highlight] = STATE(461), - [sym_edit_comment] = STATE(461), - [sym_superscript] = STATE(461), - [sym_subscript] = STATE(461), - [sym_strikeout] = STATE(461), - [sym_quoted_span] = STATE(461), - [sym_inline_note] = STATE(461), - [sym_citation] = STATE(461), - [sym_shortcode_escaped] = STATE(461), - [sym_shortcode] = STATE(461), - [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), - [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), - [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), - [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(66), - [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(883), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(40)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(68), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(68), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(1033), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(41)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), - [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(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(1109), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(42)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_close_star] = ACTIONS(1197), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(43)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - [sym__strong_emphasis_close_underscore] = ACTIONS(1273), - }, - [STATE(44)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(58), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(45)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(46)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(1299), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(47)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(1353), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(48)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(1355), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(49)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(1357), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(50)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(59), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(59), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(59), - [sym__emphasis_star] = STATE(59), - [sym__strong_emphasis_star] = STATE(59), - [sym__emphasis_underscore] = STATE(59), - [sym__strong_emphasis_underscore] = STATE(59), - [aux_sym_insert_repeat1] = STATE(59), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(51)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(1361), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(52)] = { - [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(678), - [sym__link_text_non_empty] = STATE(562), - [sym_inline_link] = STATE(1543), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1434), - [sym__image_description] = STATE(2651), - [sym__image_description_non_empty] = STATE(2651), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(800), - [sym__word] = STATE(800), - [sym__soft_line_break] = STATE(1530), - [sym__inline_base] = STATE(1543), - [sym__text_base] = STATE(458), - [sym__inline_element] = STATE(1543), - [aux_sym__inline] = STATE(52), - [sym__emphasis_star] = STATE(1543), - [sym__strong_emphasis_star] = STATE(1543), - [sym__emphasis_underscore] = STATE(1543), - [sym__strong_emphasis_underscore] = STATE(1543), - [aux_sym__inline_base_repeat1] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(1363), - [sym__backslash_escape] = ACTIONS(1365), - [sym_entity_reference] = ACTIONS(1368), - [sym_numeric_character_reference] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_DQUOTE] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_DOLLAR] = ACTIONS(1374), - [anon_sym_PERCENT] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_COMMA] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_DOT] = ACTIONS(1371), - [anon_sym_SLASH] = ACTIONS(1374), - [anon_sym_COLON] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_EQ] = ACTIONS(1374), - [anon_sym_QMARK] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_BSLASH] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1371), - [anon_sym_BQUOTE] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_RPAREN] = ACTIONS(1374), - [sym__newline_token] = ACTIONS(1389), - [aux_sym_insert_token1] = ACTIONS(1392), - [aux_sym_delete_token1] = ACTIONS(1395), - [aux_sym_highlight_token1] = ACTIONS(1398), - [aux_sym_edit_comment_token1] = ACTIONS(1401), - [anon_sym_CARET_LBRACK] = ACTIONS(1404), - [anon_sym_LBRACK_CARET] = ACTIONS(1407), - [sym_uri_autolink] = ACTIONS(1368), - [sym_email_autolink] = ACTIONS(1368), - [sym__whitespace_ge_2] = ACTIONS(1410), - [aux_sym__whitespace_token1] = ACTIONS(1413), - [sym__word_no_digit] = ACTIONS(1416), - [sym__digits] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1416), - [sym__code_span_start] = ACTIONS(1422), - [sym__emphasis_open_star] = ACTIONS(1425), - [sym__emphasis_open_underscore] = ACTIONS(1428), - [sym__strikeout_open] = ACTIONS(1431), - [sym__latex_span_start] = ACTIONS(1434), - [sym__single_quote_open] = ACTIONS(1437), - [sym__double_quote_open] = ACTIONS(1440), - [sym__superscript_open] = ACTIONS(1443), - [sym__subscript_open] = ACTIONS(1446), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1449), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1452), - [sym__cite_author_in_text] = ACTIONS(1455), - [sym__cite_suppress_author] = ACTIONS(1458), - [sym__shortcode_open_escaped] = ACTIONS(1461), - [sym__shortcode_open] = ACTIONS(1464), - [sym__unclosed_span] = ACTIONS(1368), - [sym__strong_emphasis_open_star] = ACTIONS(1467), - [sym__strong_emphasis_open_underscore] = ACTIONS(1470), - }, - [STATE(53)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(1517), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), - }, - [STATE(54)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1547), - [sym_entity_reference] = ACTIONS(1550), - [sym_numeric_character_reference] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_PERCENT] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_COLON] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_BSLASH] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_BQUOTE] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_TILDE] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [sym__newline_token] = ACTIONS(1571), - [aux_sym_insert_token1] = ACTIONS(1574), - [aux_sym_delete_token1] = ACTIONS(1577), - [aux_sym_highlight_token1] = ACTIONS(1580), - [aux_sym_edit_comment_token1] = ACTIONS(1583), - [anon_sym_CARET_LBRACK] = ACTIONS(1586), - [anon_sym_LBRACK_CARET] = ACTIONS(1589), - [sym_uri_autolink] = ACTIONS(1550), - [sym_email_autolink] = ACTIONS(1550), - [sym__whitespace_ge_2] = ACTIONS(1592), - [aux_sym__whitespace_token1] = ACTIONS(1595), - [sym__word_no_digit] = ACTIONS(1598), - [sym__digits] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1601), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1598), - [sym__code_span_start] = ACTIONS(1604), - [sym__emphasis_open_star] = ACTIONS(1607), - [sym__emphasis_open_underscore] = ACTIONS(1610), - [sym__emphasis_close_star] = ACTIONS(1613), - [sym__strikeout_open] = ACTIONS(1615), - [sym__latex_span_start] = ACTIONS(1618), - [sym__single_quote_open] = ACTIONS(1621), - [sym__double_quote_open] = ACTIONS(1624), - [sym__superscript_open] = ACTIONS(1627), - [sym__subscript_open] = ACTIONS(1630), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1633), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1636), - [sym__cite_author_in_text] = ACTIONS(1639), - [sym__cite_suppress_author] = ACTIONS(1642), - [sym__shortcode_open_escaped] = ACTIONS(1645), - [sym__shortcode_open] = ACTIONS(1648), - [sym__unclosed_span] = ACTIONS(1550), - [sym__strong_emphasis_open_star] = ACTIONS(1651), - [sym__strong_emphasis_open_underscore] = ACTIONS(1654), - }, - [STATE(55)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(1657), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(56)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(1659), - [sym_entity_reference] = ACTIONS(1662), - [sym_numeric_character_reference] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(1665), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1668), - [anon_sym_POUND] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PERCENT] = ACTIONS(1668), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_SQUOTE] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_DOT] = ACTIONS(1665), - [anon_sym_SLASH] = ACTIONS(1668), - [anon_sym_COLON] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_EQ] = ACTIONS(1668), - [anon_sym_QMARK] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_BSLASH] = ACTIONS(1677), - [anon_sym_CARET] = ACTIONS(1665), - [anon_sym_BQUOTE] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [sym__newline_token] = ACTIONS(1683), - [aux_sym_insert_token1] = ACTIONS(1686), - [aux_sym_delete_token1] = ACTIONS(1689), - [aux_sym_highlight_token1] = ACTIONS(1692), - [aux_sym_edit_comment_token1] = ACTIONS(1695), - [anon_sym_CARET_LBRACK] = ACTIONS(1698), - [anon_sym_LBRACK_CARET] = ACTIONS(1701), - [sym_uri_autolink] = ACTIONS(1662), - [sym_email_autolink] = ACTIONS(1662), - [sym__whitespace_ge_2] = ACTIONS(1704), - [aux_sym__whitespace_token1] = ACTIONS(1707), - [sym__word_no_digit] = ACTIONS(1710), - [sym__digits] = ACTIONS(1710), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1710), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1710), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1719), - [sym__emphasis_open_underscore] = ACTIONS(1722), - [sym__emphasis_close_underscore] = ACTIONS(1725), - [sym__strikeout_open] = ACTIONS(1727), - [sym__latex_span_start] = ACTIONS(1730), - [sym__single_quote_open] = ACTIONS(1733), - [sym__double_quote_open] = ACTIONS(1736), - [sym__superscript_open] = ACTIONS(1739), - [sym__subscript_open] = ACTIONS(1742), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1745), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1748), - [sym__cite_author_in_text] = ACTIONS(1751), - [sym__cite_suppress_author] = ACTIONS(1754), - [sym__shortcode_open_escaped] = ACTIONS(1757), - [sym__shortcode_open] = ACTIONS(1760), - [sym__unclosed_span] = ACTIONS(1662), - [sym__strong_emphasis_open_star] = ACTIONS(1763), - [sym__strong_emphasis_open_underscore] = ACTIONS(1766), - }, - [STATE(57)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(1769), - [sym_entity_reference] = ACTIONS(1772), - [sym_numeric_character_reference] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1775), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_DOT] = ACTIONS(1775), - [anon_sym_SLASH] = ACTIONS(1778), - [anon_sym_COLON] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_QMARK] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1784), - [anon_sym_BSLASH] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_BQUOTE] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1778), - [sym__newline_token] = ACTIONS(1793), - [aux_sym_insert_token1] = ACTIONS(1796), - [aux_sym_delete_token1] = ACTIONS(1799), - [aux_sym_highlight_token1] = ACTIONS(1802), - [aux_sym_edit_comment_token1] = ACTIONS(1805), - [anon_sym_CARET_LBRACK] = ACTIONS(1808), - [anon_sym_LBRACK_CARET] = ACTIONS(1811), - [sym_uri_autolink] = ACTIONS(1772), - [sym_email_autolink] = ACTIONS(1772), - [sym__whitespace_ge_2] = ACTIONS(1814), - [aux_sym__whitespace_token1] = ACTIONS(1817), - [sym__word_no_digit] = ACTIONS(1820), - [sym__digits] = ACTIONS(1820), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1820), - [sym__code_span_start] = ACTIONS(1826), - [sym__emphasis_open_star] = ACTIONS(1829), - [sym__emphasis_open_underscore] = ACTIONS(1832), - [sym__strikeout_open] = ACTIONS(1835), - [sym__strikeout_close] = ACTIONS(1838), - [sym__latex_span_start] = ACTIONS(1840), - [sym__single_quote_open] = ACTIONS(1843), - [sym__double_quote_open] = ACTIONS(1846), - [sym__superscript_open] = ACTIONS(1849), - [sym__subscript_open] = ACTIONS(1852), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1855), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1858), - [sym__cite_author_in_text] = ACTIONS(1861), - [sym__cite_suppress_author] = ACTIONS(1864), - [sym__shortcode_open_escaped] = ACTIONS(1867), - [sym__shortcode_open] = ACTIONS(1870), - [sym__unclosed_span] = ACTIONS(1772), - [sym__strong_emphasis_open_star] = ACTIONS(1873), - [sym__strong_emphasis_open_underscore] = ACTIONS(1876), - }, - [STATE(58)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(59)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(60)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(40), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(40), - [sym__text_base] = STATE(463), - [sym__inline_element] = 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_insert_repeat1] = STATE(40), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(1883), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(61)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(41), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(41), - [sym__text_base] = STATE(465), - [sym__inline_element] = 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_insert_repeat1] = STATE(41), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(1885), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(62)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(1887), - [sym_entity_reference] = ACTIONS(1890), - [sym_numeric_character_reference] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_PERCENT] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1896), - [anon_sym_COLON] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_BSLASH] = ACTIONS(1905), - [anon_sym_RBRACK] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym_BQUOTE] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_TILDE] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [sym__newline_token] = ACTIONS(1911), - [aux_sym_insert_token1] = ACTIONS(1914), - [aux_sym_delete_token1] = ACTIONS(1917), - [aux_sym_highlight_token1] = ACTIONS(1920), - [aux_sym_edit_comment_token1] = ACTIONS(1923), - [anon_sym_CARET_LBRACK] = ACTIONS(1926), - [anon_sym_LBRACK_CARET] = ACTIONS(1929), - [sym_uri_autolink] = ACTIONS(1890), - [sym_email_autolink] = ACTIONS(1890), - [sym__whitespace_ge_2] = ACTIONS(1932), - [aux_sym__whitespace_token1] = ACTIONS(1935), - [sym__word_no_digit] = ACTIONS(1938), - [sym__digits] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), - [sym__code_span_start] = ACTIONS(1944), - [sym__emphasis_open_star] = ACTIONS(1947), - [sym__emphasis_open_underscore] = ACTIONS(1950), - [sym__strikeout_open] = ACTIONS(1953), - [sym__latex_span_start] = ACTIONS(1956), - [sym__single_quote_open] = ACTIONS(1959), - [sym__double_quote_open] = ACTIONS(1962), - [sym__superscript_open] = ACTIONS(1965), - [sym__subscript_open] = ACTIONS(1968), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1974), - [sym__cite_author_in_text] = ACTIONS(1977), - [sym__cite_suppress_author] = ACTIONS(1980), - [sym__shortcode_open_escaped] = ACTIONS(1983), - [sym__shortcode_open] = ACTIONS(1986), - [sym__unclosed_span] = ACTIONS(1890), - [sym__strong_emphasis_open_star] = ACTIONS(1989), - [sym__strong_emphasis_open_underscore] = ACTIONS(1992), - }, - [STATE(63)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1995), - [sym_entity_reference] = ACTIONS(1998), - [sym_numeric_character_reference] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(2001), - [anon_sym_GT] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2004), - [anon_sym_POUND] = ACTIONS(2004), - [anon_sym_DOLLAR] = ACTIONS(2004), - [anon_sym_PERCENT] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_COMMA] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(2001), - [anon_sym_SLASH] = ACTIONS(2004), - [anon_sym_COLON] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_EQ] = ACTIONS(2004), - [anon_sym_QMARK] = ACTIONS(2004), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_BSLASH] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2001), - [anon_sym_BQUOTE] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2004), - [sym__newline_token] = ACTIONS(2019), - [aux_sym_insert_token1] = ACTIONS(2022), - [aux_sym_delete_token1] = ACTIONS(2025), - [aux_sym_highlight_token1] = ACTIONS(2028), - [aux_sym_edit_comment_token1] = ACTIONS(2031), - [anon_sym_CARET_LBRACK] = ACTIONS(2034), - [anon_sym_LBRACK_CARET] = ACTIONS(2037), - [sym_uri_autolink] = ACTIONS(1998), - [sym_email_autolink] = ACTIONS(1998), - [sym__whitespace_ge_2] = ACTIONS(2040), - [aux_sym__whitespace_token1] = ACTIONS(2043), - [sym__word_no_digit] = ACTIONS(2046), - [sym__digits] = ACTIONS(2046), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2046), - [sym__code_span_start] = ACTIONS(2052), - [sym__emphasis_open_star] = ACTIONS(2055), - [sym__emphasis_open_underscore] = ACTIONS(2058), - [sym__strikeout_open] = ACTIONS(2061), - [sym__latex_span_start] = ACTIONS(2064), - [sym__single_quote_open] = ACTIONS(2067), - [sym__double_quote_open] = ACTIONS(2070), - [sym__superscript_open] = ACTIONS(2073), - [sym__subscript_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2082), - [sym__cite_author_in_text] = ACTIONS(2085), - [sym__cite_suppress_author] = ACTIONS(2088), - [sym__shortcode_open_escaped] = ACTIONS(2091), - [sym__shortcode_open] = ACTIONS(2094), - [sym__unclosed_span] = ACTIONS(1998), - [sym__strong_emphasis_open_star] = ACTIONS(2097), - [sym__strong_emphasis_close_star] = ACTIONS(1613), - [sym__strong_emphasis_open_underscore] = ACTIONS(2100), - }, - [STATE(64)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(2103), - [sym_entity_reference] = ACTIONS(2106), - [sym_numeric_character_reference] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_DQUOTE] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(2112), - [anon_sym_DOLLAR] = ACTIONS(2112), - [anon_sym_PERCENT] = ACTIONS(2112), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2112), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2112), - [anon_sym_COLON] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_EQ] = ACTIONS(2112), - [anon_sym_QMARK] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_BSLASH] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(2112), - [sym__newline_token] = ACTIONS(2127), - [aux_sym_insert_token1] = ACTIONS(2130), - [aux_sym_delete_token1] = ACTIONS(2133), - [aux_sym_highlight_token1] = ACTIONS(2136), - [aux_sym_edit_comment_token1] = ACTIONS(2139), - [anon_sym_CARET_LBRACK] = ACTIONS(2142), - [anon_sym_LBRACK_CARET] = ACTIONS(2145), - [sym_uri_autolink] = ACTIONS(2106), - [sym_email_autolink] = ACTIONS(2106), - [sym__whitespace_ge_2] = ACTIONS(2148), - [aux_sym__whitespace_token1] = ACTIONS(2151), - [sym__word_no_digit] = ACTIONS(2154), - [sym__digits] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2154), - [sym__code_span_start] = ACTIONS(2160), - [sym__emphasis_open_star] = ACTIONS(2163), - [sym__emphasis_open_underscore] = ACTIONS(2166), - [sym__strikeout_open] = ACTIONS(2169), - [sym__latex_span_start] = ACTIONS(2172), - [sym__single_quote_open] = ACTIONS(2175), - [sym__double_quote_open] = ACTIONS(2178), - [sym__superscript_open] = ACTIONS(2181), - [sym__subscript_open] = ACTIONS(2184), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2187), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2190), - [sym__cite_author_in_text] = ACTIONS(2193), - [sym__cite_suppress_author] = ACTIONS(2196), - [sym__shortcode_open_escaped] = ACTIONS(2199), - [sym__shortcode_open] = ACTIONS(2202), - [sym__unclosed_span] = ACTIONS(2106), - [sym__strong_emphasis_open_star] = ACTIONS(2205), - [sym__strong_emphasis_open_underscore] = ACTIONS(2208), - [sym__strong_emphasis_close_underscore] = ACTIONS(1725), - }, - [STATE(65)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(2211), - [sym_entity_reference] = ACTIONS(2214), - [sym_numeric_character_reference] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(2220), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_PERCENT] = ACTIONS(2220), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym_STAR] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_COMMA] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_SLASH] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2220), - [anon_sym_EQ] = ACTIONS(2220), - [anon_sym_QMARK] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_BSLASH] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2217), - [anon_sym_BQUOTE] = ACTIONS(2220), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_RPAREN] = ACTIONS(2220), - [sym__newline_token] = ACTIONS(2235), - [aux_sym_insert_token1] = ACTIONS(2238), - [aux_sym_delete_token1] = ACTIONS(2241), - [aux_sym_highlight_token1] = ACTIONS(2244), - [aux_sym_edit_comment_token1] = ACTIONS(2247), - [anon_sym_CARET_LBRACK] = ACTIONS(2250), - [anon_sym_LBRACK_CARET] = ACTIONS(2253), - [sym_uri_autolink] = ACTIONS(2214), - [sym_email_autolink] = ACTIONS(2214), - [sym__whitespace_ge_2] = ACTIONS(2256), - [aux_sym__whitespace_token1] = ACTIONS(2259), - [sym__word_no_digit] = ACTIONS(2262), - [sym__digits] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2262), - [sym__code_span_start] = ACTIONS(2268), - [sym__emphasis_open_star] = ACTIONS(2271), - [sym__emphasis_open_underscore] = ACTIONS(2274), - [sym__strikeout_open] = ACTIONS(2277), - [sym__latex_span_start] = ACTIONS(2280), - [sym__single_quote_open] = ACTIONS(2283), - [sym__single_quote_close] = ACTIONS(1838), - [sym__double_quote_open] = ACTIONS(2286), - [sym__superscript_open] = ACTIONS(2289), - [sym__subscript_open] = ACTIONS(2292), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2295), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2298), - [sym__cite_author_in_text] = ACTIONS(2301), - [sym__cite_suppress_author] = ACTIONS(2304), - [sym__shortcode_open_escaped] = ACTIONS(2307), - [sym__shortcode_open] = ACTIONS(2310), - [sym__unclosed_span] = ACTIONS(2214), - [sym__strong_emphasis_open_star] = ACTIONS(2313), - [sym__strong_emphasis_open_underscore] = ACTIONS(2316), - }, - [STATE(66)] = { - [sym_backslash_escape] = STATE(461), - [sym_commonmark_attribute] = STATE(461), - [sym_code_span] = STATE(461), - [sym_latex_span] = STATE(461), - [sym_insert] = STATE(461), - [sym_delete] = STATE(461), - [sym_highlight] = STATE(461), - [sym_edit_comment] = STATE(461), - [sym_superscript] = STATE(461), - [sym_subscript] = STATE(461), - [sym_strikeout] = STATE(461), - [sym_quoted_span] = STATE(461), - [sym_inline_note] = STATE(461), - [sym_citation] = STATE(461), - [sym_shortcode_escaped] = STATE(461), - [sym_shortcode] = STATE(461), - [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), - [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), - [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), - [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(66), - [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(2319), - [sym_entity_reference] = ACTIONS(2322), - [sym_numeric_character_reference] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_GT] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_POUND] = ACTIONS(2328), - [anon_sym_DOLLAR] = ACTIONS(2328), - [anon_sym_PERCENT] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_COMMA] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_DOT] = ACTIONS(2325), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_COLON] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_EQ] = ACTIONS(2328), - [anon_sym_QMARK] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_BSLASH] = ACTIONS(2337), - [anon_sym_CARET] = ACTIONS(2325), - [anon_sym_BQUOTE] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2340), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_RPAREN] = ACTIONS(2328), - [sym__newline_token] = ACTIONS(2343), - [aux_sym_insert_token1] = ACTIONS(2346), - [aux_sym_delete_token1] = ACTIONS(2349), - [aux_sym_highlight_token1] = ACTIONS(2352), - [aux_sym_edit_comment_token1] = ACTIONS(2355), - [anon_sym_CARET_LBRACK] = ACTIONS(2358), - [anon_sym_LBRACK_CARET] = ACTIONS(2361), - [sym_uri_autolink] = ACTIONS(2322), - [sym_email_autolink] = ACTIONS(2322), - [sym__whitespace_ge_2] = ACTIONS(2364), - [aux_sym__whitespace_token1] = ACTIONS(2367), - [sym__word_no_digit] = ACTIONS(2370), - [sym__digits] = ACTIONS(2370), - [anon_sym_DASH_DASH] = ACTIONS(2373), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2370), - [sym__code_span_start] = ACTIONS(2376), - [sym__emphasis_open_star] = ACTIONS(2379), - [sym__emphasis_open_underscore] = ACTIONS(2382), - [sym__strikeout_open] = ACTIONS(2385), - [sym__latex_span_start] = ACTIONS(2388), - [sym__single_quote_open] = ACTIONS(2391), - [sym__double_quote_open] = ACTIONS(2394), - [sym__double_quote_close] = ACTIONS(1838), - [sym__superscript_open] = ACTIONS(2397), - [sym__subscript_open] = ACTIONS(2400), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2403), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2406), - [sym__cite_author_in_text] = ACTIONS(2409), - [sym__cite_suppress_author] = ACTIONS(2412), - [sym__shortcode_open_escaped] = ACTIONS(2415), - [sym__shortcode_open] = ACTIONS(2418), - [sym__unclosed_span] = ACTIONS(2322), - [sym__strong_emphasis_open_star] = ACTIONS(2421), - [sym__strong_emphasis_open_underscore] = ACTIONS(2424), - }, - [STATE(67)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(45), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2427), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(68)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(68), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(68), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(2429), - [sym_entity_reference] = ACTIONS(2432), - [sym_numeric_character_reference] = ACTIONS(2432), - [anon_sym_LT] = ACTIONS(2435), - [anon_sym_GT] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2438), - [anon_sym_POUND] = ACTIONS(2438), - [anon_sym_DOLLAR] = ACTIONS(2438), - [anon_sym_PERCENT] = ACTIONS(2438), - [anon_sym_AMP] = ACTIONS(2435), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_STAR] = ACTIONS(2438), - [anon_sym_PLUS] = ACTIONS(2438), - [anon_sym_COMMA] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2435), - [anon_sym_DOT] = ACTIONS(2435), - [anon_sym_SLASH] = ACTIONS(2438), - [anon_sym_COLON] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_EQ] = ACTIONS(2438), - [anon_sym_QMARK] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2444), - [anon_sym_BSLASH] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2435), - [anon_sym_BQUOTE] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_PIPE] = ACTIONS(2438), - [anon_sym_TILDE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_RPAREN] = ACTIONS(2438), - [sym__newline_token] = ACTIONS(2453), - [aux_sym_insert_token1] = ACTIONS(2456), - [aux_sym_delete_token1] = ACTIONS(2459), - [aux_sym_highlight_token1] = ACTIONS(2462), - [aux_sym_edit_comment_token1] = ACTIONS(2465), - [anon_sym_CARET_LBRACK] = ACTIONS(2468), - [anon_sym_LBRACK_CARET] = ACTIONS(2471), - [sym_uri_autolink] = ACTIONS(2432), - [sym_email_autolink] = ACTIONS(2432), - [sym__whitespace_ge_2] = ACTIONS(2474), - [aux_sym__whitespace_token1] = ACTIONS(2477), - [sym__word_no_digit] = ACTIONS(2480), - [sym__digits] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2483), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2480), - [sym__code_span_start] = ACTIONS(2486), - [sym__emphasis_open_star] = ACTIONS(2489), - [sym__emphasis_open_underscore] = ACTIONS(2492), - [sym__strikeout_open] = ACTIONS(2495), - [sym__latex_span_start] = ACTIONS(2498), - [sym__single_quote_open] = ACTIONS(2501), - [sym__double_quote_open] = ACTIONS(2504), - [sym__superscript_open] = ACTIONS(2507), - [sym__superscript_close] = ACTIONS(1838), - [sym__subscript_open] = ACTIONS(2510), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2513), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2516), - [sym__cite_author_in_text] = ACTIONS(2519), - [sym__cite_suppress_author] = ACTIONS(2522), - [sym__shortcode_open_escaped] = ACTIONS(2525), - [sym__shortcode_open] = ACTIONS(2528), - [sym__unclosed_span] = ACTIONS(2432), - [sym__strong_emphasis_open_star] = ACTIONS(2531), - [sym__strong_emphasis_open_underscore] = ACTIONS(2534), - }, - [STATE(69)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(46), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(46), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(46), - [sym__emphasis_star] = STATE(46), - [sym__strong_emphasis_star] = STATE(46), - [sym__emphasis_underscore] = STATE(46), - [sym__strong_emphasis_underscore] = STATE(46), - [aux_sym_insert_repeat1] = STATE(46), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2537), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), - [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(2539), - [sym_entity_reference] = ACTIONS(2542), - [sym_numeric_character_reference] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_GT] = ACTIONS(2548), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_DQUOTE] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(2548), - [anon_sym_DOLLAR] = ACTIONS(2548), - [anon_sym_PERCENT] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2545), - [anon_sym_SQUOTE] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2548), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_DOT] = ACTIONS(2545), - [anon_sym_SLASH] = ACTIONS(2548), - [anon_sym_COLON] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_EQ] = ACTIONS(2548), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2554), - [anon_sym_BSLASH] = ACTIONS(2557), - [anon_sym_CARET] = ACTIONS(2545), - [anon_sym_BQUOTE] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [sym__newline_token] = ACTIONS(2563), - [aux_sym_insert_token1] = ACTIONS(2566), - [aux_sym_delete_token1] = ACTIONS(2569), - [aux_sym_highlight_token1] = ACTIONS(2572), - [aux_sym_edit_comment_token1] = ACTIONS(2575), - [anon_sym_CARET_LBRACK] = ACTIONS(2578), - [anon_sym_LBRACK_CARET] = ACTIONS(2581), - [sym_uri_autolink] = ACTIONS(2542), - [sym_email_autolink] = ACTIONS(2542), - [sym__whitespace_ge_2] = ACTIONS(2584), - [aux_sym__whitespace_token1] = ACTIONS(2587), - [sym__word_no_digit] = ACTIONS(2590), - [sym__digits] = ACTIONS(2590), - [anon_sym_DASH_DASH] = ACTIONS(2593), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2590), - [sym__code_span_start] = ACTIONS(2596), - [sym__emphasis_open_star] = ACTIONS(2599), - [sym__emphasis_open_underscore] = ACTIONS(2602), - [sym__strikeout_open] = ACTIONS(2605), - [sym__latex_span_start] = ACTIONS(2608), - [sym__single_quote_open] = ACTIONS(2611), - [sym__double_quote_open] = ACTIONS(2614), - [sym__superscript_open] = ACTIONS(2617), - [sym__subscript_open] = ACTIONS(2620), - [sym__subscript_close] = ACTIONS(1838), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2623), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2626), - [sym__cite_author_in_text] = ACTIONS(2629), - [sym__cite_suppress_author] = ACTIONS(2632), - [sym__shortcode_open_escaped] = ACTIONS(2635), - [sym__shortcode_open] = ACTIONS(2638), - [sym__unclosed_span] = ACTIONS(2542), - [sym__strong_emphasis_open_star] = ACTIONS(2641), - [sym__strong_emphasis_open_underscore] = ACTIONS(2644), - }, - [STATE(71)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(47), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(47), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(47), - [sym__emphasis_star] = STATE(47), - [sym__strong_emphasis_star] = STATE(47), - [sym__emphasis_underscore] = STATE(47), - [sym__strong_emphasis_underscore] = STATE(47), - [aux_sym_insert_repeat1] = STATE(47), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2647), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(72)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(48), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(48), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(48), - [sym__emphasis_star] = STATE(48), - [sym__strong_emphasis_star] = STATE(48), - [sym__emphasis_underscore] = STATE(48), - [sym__strong_emphasis_underscore] = STATE(48), - [aux_sym_insert_repeat1] = STATE(48), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2649), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(73)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(2651), - [sym_entity_reference] = ACTIONS(2654), - [sym_numeric_character_reference] = ACTIONS(2654), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2660), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_POUND] = ACTIONS(2660), - [anon_sym_DOLLAR] = ACTIONS(2660), - [anon_sym_PERCENT] = ACTIONS(2660), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2660), - [anon_sym_STAR] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_DOT] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2660), - [anon_sym_COLON] = ACTIONS(2660), - [anon_sym_SEMI] = ACTIONS(2660), - [anon_sym_EQ] = ACTIONS(2660), - [anon_sym_QMARK] = ACTIONS(2660), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_BSLASH] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_BQUOTE] = ACTIONS(2660), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_PIPE] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2660), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_RPAREN] = ACTIONS(2660), - [sym__newline_token] = ACTIONS(2675), - [aux_sym_insert_token1] = ACTIONS(2678), - [aux_sym_insert_token2] = ACTIONS(1838), - [aux_sym_delete_token1] = ACTIONS(2681), - [aux_sym_highlight_token1] = ACTIONS(2684), - [aux_sym_edit_comment_token1] = ACTIONS(2687), - [anon_sym_CARET_LBRACK] = ACTIONS(2690), - [anon_sym_LBRACK_CARET] = ACTIONS(2693), - [sym_uri_autolink] = ACTIONS(2654), - [sym_email_autolink] = ACTIONS(2654), - [sym__whitespace_ge_2] = ACTIONS(2696), - [aux_sym__whitespace_token1] = ACTIONS(2699), - [sym__word_no_digit] = ACTIONS(2702), - [sym__digits] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2705), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2702), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2702), - [sym__code_span_start] = ACTIONS(2708), - [sym__emphasis_open_star] = ACTIONS(2711), - [sym__emphasis_open_underscore] = ACTIONS(2714), - [sym__strikeout_open] = ACTIONS(2717), - [sym__latex_span_start] = ACTIONS(2720), - [sym__single_quote_open] = ACTIONS(2723), - [sym__double_quote_open] = ACTIONS(2726), - [sym__superscript_open] = ACTIONS(2729), - [sym__subscript_open] = ACTIONS(2732), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2735), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2738), - [sym__cite_author_in_text] = ACTIONS(2741), - [sym__cite_suppress_author] = ACTIONS(2744), - [sym__shortcode_open_escaped] = ACTIONS(2747), - [sym__shortcode_open] = ACTIONS(2750), - [sym__unclosed_span] = ACTIONS(2654), - [sym__strong_emphasis_open_star] = ACTIONS(2753), - [sym__strong_emphasis_open_underscore] = ACTIONS(2756), - }, - [STATE(74)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(49), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(49), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(49), - [sym__emphasis_star] = STATE(49), - [sym__strong_emphasis_star] = STATE(49), - [sym__emphasis_underscore] = STATE(49), - [sym__strong_emphasis_underscore] = STATE(49), - [aux_sym_insert_repeat1] = STATE(49), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2759), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(75)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(2761), - [sym_entity_reference] = ACTIONS(2764), - [sym_numeric_character_reference] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_GT] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2773), - [anon_sym_DQUOTE] = ACTIONS(2770), - [anon_sym_POUND] = ACTIONS(2770), - [anon_sym_DOLLAR] = ACTIONS(2770), - [anon_sym_PERCENT] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_PLUS] = ACTIONS(2770), - [anon_sym_COMMA] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_DOT] = ACTIONS(2767), - [anon_sym_SLASH] = ACTIONS(2770), - [anon_sym_COLON] = ACTIONS(2770), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym_EQ] = ACTIONS(2770), - [anon_sym_QMARK] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_BSLASH] = ACTIONS(2779), - [anon_sym_RBRACK] = ACTIONS(1838), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_BQUOTE] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_RPAREN] = ACTIONS(2770), - [sym__newline_token] = ACTIONS(2785), - [aux_sym_insert_token1] = ACTIONS(2788), - [aux_sym_delete_token1] = ACTIONS(2791), - [aux_sym_highlight_token1] = ACTIONS(2794), - [aux_sym_edit_comment_token1] = ACTIONS(2797), - [anon_sym_CARET_LBRACK] = ACTIONS(2800), - [anon_sym_LBRACK_CARET] = ACTIONS(2803), - [sym_uri_autolink] = ACTIONS(2764), - [sym_email_autolink] = ACTIONS(2764), - [sym__whitespace_ge_2] = ACTIONS(2806), - [aux_sym__whitespace_token1] = ACTIONS(2809), - [sym__word_no_digit] = ACTIONS(2812), - [sym__digits] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2812), - [sym__code_span_start] = ACTIONS(2818), - [sym__emphasis_open_star] = ACTIONS(2821), - [sym__emphasis_open_underscore] = ACTIONS(2824), - [sym__strikeout_open] = ACTIONS(2827), - [sym__latex_span_start] = ACTIONS(2830), - [sym__single_quote_open] = ACTIONS(2833), - [sym__double_quote_open] = ACTIONS(2836), - [sym__superscript_open] = ACTIONS(2839), - [sym__subscript_open] = ACTIONS(2842), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2848), - [sym__cite_author_in_text] = ACTIONS(2851), - [sym__cite_suppress_author] = ACTIONS(2854), - [sym__shortcode_open_escaped] = ACTIONS(2857), - [sym__shortcode_open] = ACTIONS(2860), - [sym__unclosed_span] = ACTIONS(2764), - [sym__strong_emphasis_open_star] = ACTIONS(2863), - [sym__strong_emphasis_open_underscore] = ACTIONS(2866), - }, - [STATE(76)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(89), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(89), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(89), - [sym__emphasis_star] = STATE(89), - [sym__strong_emphasis_star] = STATE(89), - [sym__emphasis_underscore] = STATE(89), - [sym__strong_emphasis_underscore] = STATE(89), - [aux_sym_insert_repeat1] = STATE(89), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(2869), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), - }, - [STATE(77)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(90), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(90), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(90), - [sym__emphasis_star] = STATE(90), - [sym__strong_emphasis_star] = STATE(90), - [sym__emphasis_underscore] = STATE(90), - [sym__strong_emphasis_underscore] = STATE(90), - [aux_sym_insert_repeat1] = STATE(90), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(2871), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), - }, - [STATE(78)] = { - [sym_backslash_escape] = STATE(461), - [sym_commonmark_attribute] = STATE(461), - [sym_code_span] = STATE(461), - [sym_latex_span] = STATE(461), - [sym_insert] = STATE(461), - [sym_delete] = STATE(461), - [sym_highlight] = STATE(461), - [sym_edit_comment] = STATE(461), - [sym_superscript] = STATE(461), - [sym_subscript] = STATE(461), - [sym_strikeout] = STATE(461), - [sym_quoted_span] = STATE(461), - [sym_inline_note] = STATE(461), - [sym_citation] = STATE(461), - [sym_shortcode_escaped] = STATE(461), - [sym_shortcode] = STATE(461), - [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(91), - [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), - [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(91), - [sym__text_base] = STATE(461), - [sym__inline_element] = STATE(91), - [sym__emphasis_star] = STATE(91), - [sym__strong_emphasis_star] = STATE(91), - [sym__emphasis_underscore] = STATE(91), - [sym__strong_emphasis_underscore] = STATE(91), - [aux_sym_insert_repeat1] = STATE(91), - [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(2871), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(79)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(92), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(92), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(92), - [sym__emphasis_star] = STATE(92), - [sym__strong_emphasis_star] = STATE(92), - [sym__emphasis_underscore] = STATE(92), - [sym__strong_emphasis_underscore] = STATE(92), - [aux_sym_insert_repeat1] = STATE(92), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(2873), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(80)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(93), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(93), - [sym__text_base] = STATE(465), - [sym__inline_element] = STATE(93), - [sym__emphasis_star] = STATE(93), - [sym__strong_emphasis_star] = STATE(93), - [sym__emphasis_underscore] = STATE(93), - [sym__strong_emphasis_underscore] = STATE(93), - [aux_sym_insert_repeat1] = STATE(93), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(2875), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(81)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(96), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2877), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(82)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(97), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(97), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(97), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2879), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(83)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(98), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(98), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(98), - [sym__emphasis_star] = STATE(98), - [sym__strong_emphasis_star] = STATE(98), - [sym__emphasis_underscore] = STATE(98), - [sym__strong_emphasis_underscore] = STATE(98), - [aux_sym_insert_repeat1] = STATE(98), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2881), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(84)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(99), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(99), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(99), - [sym__emphasis_star] = STATE(99), - [sym__strong_emphasis_star] = STATE(99), - [sym__emphasis_underscore] = STATE(99), - [sym__strong_emphasis_underscore] = STATE(99), - [aux_sym_insert_repeat1] = STATE(99), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2883), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(85)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(100), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(100), - [sym__text_base] = STATE(473), - [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(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2885), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(86)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(37), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(37), - [sym__text_base] = STATE(456), - [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), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(2887), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), - }, - [STATE(87)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(2889), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), - }, - [STATE(88)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(2891), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(89)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(2893), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), - }, - [STATE(90)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(2895), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), - }, - [STATE(91)] = { - [sym_backslash_escape] = STATE(461), - [sym_commonmark_attribute] = STATE(461), - [sym_code_span] = STATE(461), - [sym_latex_span] = STATE(461), - [sym_insert] = STATE(461), - [sym_delete] = STATE(461), - [sym_highlight] = STATE(461), - [sym_edit_comment] = STATE(461), - [sym_superscript] = STATE(461), - [sym_subscript] = STATE(461), - [sym_strikeout] = STATE(461), - [sym_quoted_span] = STATE(461), - [sym_inline_note] = STATE(461), - [sym_citation] = STATE(461), - [sym_shortcode_escaped] = STATE(461), - [sym_shortcode] = STATE(461), - [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), - [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), - [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), - [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(66), - [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(2895), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(92)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(68), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(68), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(2897), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(93)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), - [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(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(2899), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(94)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_close_star] = ACTIONS(2901), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(95)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - [sym__strong_emphasis_close_underscore] = ACTIONS(2903), - }, - [STATE(96)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2905), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(97)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2907), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(98)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2909), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(99)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2911), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(100)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2913), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(101)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(104), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(104), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(104), - [sym__emphasis_star] = STATE(104), - [sym__strong_emphasis_star] = STATE(104), - [sym__emphasis_underscore] = STATE(104), - [sym__strong_emphasis_underscore] = STATE(104), - [aux_sym_insert_repeat1] = STATE(104), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(102)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2917), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(103)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(2919), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), - }, - [STATE(104)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2921), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(105)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(116), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(116), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(116), - [sym__emphasis_star] = STATE(116), - [sym__strong_emphasis_star] = STATE(116), - [sym__emphasis_underscore] = STATE(116), - [sym__strong_emphasis_underscore] = STATE(116), - [aux_sym_insert_repeat1] = STATE(116), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(2923), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), - }, - [STATE(106)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(117), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(117), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(117), - [sym__emphasis_star] = STATE(117), - [sym__strong_emphasis_star] = STATE(117), - [sym__emphasis_underscore] = STATE(117), - [sym__strong_emphasis_underscore] = STATE(117), - [aux_sym_insert_repeat1] = STATE(117), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(2925), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), - }, - [STATE(107)] = { - [sym_backslash_escape] = STATE(461), - [sym_commonmark_attribute] = STATE(461), - [sym_code_span] = STATE(461), - [sym_latex_span] = STATE(461), - [sym_insert] = STATE(461), - [sym_delete] = STATE(461), - [sym_highlight] = STATE(461), - [sym_edit_comment] = STATE(461), - [sym_superscript] = STATE(461), - [sym_subscript] = STATE(461), - [sym_strikeout] = STATE(461), - [sym_quoted_span] = STATE(461), - [sym_inline_note] = STATE(461), - [sym_citation] = STATE(461), - [sym_shortcode_escaped] = STATE(461), - [sym_shortcode] = STATE(461), - [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(118), - [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), - [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(118), - [sym__text_base] = STATE(461), - [sym__inline_element] = STATE(118), - [sym__emphasis_star] = STATE(118), - [sym__strong_emphasis_star] = STATE(118), - [sym__emphasis_underscore] = STATE(118), - [sym__strong_emphasis_underscore] = STATE(118), - [aux_sym_insert_repeat1] = STATE(118), - [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(2925), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(108)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(119), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(119), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(119), - [sym__emphasis_star] = STATE(119), - [sym__strong_emphasis_star] = STATE(119), - [sym__emphasis_underscore] = STATE(119), - [sym__strong_emphasis_underscore] = STATE(119), - [aux_sym_insert_repeat1] = STATE(119), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(2927), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(109)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(120), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(120), - [sym__text_base] = STATE(465), - [sym__inline_element] = STATE(120), - [sym__emphasis_star] = STATE(120), - [sym__strong_emphasis_star] = STATE(120), - [sym__emphasis_underscore] = STATE(120), - [sym__strong_emphasis_underscore] = STATE(120), - [aux_sym_insert_repeat1] = STATE(120), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(2929), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(110)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(123), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(111)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(124), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(124), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(124), - [sym__emphasis_star] = STATE(124), - [sym__strong_emphasis_star] = STATE(124), - [sym__emphasis_underscore] = STATE(124), - [sym__strong_emphasis_underscore] = STATE(124), - [aux_sym_insert_repeat1] = STATE(124), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2933), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(112)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(125), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(125), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(125), - [sym__emphasis_star] = STATE(125), - [sym__strong_emphasis_star] = STATE(125), - [sym__emphasis_underscore] = STATE(125), - [sym__strong_emphasis_underscore] = STATE(125), - [aux_sym_insert_repeat1] = STATE(125), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2935), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(113)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(126), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(126), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(126), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2937), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(114)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(2939), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), - }, - [STATE(115)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(2941), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(116)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(2943), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), - }, - [STATE(117)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(2945), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), - }, - [STATE(118)] = { - [sym_backslash_escape] = STATE(461), - [sym_commonmark_attribute] = STATE(461), - [sym_code_span] = STATE(461), - [sym_latex_span] = STATE(461), - [sym_insert] = STATE(461), - [sym_delete] = STATE(461), - [sym_highlight] = STATE(461), - [sym_edit_comment] = STATE(461), - [sym_superscript] = STATE(461), - [sym_subscript] = STATE(461), - [sym_strikeout] = STATE(461), - [sym_quoted_span] = STATE(461), - [sym_inline_note] = STATE(461), - [sym_citation] = STATE(461), - [sym_shortcode_escaped] = STATE(461), - [sym_shortcode] = STATE(461), - [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), - [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), - [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), - [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(66), - [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(2945), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(119)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(68), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(68), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(2947), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(120)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), - [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(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(2949), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(121)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_close_star] = ACTIONS(2951), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(122)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - [sym__strong_emphasis_close_underscore] = ACTIONS(2953), - }, - [STATE(123)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2955), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(124)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2957), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(125)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2959), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(126)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2961), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(127)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2963), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(128)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(132), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(132), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(132), - [sym__emphasis_star] = STATE(132), - [sym__strong_emphasis_star] = STATE(132), - [sym__emphasis_underscore] = STATE(132), - [sym__strong_emphasis_underscore] = STATE(132), - [aux_sym_insert_repeat1] = STATE(132), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(129)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(130)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(2969), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), - }, - [STATE(131)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(2971), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(132)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2973), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(133)] = { + [STATE(27)] = { [sym_backslash_escape] = STATE(456), [sym_commonmark_attribute] = STATE(456), [sym_code_span] = STATE(456), @@ -43664,199 +32483,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(456), [sym_shortcode] = STATE(456), [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(146), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(146), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(146), - [sym__emphasis_star] = STATE(146), - [sym__strong_emphasis_star] = STATE(146), - [sym__emphasis_underscore] = STATE(146), - [sym__strong_emphasis_underscore] = STATE(146), - [aux_sym_insert_repeat1] = STATE(146), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(2975), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), + [sym__strong_emphasis_close_underscore] = ACTIONS(941), }, - [STATE(134)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(147), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(147), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(147), - [sym__emphasis_star] = STATE(147), - [sym__strong_emphasis_star] = STATE(147), - [sym__emphasis_underscore] = STATE(147), - [sym__strong_emphasis_underscore] = STATE(147), - [aux_sym_insert_repeat1] = STATE(147), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(2977), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [STATE(28)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(42), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(135)] = { + [STATE(29)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(30)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -43874,829 +32795,1341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(148), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(148), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), [sym__text_base] = STATE(461), - [sym__inline_element] = STATE(148), - [sym__emphasis_star] = STATE(148), - [sym__strong_emphasis_star] = STATE(148), - [sym__emphasis_underscore] = STATE(148), - [sym__strong_emphasis_underscore] = STATE(148), - [aux_sym_insert_repeat1] = STATE(148), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(2977), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), + [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(947), + [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(136)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(149), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(149), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(149), - [sym__emphasis_star] = STATE(149), - [sym__strong_emphasis_star] = STATE(149), - [sym__emphasis_underscore] = STATE(149), - [sym__strong_emphasis_underscore] = STATE(149), - [aux_sym_insert_repeat1] = STATE(149), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), + [STATE(31)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(949), + [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(32)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(951), + [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(33)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(953), + [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(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), + [sym__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(458), + [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), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(955), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [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), + [sym__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(36)] = { + [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(598), + [sym__link_text_non_empty] = STATE(675), + [sym_inline_link] = STATE(826), + [sym_image] = STATE(469), + [sym__image_inline_link] = STATE(1449), + [sym__image_description] = STATE(2655), + [sym__image_description_non_empty] = STATE(2655), + [sym_hard_line_break] = STATE(469), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1453), + [sym__inline_base] = STATE(826), + [sym__text_base] = STATE(469), + [sym__inline_element] = STATE(826), + [aux_sym__inline] = STATE(36), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(826), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(826), + [aux_sym__inline_base_repeat1] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(959), + [sym__backslash_escape] = ACTIONS(961), + [sym_entity_reference] = ACTIONS(964), + [sym_numeric_character_reference] = ACTIONS(964), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_COLON] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_EQ] = ACTIONS(970), + [anon_sym_QMARK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(976), + [anon_sym_BSLASH] = ACTIONS(979), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym_BQUOTE] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_TILDE] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(970), + [sym__newline_token] = ACTIONS(985), + [aux_sym_insert_token1] = ACTIONS(988), + [aux_sym_delete_token1] = ACTIONS(991), + [aux_sym_highlight_token1] = ACTIONS(994), + [aux_sym_edit_comment_token1] = ACTIONS(997), + [anon_sym_CARET_LBRACK] = ACTIONS(1000), + [anon_sym_LBRACK_CARET] = ACTIONS(1003), + [sym_uri_autolink] = ACTIONS(964), + [sym_email_autolink] = ACTIONS(964), + [sym__whitespace_ge_2] = ACTIONS(1006), + [aux_sym__whitespace_token1] = ACTIONS(1009), + [sym__word_no_digit] = ACTIONS(1012), + [sym__digits] = ACTIONS(1012), [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(2979), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1012), + [sym__code_span_start] = ACTIONS(1018), + [sym__emphasis_open_star] = ACTIONS(1021), + [sym__emphasis_open_underscore] = ACTIONS(1024), + [sym__strikeout_open] = ACTIONS(1027), + [sym__latex_span_start] = ACTIONS(1030), + [sym__single_quote_open] = ACTIONS(1033), + [sym__double_quote_open] = ACTIONS(1036), + [sym__superscript_open] = ACTIONS(1039), + [sym__subscript_open] = ACTIONS(1042), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1045), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1048), + [sym__cite_author_in_text] = ACTIONS(1051), + [sym__cite_suppress_author] = ACTIONS(1054), + [sym__shortcode_open_escaped] = ACTIONS(1057), + [sym__shortcode_open] = ACTIONS(1060), + [sym__unclosed_span] = ACTIONS(964), + [sym__strong_emphasis_open_star] = ACTIONS(1063), + [sym__strong_emphasis_open_underscore] = ACTIONS(1066), }, - [STATE(137)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(150), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(150), - [sym__text_base] = STATE(465), - [sym__inline_element] = STATE(150), - [sym__emphasis_star] = STATE(150), - [sym__strong_emphasis_star] = STATE(150), - [sym__emphasis_underscore] = STATE(150), - [sym__strong_emphasis_underscore] = STATE(150), - [aux_sym_insert_repeat1] = STATE(150), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(2981), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), + [STATE(37)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(1069), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, - [STATE(138)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(153), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(38)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(1071), + [sym_entity_reference] = ACTIONS(1074), + [sym_numeric_character_reference] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_POUND] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1080), + [anon_sym_AMP] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_SLASH] = ACTIONS(1080), + [anon_sym_COLON] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_EQ] = ACTIONS(1080), + [anon_sym_QMARK] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_BSLASH] = ACTIONS(1089), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [sym__newline_token] = ACTIONS(1095), + [aux_sym_insert_token1] = ACTIONS(1098), + [aux_sym_delete_token1] = ACTIONS(1101), + [aux_sym_highlight_token1] = ACTIONS(1104), + [aux_sym_edit_comment_token1] = ACTIONS(1107), + [anon_sym_CARET_LBRACK] = ACTIONS(1110), + [anon_sym_LBRACK_CARET] = ACTIONS(1113), + [sym_uri_autolink] = ACTIONS(1074), + [sym_email_autolink] = ACTIONS(1074), + [sym__whitespace_ge_2] = ACTIONS(1116), + [aux_sym__whitespace_token1] = ACTIONS(1119), + [sym__word_no_digit] = ACTIONS(1122), + [sym__digits] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1122), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1122), + [sym__code_span_start] = ACTIONS(1128), + [sym__emphasis_open_star] = ACTIONS(1131), + [sym__emphasis_open_underscore] = ACTIONS(1134), + [sym__emphasis_close_star] = ACTIONS(1137), + [sym__strikeout_open] = ACTIONS(1139), + [sym__latex_span_start] = ACTIONS(1142), + [sym__single_quote_open] = ACTIONS(1145), + [sym__double_quote_open] = ACTIONS(1148), + [sym__superscript_open] = ACTIONS(1151), + [sym__subscript_open] = ACTIONS(1154), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1157), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1160), + [sym__cite_author_in_text] = ACTIONS(1163), + [sym__cite_suppress_author] = ACTIONS(1166), + [sym__shortcode_open_escaped] = ACTIONS(1169), + [sym__shortcode_open] = ACTIONS(1172), + [sym__unclosed_span] = ACTIONS(1074), + [sym__strong_emphasis_open_star] = ACTIONS(1175), + [sym__strong_emphasis_open_underscore] = ACTIONS(1178), }, - [STATE(139)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(154), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(154), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(154), - [sym__emphasis_star] = STATE(154), - [sym__strong_emphasis_star] = STATE(154), - [sym__emphasis_underscore] = STATE(154), - [sym__strong_emphasis_underscore] = STATE(154), - [aux_sym_insert_repeat1] = STATE(154), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2985), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(39)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(1181), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, - [STATE(140)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(155), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(155), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(155), - [sym__emphasis_star] = STATE(155), - [sym__strong_emphasis_star] = STATE(155), - [sym__emphasis_underscore] = STATE(155), - [sym__strong_emphasis_underscore] = STATE(155), - [aux_sym_insert_repeat1] = STATE(155), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2987), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(40)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(1183), + [sym_entity_reference] = ACTIONS(1186), + [sym_numeric_character_reference] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1189), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_POUND] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_PERCENT] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1192), + [anon_sym_COLON] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_EQ] = ACTIONS(1192), + [anon_sym_QMARK] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_BSLASH] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1192), + [sym__newline_token] = ACTIONS(1207), + [aux_sym_insert_token1] = ACTIONS(1210), + [aux_sym_delete_token1] = ACTIONS(1213), + [aux_sym_highlight_token1] = ACTIONS(1216), + [aux_sym_edit_comment_token1] = ACTIONS(1219), + [anon_sym_CARET_LBRACK] = ACTIONS(1222), + [anon_sym_LBRACK_CARET] = ACTIONS(1225), + [sym_uri_autolink] = ACTIONS(1186), + [sym_email_autolink] = ACTIONS(1186), + [sym__whitespace_ge_2] = ACTIONS(1228), + [aux_sym__whitespace_token1] = ACTIONS(1231), + [sym__word_no_digit] = ACTIONS(1234), + [sym__digits] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1234), + [sym__code_span_start] = ACTIONS(1240), + [sym__emphasis_open_star] = ACTIONS(1243), + [sym__emphasis_open_underscore] = ACTIONS(1246), + [sym__emphasis_close_underscore] = ACTIONS(1249), + [sym__strikeout_open] = ACTIONS(1251), + [sym__latex_span_start] = ACTIONS(1254), + [sym__single_quote_open] = ACTIONS(1257), + [sym__double_quote_open] = ACTIONS(1260), + [sym__superscript_open] = ACTIONS(1263), + [sym__subscript_open] = ACTIONS(1266), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1269), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1272), + [sym__cite_author_in_text] = ACTIONS(1275), + [sym__cite_suppress_author] = ACTIONS(1278), + [sym__shortcode_open_escaped] = ACTIONS(1281), + [sym__shortcode_open] = ACTIONS(1284), + [sym__unclosed_span] = ACTIONS(1186), + [sym__strong_emphasis_open_star] = ACTIONS(1287), + [sym__strong_emphasis_open_underscore] = ACTIONS(1290), }, - [STATE(141)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(156), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(156), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(156), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2989), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(41)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(1293), + [sym_entity_reference] = ACTIONS(1296), + [sym_numeric_character_reference] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_COMMA] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(1299), + [anon_sym_SLASH] = ACTIONS(1302), + [anon_sym_COLON] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_QMARK] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_BSLASH] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1299), + [anon_sym_BQUOTE] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1302), + [sym__newline_token] = ACTIONS(1317), + [aux_sym_insert_token1] = ACTIONS(1320), + [aux_sym_delete_token1] = ACTIONS(1323), + [aux_sym_highlight_token1] = ACTIONS(1326), + [aux_sym_edit_comment_token1] = ACTIONS(1329), + [anon_sym_CARET_LBRACK] = ACTIONS(1332), + [anon_sym_LBRACK_CARET] = ACTIONS(1335), + [sym_uri_autolink] = ACTIONS(1296), + [sym_email_autolink] = ACTIONS(1296), + [sym__whitespace_ge_2] = ACTIONS(1338), + [aux_sym__whitespace_token1] = ACTIONS(1341), + [sym__word_no_digit] = ACTIONS(1344), + [sym__digits] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1344), + [sym__code_span_start] = ACTIONS(1350), + [sym__emphasis_open_star] = ACTIONS(1353), + [sym__emphasis_open_underscore] = ACTIONS(1356), + [sym__strikeout_open] = ACTIONS(1359), + [sym__strikeout_close] = ACTIONS(1362), + [sym__latex_span_start] = ACTIONS(1364), + [sym__single_quote_open] = ACTIONS(1367), + [sym__double_quote_open] = ACTIONS(1370), + [sym__superscript_open] = ACTIONS(1373), + [sym__subscript_open] = ACTIONS(1376), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1382), + [sym__cite_author_in_text] = ACTIONS(1385), + [sym__cite_suppress_author] = ACTIONS(1388), + [sym__shortcode_open_escaped] = ACTIONS(1391), + [sym__shortcode_open] = ACTIONS(1394), + [sym__unclosed_span] = ACTIONS(1296), + [sym__strong_emphasis_open_star] = ACTIONS(1397), + [sym__strong_emphasis_open_underscore] = ACTIONS(1400), }, - [STATE(142)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(157), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(157), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(157), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(2991), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(42)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(143)] = { + [STATE(43)] = { [sym_backslash_escape] = STATE(458), [sym_commonmark_attribute] = STATE(458), [sym_code_span] = STATE(458), @@ -44714,199 +34147,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(458), [sym_shortcode] = STATE(458), [sym_note_reference] = STATE(458), - [sym__link_text] = STATE(678), - [sym__link_text_non_empty] = STATE(562), - [sym_inline_link] = STATE(1543), + [sym__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1434), - [sym__image_description] = STATE(2651), - [sym__image_description_non_empty] = STATE(2651), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(800), - [sym__word] = STATE(800), - [sym__soft_line_break] = STATE(1530), - [sym__inline_base] = STATE(1543), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), [sym__text_base] = STATE(458), - [sym__inline_element] = STATE(1543), - [aux_sym__inline] = STATE(52), - [sym__emphasis_star] = STATE(1543), - [sym__strong_emphasis_star] = STATE(1543), - [sym__emphasis_underscore] = STATE(1543), - [sym__strong_emphasis_underscore] = STATE(1543), + [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), - [ts_builtin_sym_end] = ACTIONS(2993), - [sym__backslash_escape] = ACTIONS(3), - [sym_entity_reference] = ACTIONS(5), - [sym_numeric_character_reference] = ACTIONS(5), - [anon_sym_LT] = ACTIONS(7), - [anon_sym_GT] = ACTIONS(9), - [anon_sym_BANG] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(9), - [anon_sym_PERCENT] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(9), - [anon_sym_PLUS] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(9), - [anon_sym_DASH] = ACTIONS(7), - [anon_sym_DOT] = ACTIONS(7), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_EQ] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_CARET] = ACTIONS(7), - [anon_sym_BQUOTE] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_PIPE] = ACTIONS(9), - [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(9), - [sym__newline_token] = ACTIONS(19), - [aux_sym_insert_token1] = ACTIONS(21), - [aux_sym_delete_token1] = ACTIONS(23), - [aux_sym_highlight_token1] = ACTIONS(25), - [aux_sym_edit_comment_token1] = ACTIONS(27), - [anon_sym_CARET_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_CARET] = ACTIONS(31), - [sym_uri_autolink] = ACTIONS(5), - [sym_email_autolink] = ACTIONS(5), - [sym__whitespace_ge_2] = ACTIONS(33), - [aux_sym__whitespace_token1] = ACTIONS(35), - [sym__word_no_digit] = ACTIONS(37), - [sym__digits] = ACTIONS(37), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(37), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym__code_span_start] = ACTIONS(41), - [sym__emphasis_open_star] = ACTIONS(43), - [sym__emphasis_open_underscore] = ACTIONS(45), - [sym__strikeout_open] = ACTIONS(49), - [sym__latex_span_start] = ACTIONS(51), - [sym__single_quote_open] = ACTIONS(53), - [sym__double_quote_open] = ACTIONS(55), - [sym__superscript_open] = ACTIONS(57), - [sym__subscript_open] = ACTIONS(59), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(61), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(63), - [sym__cite_author_in_text] = ACTIONS(65), - [sym__cite_suppress_author] = ACTIONS(67), - [sym__shortcode_open_escaped] = ACTIONS(69), - [sym__shortcode_open] = ACTIONS(71), - [sym__unclosed_span] = ACTIONS(5), - [sym__strong_emphasis_open_star] = ACTIONS(73), - [sym__strong_emphasis_open_underscore] = ACTIONS(75), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1405), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(144)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(2995), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [STATE(44)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(21), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(21), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(21), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(1407), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), }, - [STATE(145)] = { + [STATE(45)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(1409), + [sym_entity_reference] = ACTIONS(1412), + [sym_numeric_character_reference] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_GT] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1418), + [anon_sym_POUND] = ACTIONS(1418), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_DOT] = ACTIONS(1415), + [anon_sym_SLASH] = ACTIONS(1418), + [anon_sym_COLON] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1427), + [anon_sym_RBRACK] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1418), + [sym__newline_token] = ACTIONS(1433), + [aux_sym_insert_token1] = ACTIONS(1436), + [aux_sym_delete_token1] = ACTIONS(1439), + [aux_sym_highlight_token1] = ACTIONS(1442), + [aux_sym_edit_comment_token1] = ACTIONS(1445), + [anon_sym_CARET_LBRACK] = ACTIONS(1448), + [anon_sym_LBRACK_CARET] = ACTIONS(1451), + [sym_uri_autolink] = ACTIONS(1412), + [sym_email_autolink] = ACTIONS(1412), + [sym__whitespace_ge_2] = ACTIONS(1454), + [aux_sym__whitespace_token1] = ACTIONS(1457), + [sym__word_no_digit] = ACTIONS(1460), + [sym__digits] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [sym__code_span_start] = ACTIONS(1466), + [sym__emphasis_open_star] = ACTIONS(1469), + [sym__emphasis_open_underscore] = ACTIONS(1472), + [sym__strikeout_open] = ACTIONS(1475), + [sym__latex_span_start] = ACTIONS(1478), + [sym__single_quote_open] = ACTIONS(1481), + [sym__double_quote_open] = ACTIONS(1484), + [sym__superscript_open] = ACTIONS(1487), + [sym__subscript_open] = ACTIONS(1490), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1493), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1496), + [sym__cite_author_in_text] = ACTIONS(1499), + [sym__cite_suppress_author] = ACTIONS(1502), + [sym__shortcode_open_escaped] = ACTIONS(1505), + [sym__shortcode_open] = ACTIONS(1508), + [sym__unclosed_span] = ACTIONS(1412), + [sym__strong_emphasis_open_star] = ACTIONS(1511), + [sym__strong_emphasis_open_underscore] = ACTIONS(1514), + }, + [STATE(46)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -44924,94 +34459,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(2997), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym__backslash_escape] = ACTIONS(1517), + [sym_entity_reference] = ACTIONS(1520), + [sym_numeric_character_reference] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_PERCENT] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_COMMA] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_DOT] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1526), + [anon_sym_COLON] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_BSLASH] = ACTIONS(1535), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RPAREN] = ACTIONS(1526), + [sym__newline_token] = ACTIONS(1541), + [aux_sym_insert_token1] = ACTIONS(1544), + [aux_sym_delete_token1] = ACTIONS(1547), + [aux_sym_highlight_token1] = ACTIONS(1550), + [aux_sym_edit_comment_token1] = ACTIONS(1553), + [anon_sym_CARET_LBRACK] = ACTIONS(1556), + [anon_sym_LBRACK_CARET] = ACTIONS(1559), + [sym_uri_autolink] = ACTIONS(1520), + [sym_email_autolink] = ACTIONS(1520), + [sym__whitespace_ge_2] = ACTIONS(1562), + [aux_sym__whitespace_token1] = ACTIONS(1565), + [sym__word_no_digit] = ACTIONS(1568), + [sym__digits] = ACTIONS(1568), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1568), + [sym__code_span_start] = ACTIONS(1574), + [sym__emphasis_open_star] = ACTIONS(1577), + [sym__emphasis_open_underscore] = ACTIONS(1580), + [sym__strikeout_open] = ACTIONS(1583), + [sym__latex_span_start] = ACTIONS(1586), + [sym__single_quote_open] = ACTIONS(1589), + [sym__double_quote_open] = ACTIONS(1592), + [sym__superscript_open] = ACTIONS(1595), + [sym__subscript_open] = ACTIONS(1598), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1601), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1604), + [sym__cite_author_in_text] = ACTIONS(1607), + [sym__cite_suppress_author] = ACTIONS(1610), + [sym__shortcode_open_escaped] = ACTIONS(1613), + [sym__shortcode_open] = ACTIONS(1616), + [sym__unclosed_span] = ACTIONS(1520), + [sym__strong_emphasis_open_star] = ACTIONS(1619), + [sym__strong_emphasis_close_star] = ACTIONS(1137), + [sym__strong_emphasis_open_underscore] = ACTIONS(1622), }, - [STATE(146)] = { + [STATE(47)] = { [sym_backslash_escape] = STATE(456), [sym_commonmark_attribute] = STATE(456), [sym_code_span] = STATE(456), @@ -45029,94 +34563,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(456), [sym_shortcode] = STATE(456), [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(2999), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(1625), + [sym_entity_reference] = ACTIONS(1628), + [sym_numeric_character_reference] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1634), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1634), + [anon_sym_PERCENT] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_PLUS] = ACTIONS(1634), + [anon_sym_COMMA] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_DOT] = ACTIONS(1631), + [anon_sym_SLASH] = ACTIONS(1634), + [anon_sym_COLON] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_EQ] = ACTIONS(1634), + [anon_sym_QMARK] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_BSLASH] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_TILDE] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1634), + [sym__newline_token] = ACTIONS(1649), + [aux_sym_insert_token1] = ACTIONS(1652), + [aux_sym_delete_token1] = ACTIONS(1655), + [aux_sym_highlight_token1] = ACTIONS(1658), + [aux_sym_edit_comment_token1] = ACTIONS(1661), + [anon_sym_CARET_LBRACK] = ACTIONS(1664), + [anon_sym_LBRACK_CARET] = ACTIONS(1667), + [sym_uri_autolink] = ACTIONS(1628), + [sym_email_autolink] = ACTIONS(1628), + [sym__whitespace_ge_2] = ACTIONS(1670), + [aux_sym__whitespace_token1] = ACTIONS(1673), + [sym__word_no_digit] = ACTIONS(1676), + [sym__digits] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1676), + [sym__code_span_start] = ACTIONS(1682), + [sym__emphasis_open_star] = ACTIONS(1685), + [sym__emphasis_open_underscore] = ACTIONS(1688), + [sym__strikeout_open] = ACTIONS(1691), + [sym__latex_span_start] = ACTIONS(1694), + [sym__single_quote_open] = ACTIONS(1697), + [sym__double_quote_open] = ACTIONS(1700), + [sym__superscript_open] = ACTIONS(1703), + [sym__subscript_open] = ACTIONS(1706), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1709), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1712), + [sym__cite_author_in_text] = ACTIONS(1715), + [sym__cite_suppress_author] = ACTIONS(1718), + [sym__shortcode_open_escaped] = ACTIONS(1721), + [sym__shortcode_open] = ACTIONS(1724), + [sym__unclosed_span] = ACTIONS(1628), + [sym__strong_emphasis_open_star] = ACTIONS(1727), + [sym__strong_emphasis_open_underscore] = ACTIONS(1730), + [sym__strong_emphasis_close_underscore] = ACTIONS(1249), }, - [STATE(147)] = { + [STATE(48)] = { [sym_backslash_escape] = STATE(459), [sym_commonmark_attribute] = STATE(459), [sym_code_span] = STATE(459), @@ -45134,94 +34667,405 @@ 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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), + [sym__link_text] = STATE(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3001), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [sym__backslash_escape] = ACTIONS(1733), + [sym_entity_reference] = ACTIONS(1736), + [sym_numeric_character_reference] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1739), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1742), + [anon_sym_POUND] = ACTIONS(1742), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_AMP] = ACTIONS(1739), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_DOT] = ACTIONS(1739), + [anon_sym_SLASH] = ACTIONS(1742), + [anon_sym_COLON] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1742), + [anon_sym_QMARK] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_BSLASH] = ACTIONS(1751), + [anon_sym_CARET] = ACTIONS(1739), + [anon_sym_BQUOTE] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_RPAREN] = ACTIONS(1742), + [sym__newline_token] = ACTIONS(1757), + [aux_sym_insert_token1] = ACTIONS(1760), + [aux_sym_delete_token1] = ACTIONS(1763), + [aux_sym_highlight_token1] = ACTIONS(1766), + [aux_sym_edit_comment_token1] = ACTIONS(1769), + [anon_sym_CARET_LBRACK] = ACTIONS(1772), + [anon_sym_LBRACK_CARET] = ACTIONS(1775), + [sym_uri_autolink] = ACTIONS(1736), + [sym_email_autolink] = ACTIONS(1736), + [sym__whitespace_ge_2] = ACTIONS(1778), + [aux_sym__whitespace_token1] = ACTIONS(1781), + [sym__word_no_digit] = ACTIONS(1784), + [sym__digits] = ACTIONS(1784), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1784), + [sym__code_span_start] = ACTIONS(1790), + [sym__emphasis_open_star] = ACTIONS(1793), + [sym__emphasis_open_underscore] = ACTIONS(1796), + [sym__strikeout_open] = ACTIONS(1799), + [sym__latex_span_start] = ACTIONS(1802), + [sym__single_quote_open] = ACTIONS(1805), + [sym__single_quote_close] = ACTIONS(1362), + [sym__double_quote_open] = ACTIONS(1808), + [sym__superscript_open] = ACTIONS(1811), + [sym__subscript_open] = ACTIONS(1814), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1817), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1820), + [sym__cite_author_in_text] = ACTIONS(1823), + [sym__cite_suppress_author] = ACTIONS(1826), + [sym__shortcode_open_escaped] = ACTIONS(1829), + [sym__shortcode_open] = ACTIONS(1832), + [sym__unclosed_span] = ACTIONS(1736), + [sym__strong_emphasis_open_star] = ACTIONS(1835), + [sym__strong_emphasis_open_underscore] = ACTIONS(1838), + }, + [STATE(49)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [sym__backslash_escape] = ACTIONS(1841), + [sym_entity_reference] = ACTIONS(1844), + [sym_numeric_character_reference] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_GT] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1850), + [anon_sym_PERCENT] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_COMMA] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(1847), + [anon_sym_SLASH] = ACTIONS(1850), + [anon_sym_COLON] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_EQ] = ACTIONS(1850), + [anon_sym_QMARK] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_BSLASH] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_BQUOTE] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_RPAREN] = ACTIONS(1850), + [sym__newline_token] = ACTIONS(1865), + [aux_sym_insert_token1] = ACTIONS(1868), + [aux_sym_delete_token1] = ACTIONS(1871), + [aux_sym_highlight_token1] = ACTIONS(1874), + [aux_sym_edit_comment_token1] = ACTIONS(1877), + [anon_sym_CARET_LBRACK] = ACTIONS(1880), + [anon_sym_LBRACK_CARET] = ACTIONS(1883), + [sym_uri_autolink] = ACTIONS(1844), + [sym_email_autolink] = ACTIONS(1844), + [sym__whitespace_ge_2] = ACTIONS(1886), + [aux_sym__whitespace_token1] = ACTIONS(1889), + [sym__word_no_digit] = ACTIONS(1892), + [sym__digits] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1892), + [sym__code_span_start] = ACTIONS(1898), + [sym__emphasis_open_star] = ACTIONS(1901), + [sym__emphasis_open_underscore] = ACTIONS(1904), + [sym__strikeout_open] = ACTIONS(1907), + [sym__latex_span_start] = ACTIONS(1910), + [sym__single_quote_open] = ACTIONS(1913), + [sym__double_quote_open] = ACTIONS(1916), + [sym__double_quote_close] = ACTIONS(1362), + [sym__superscript_open] = ACTIONS(1919), + [sym__subscript_open] = ACTIONS(1922), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1928), + [sym__cite_author_in_text] = ACTIONS(1931), + [sym__cite_suppress_author] = ACTIONS(1934), + [sym__shortcode_open_escaped] = ACTIONS(1937), + [sym__shortcode_open] = ACTIONS(1940), + [sym__unclosed_span] = ACTIONS(1844), + [sym__strong_emphasis_open_star] = ACTIONS(1943), + [sym__strong_emphasis_open_underscore] = ACTIONS(1946), + }, + [STATE(50)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(1949), + [sym_entity_reference] = ACTIONS(1952), + [sym_numeric_character_reference] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_GT] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_POUND] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_PLUS] = ACTIONS(1958), + [anon_sym_COMMA] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_COLON] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_EQ] = ACTIONS(1958), + [anon_sym_QMARK] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_BSLASH] = ACTIONS(1967), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_BQUOTE] = ACTIONS(1958), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_RPAREN] = ACTIONS(1958), + [sym__newline_token] = ACTIONS(1973), + [aux_sym_insert_token1] = ACTIONS(1976), + [aux_sym_delete_token1] = ACTIONS(1979), + [aux_sym_highlight_token1] = ACTIONS(1982), + [aux_sym_edit_comment_token1] = ACTIONS(1985), + [anon_sym_CARET_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_CARET] = ACTIONS(1991), + [sym_uri_autolink] = ACTIONS(1952), + [sym_email_autolink] = ACTIONS(1952), + [sym__whitespace_ge_2] = ACTIONS(1994), + [aux_sym__whitespace_token1] = ACTIONS(1997), + [sym__word_no_digit] = ACTIONS(2000), + [sym__digits] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2003), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2000), + [sym__code_span_start] = ACTIONS(2006), + [sym__emphasis_open_star] = ACTIONS(2009), + [sym__emphasis_open_underscore] = ACTIONS(2012), + [sym__strikeout_open] = ACTIONS(2015), + [sym__latex_span_start] = ACTIONS(2018), + [sym__single_quote_open] = ACTIONS(2021), + [sym__double_quote_open] = ACTIONS(2024), + [sym__superscript_open] = ACTIONS(2027), + [sym__superscript_close] = ACTIONS(1362), + [sym__subscript_open] = ACTIONS(2030), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2036), + [sym__cite_author_in_text] = ACTIONS(2039), + [sym__cite_suppress_author] = ACTIONS(2042), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2048), + [sym__unclosed_span] = ACTIONS(1952), + [sym__strong_emphasis_open_star] = ACTIONS(2051), + [sym__strong_emphasis_open_underscore] = ACTIONS(2054), }, - [STATE(148)] = { + [STATE(51)] = { + [sym_backslash_escape] = STATE(474), + [sym_commonmark_attribute] = STATE(474), + [sym_code_span] = STATE(474), + [sym_latex_span] = STATE(474), + [sym_insert] = STATE(474), + [sym_delete] = STATE(474), + [sym_highlight] = STATE(474), + [sym_edit_comment] = STATE(474), + [sym_superscript] = STATE(474), + [sym_subscript] = STATE(474), + [sym_strikeout] = STATE(474), + [sym_quoted_span] = STATE(474), + [sym_inline_note] = STATE(474), + [sym_citation] = STATE(474), + [sym_shortcode_escaped] = STATE(474), + [sym_shortcode] = STATE(474), + [sym_note_reference] = STATE(474), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), + [sym_image] = STATE(474), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), + [sym_hard_line_break] = STATE(474), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), + [sym__text_base] = STATE(474), + [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(474), + [sym__backslash_escape] = ACTIONS(2057), + [sym_entity_reference] = ACTIONS(2060), + [sym_numeric_character_reference] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2066), + [anon_sym_BANG] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(2066), + [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_PERCENT] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_PLUS] = ACTIONS(2066), + [anon_sym_COMMA] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_DOT] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2066), + [anon_sym_COLON] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_EQ] = ACTIONS(2066), + [anon_sym_QMARK] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_BSLASH] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2063), + [anon_sym_BQUOTE] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_TILDE] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2066), + [anon_sym_RPAREN] = ACTIONS(2066), + [sym__newline_token] = ACTIONS(2081), + [aux_sym_insert_token1] = ACTIONS(2084), + [aux_sym_delete_token1] = ACTIONS(2087), + [aux_sym_highlight_token1] = ACTIONS(2090), + [aux_sym_edit_comment_token1] = ACTIONS(2093), + [anon_sym_CARET_LBRACK] = ACTIONS(2096), + [anon_sym_LBRACK_CARET] = ACTIONS(2099), + [sym_uri_autolink] = ACTIONS(2060), + [sym_email_autolink] = ACTIONS(2060), + [sym__whitespace_ge_2] = ACTIONS(2102), + [aux_sym__whitespace_token1] = ACTIONS(2105), + [sym__word_no_digit] = ACTIONS(2108), + [sym__digits] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2108), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2108), + [sym__code_span_start] = ACTIONS(2114), + [sym__emphasis_open_star] = ACTIONS(2117), + [sym__emphasis_open_underscore] = ACTIONS(2120), + [sym__strikeout_open] = ACTIONS(2123), + [sym__latex_span_start] = ACTIONS(2126), + [sym__single_quote_open] = ACTIONS(2129), + [sym__double_quote_open] = ACTIONS(2132), + [sym__superscript_open] = ACTIONS(2135), + [sym__subscript_open] = ACTIONS(2138), + [sym__subscript_close] = ACTIONS(1362), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2141), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2144), + [sym__cite_author_in_text] = ACTIONS(2147), + [sym__cite_suppress_author] = ACTIONS(2150), + [sym__shortcode_open_escaped] = ACTIONS(2153), + [sym__shortcode_open] = ACTIONS(2156), + [sym__unclosed_span] = ACTIONS(2060), + [sym__strong_emphasis_open_star] = ACTIONS(2159), + [sym__strong_emphasis_open_underscore] = ACTIONS(2162), + }, + [STATE(52)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -45239,1249 +35083,613 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(66), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3001), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), + [sym__backslash_escape] = ACTIONS(2165), + [sym_entity_reference] = ACTIONS(2168), + [sym_numeric_character_reference] = ACTIONS(2168), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_POUND] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2174), + [anon_sym_PERCENT] = ACTIONS(2174), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_PLUS] = ACTIONS(2174), + [anon_sym_COMMA] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_SLASH] = ACTIONS(2174), + [anon_sym_COLON] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_EQ] = ACTIONS(2174), + [anon_sym_QMARK] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_BSLASH] = ACTIONS(2183), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_BQUOTE] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_TILDE] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_RPAREN] = ACTIONS(2174), + [sym__newline_token] = ACTIONS(2189), + [aux_sym_insert_token1] = ACTIONS(2192), + [aux_sym_insert_token2] = ACTIONS(1362), + [aux_sym_delete_token1] = ACTIONS(2195), + [aux_sym_highlight_token1] = ACTIONS(2198), + [aux_sym_edit_comment_token1] = ACTIONS(2201), + [anon_sym_CARET_LBRACK] = ACTIONS(2204), + [anon_sym_LBRACK_CARET] = ACTIONS(2207), + [sym_uri_autolink] = ACTIONS(2168), + [sym_email_autolink] = ACTIONS(2168), + [sym__whitespace_ge_2] = ACTIONS(2210), + [aux_sym__whitespace_token1] = ACTIONS(2213), + [sym__word_no_digit] = ACTIONS(2216), + [sym__digits] = ACTIONS(2216), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2216), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2216), + [sym__code_span_start] = ACTIONS(2222), + [sym__emphasis_open_star] = ACTIONS(2225), + [sym__emphasis_open_underscore] = ACTIONS(2228), + [sym__strikeout_open] = ACTIONS(2231), + [sym__latex_span_start] = ACTIONS(2234), + [sym__single_quote_open] = ACTIONS(2237), + [sym__double_quote_open] = ACTIONS(2240), + [sym__superscript_open] = ACTIONS(2243), + [sym__subscript_open] = ACTIONS(2246), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2249), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2252), + [sym__cite_author_in_text] = ACTIONS(2255), + [sym__cite_suppress_author] = ACTIONS(2258), + [sym__shortcode_open_escaped] = ACTIONS(2261), + [sym__shortcode_open] = ACTIONS(2264), + [sym__unclosed_span] = ACTIONS(2168), + [sym__strong_emphasis_open_star] = ACTIONS(2267), + [sym__strong_emphasis_open_underscore] = ACTIONS(2270), }, - [STATE(149)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), + [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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(2273), + [sym_entity_reference] = ACTIONS(2276), + [sym_numeric_character_reference] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2279), + [anon_sym_GT] = ACTIONS(2282), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2282), + [anon_sym_POUND] = ACTIONS(2282), + [anon_sym_DOLLAR] = ACTIONS(2282), + [anon_sym_PERCENT] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2279), + [anon_sym_SQUOTE] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2279), + [anon_sym_DOT] = ACTIONS(2279), + [anon_sym_SLASH] = ACTIONS(2282), + [anon_sym_COLON] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(2282), + [anon_sym_QMARK] = ACTIONS(2282), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_BSLASH] = ACTIONS(2291), + [anon_sym_RBRACK] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(2279), + [anon_sym_BQUOTE] = ACTIONS(2282), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_LPAREN] = ACTIONS(2282), + [anon_sym_RPAREN] = ACTIONS(2282), + [sym__newline_token] = ACTIONS(2297), + [aux_sym_insert_token1] = ACTIONS(2300), + [aux_sym_delete_token1] = ACTIONS(2303), + [aux_sym_highlight_token1] = ACTIONS(2306), + [aux_sym_edit_comment_token1] = ACTIONS(2309), + [anon_sym_CARET_LBRACK] = ACTIONS(2312), + [anon_sym_LBRACK_CARET] = ACTIONS(2315), + [sym_uri_autolink] = ACTIONS(2276), + [sym_email_autolink] = ACTIONS(2276), + [sym__whitespace_ge_2] = ACTIONS(2318), + [aux_sym__whitespace_token1] = ACTIONS(2321), + [sym__word_no_digit] = ACTIONS(2324), + [sym__digits] = ACTIONS(2324), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2324), + [sym__code_span_start] = ACTIONS(2330), + [sym__emphasis_open_star] = ACTIONS(2333), + [sym__emphasis_open_underscore] = ACTIONS(2336), + [sym__strikeout_open] = ACTIONS(2339), + [sym__latex_span_start] = ACTIONS(2342), + [sym__single_quote_open] = ACTIONS(2345), + [sym__double_quote_open] = ACTIONS(2348), + [sym__superscript_open] = ACTIONS(2351), + [sym__subscript_open] = ACTIONS(2354), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2357), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2360), + [sym__cite_author_in_text] = ACTIONS(2363), + [sym__cite_suppress_author] = ACTIONS(2366), + [sym__shortcode_open_escaped] = ACTIONS(2369), + [sym__shortcode_open] = ACTIONS(2372), + [sym__unclosed_span] = ACTIONS(2276), + [sym__strong_emphasis_open_star] = ACTIONS(2375), + [sym__strong_emphasis_open_underscore] = ACTIONS(2378), + }, + [STATE(54)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(67), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(67), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(67), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2381), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(55)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), + [sym__text_base] = STATE(459), [sym__inline_element] = STATE(68), [sym__emphasis_star] = STATE(68), [sym__strong_emphasis_star] = STATE(68), [sym__emphasis_underscore] = STATE(68), [sym__strong_emphasis_underscore] = STATE(68), [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3003), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), + [aux_sym__inline_base_repeat1] = STATE(459), + [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__single_quote_close] = ACTIONS(2383), + [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(150)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), + [STATE(56)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(69), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(69), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(69), + [sym__emphasis_star] = STATE(69), + [sym__strong_emphasis_star] = STATE(69), + [sym__emphasis_underscore] = STATE(69), + [sym__strong_emphasis_underscore] = STATE(69), + [aux_sym_insert_repeat1] = STATE(69), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2383), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), + }, + [STATE(57)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), + [sym__text_base] = STATE(453), [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(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3005), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(151)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_close_star] = ACTIONS(3007), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(152)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - [sym__strong_emphasis_close_underscore] = ACTIONS(3009), - }, - [STATE(153)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3011), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(154)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3013), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(155)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3015), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(156)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3017), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(157)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3019), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(158)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(162), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(162), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(162), - [sym__emphasis_star] = STATE(162), - [sym__strong_emphasis_star] = STATE(162), - [sym__emphasis_underscore] = STATE(162), - [sym__strong_emphasis_underscore] = STATE(162), - [aux_sym_insert_repeat1] = STATE(162), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(159)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3023), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [aux_sym__inline_base_repeat1] = STATE(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2385), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, - [STATE(160)] = { + [STATE(58)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -46499,514 +35707,509 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(71), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(71), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3025), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2387), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(161)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3027), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [STATE(59)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(74), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2389), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(162)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), + [STATE(60)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), + [sym__text_base] = STATE(461), [sym__inline_element] = STATE(75), [sym__emphasis_star] = STATE(75), [sym__strong_emphasis_star] = STATE(75), [sym__emphasis_underscore] = STATE(75), [sym__strong_emphasis_underscore] = STATE(75), [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2391), + [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(163)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(175), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(175), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(175), - [sym__emphasis_star] = STATE(175), - [sym__strong_emphasis_star] = STATE(175), - [sym__emphasis_underscore] = STATE(175), - [sym__strong_emphasis_underscore] = STATE(175), - [aux_sym_insert_repeat1] = STATE(175), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3031), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [STATE(61)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(76), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(76), + [sym__text_base] = STATE(461), + [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(461), + [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(2393), + [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(164)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(176), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(176), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(176), - [sym__emphasis_star] = STATE(176), - [sym__strong_emphasis_star] = STATE(176), - [sym__emphasis_underscore] = STATE(176), - [sym__strong_emphasis_underscore] = STATE(176), - [aux_sym_insert_repeat1] = STATE(176), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3033), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [STATE(62)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(77), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(77), + [sym__text_base] = STATE(461), + [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(461), + [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(2395), + [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(165)] = { + [STATE(63)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -47024,829 +36227,821 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(177), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(78), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(177), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(78), [sym__text_base] = STATE(461), - [sym__inline_element] = STATE(177), - [sym__emphasis_star] = STATE(177), - [sym__strong_emphasis_star] = STATE(177), - [sym__emphasis_underscore] = STATE(177), - [sym__strong_emphasis_underscore] = STATE(177), - [aux_sym_insert_repeat1] = STATE(177), + [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(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3033), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), + [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(2397), + [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(166)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(178), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(178), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(178), - [sym__emphasis_star] = STATE(178), - [sym__strong_emphasis_star] = STATE(178), - [sym__emphasis_underscore] = STATE(178), - [sym__strong_emphasis_underscore] = STATE(178), - [aux_sym_insert_repeat1] = STATE(178), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3035), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), + [STATE(64)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(22), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [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(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__single_quote_close] = ACTIONS(2399), + [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(167)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(179), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(179), - [sym__text_base] = STATE(465), - [sym__inline_element] = STATE(179), - [sym__emphasis_star] = STATE(179), - [sym__strong_emphasis_star] = STATE(179), - [sym__emphasis_underscore] = STATE(179), - [sym__strong_emphasis_underscore] = STATE(179), - [aux_sym_insert_repeat1] = STATE(179), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3037), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), + [STATE(65)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2401), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, - [STATE(168)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(182), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3039), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(66)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2403), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, - [STATE(169)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(183), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(183), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(183), - [sym__emphasis_star] = STATE(183), - [sym__strong_emphasis_star] = STATE(183), - [sym__emphasis_underscore] = STATE(183), - [sym__strong_emphasis_underscore] = STATE(183), - [aux_sym_insert_repeat1] = STATE(183), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3041), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(67)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2405), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), }, - [STATE(170)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(184), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(184), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(184), - [sym__emphasis_star] = STATE(184), - [sym__strong_emphasis_star] = STATE(184), - [sym__emphasis_underscore] = STATE(184), - [sym__strong_emphasis_underscore] = STATE(184), - [aux_sym_insert_repeat1] = STATE(184), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3043), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(68)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), + [sym__text_base] = STATE(459), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), + [aux_sym__inline_base_repeat1] = STATE(459), + [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__single_quote_close] = ACTIONS(2407), + [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(171)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(185), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(185), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(185), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3045), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(69)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2407), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), }, - [STATE(172)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(186), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(186), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(186), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3047), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(70)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2409), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, - [STATE(173)] = { + [STATE(71)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -47864,94 +37059,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3049), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2411), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(174)] = { + [STATE(72)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -47969,94 +37163,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3051), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_close_star] = ACTIONS(2413), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(175)] = { + [STATE(73)] = { [sym_backslash_escape] = STATE(456), [sym_commonmark_attribute] = STATE(456), [sym_code_span] = STATE(456), @@ -48074,94 +37267,1237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(456), [sym_shortcode] = STATE(456), [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3053), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), + [sym__strong_emphasis_close_underscore] = ACTIONS(2415), }, - [STATE(176)] = { + [STATE(74)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2417), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(75)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2419), + [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(76)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2421), + [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(77)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2423), + [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(78)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2425), + [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(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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(83), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(83), + [sym__text_base] = STATE(458), + [sym__inline_element] = 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_insert_repeat1] = STATE(83), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2427), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(80)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2429), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(81)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2431), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(82)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2433), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(83)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(84)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(97), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(97), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(97), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2437), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(85)] = { [sym_backslash_escape] = STATE(459), [sym_commonmark_attribute] = STATE(459), [sym_code_span] = STATE(459), @@ -48179,94 +38515,717 @@ 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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), + [sym__link_text] = STATE(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(98), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(98), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), + [sym__inline_element] = STATE(98), + [sym__emphasis_star] = STATE(98), + [sym__strong_emphasis_star] = STATE(98), + [sym__emphasis_underscore] = STATE(98), + [sym__strong_emphasis_underscore] = STATE(98), + [aux_sym_insert_repeat1] = STATE(98), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3055), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [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__single_quote_close] = ACTIONS(2439), + [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(86)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(99), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(99), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(99), + [sym__emphasis_star] = STATE(99), + [sym__strong_emphasis_star] = STATE(99), + [sym__emphasis_underscore] = STATE(99), + [sym__strong_emphasis_underscore] = STATE(99), + [aux_sym_insert_repeat1] = STATE(99), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2439), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), + }, + [STATE(87)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(100), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(100), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2441), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(88)] = { + [sym_backslash_escape] = STATE(474), + [sym_commonmark_attribute] = STATE(474), + [sym_code_span] = STATE(474), + [sym_latex_span] = STATE(474), + [sym_insert] = STATE(474), + [sym_delete] = STATE(474), + [sym_highlight] = STATE(474), + [sym_edit_comment] = STATE(474), + [sym_superscript] = STATE(474), + [sym_subscript] = STATE(474), + [sym_strikeout] = STATE(474), + [sym_quoted_span] = STATE(474), + [sym_inline_note] = STATE(474), + [sym_citation] = STATE(474), + [sym_shortcode_escaped] = STATE(474), + [sym_shortcode] = STATE(474), + [sym_note_reference] = STATE(474), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(101), + [sym_image] = STATE(474), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), + [sym_hard_line_break] = STATE(474), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(101), + [sym__text_base] = STATE(474), + [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(474), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2443), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), + }, + [STATE(89)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(104), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(90)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(105), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(105), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(105), + [sym__emphasis_star] = STATE(105), + [sym__strong_emphasis_star] = STATE(105), + [sym__emphasis_underscore] = STATE(105), + [sym__strong_emphasis_underscore] = STATE(105), + [aux_sym_insert_repeat1] = STATE(105), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2447), + [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(91)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(106), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(106), + [sym__text_base] = STATE(461), + [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(461), + [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(2449), + [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(177)] = { + [STATE(92)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -48284,1249 +39243,925 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(107), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(107), [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(66), + [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(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3055), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(178)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(68), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(68), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3057), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(179)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), - [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(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(180)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_close_star] = ACTIONS(3061), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(181)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - [sym__strong_emphasis_close_underscore] = ACTIONS(3063), - }, - [STATE(182)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3065), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [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(2451), + [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(183)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(93)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(108), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3067), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(108), + [sym__text_base] = STATE(461), + [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(461), + [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(2453), + [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(184)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3069), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(94)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(23), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(23), + [sym__text_base] = STATE(466), + [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(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2399), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), }, - [STATE(185)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3071), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(95)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2455), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, - [STATE(186)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3073), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(96)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2457), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, - [STATE(187)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(191), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(191), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(191), - [sym__emphasis_star] = STATE(191), - [sym__strong_emphasis_star] = STATE(191), - [sym__emphasis_underscore] = STATE(191), - [sym__strong_emphasis_underscore] = STATE(191), - [aux_sym_insert_repeat1] = STATE(191), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3075), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(97)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2459), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), }, - [STATE(188)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3077), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(98)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), + [sym__text_base] = STATE(459), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), + [aux_sym__inline_base_repeat1] = STATE(459), + [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__single_quote_close] = ACTIONS(2461), + [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(99)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2461), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), }, - [STATE(189)] = { + [STATE(100)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2463), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(101)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -49544,94 +40179,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3079), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2465), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(190)] = { + [STATE(102)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -49649,199 +40283,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3081), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(191)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_close_star] = ACTIONS(2467), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(192)] = { + [STATE(103)] = { [sym_backslash_escape] = STATE(456), [sym_commonmark_attribute] = STATE(456), [sym_code_span] = STATE(456), @@ -49859,199 +40387,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(456), [sym_shortcode] = STATE(456), [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(204), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(204), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(204), - [sym__emphasis_star] = STATE(204), - [sym__strong_emphasis_star] = STATE(204), - [sym__emphasis_underscore] = STATE(204), - [sym__strong_emphasis_underscore] = STATE(204), - [aux_sym_insert_repeat1] = STATE(204), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3085), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), + [sym__strong_emphasis_close_underscore] = ACTIONS(2469), }, - [STATE(193)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(205), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(205), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(205), - [sym__emphasis_star] = STATE(205), - [sym__strong_emphasis_star] = STATE(205), - [sym__emphasis_underscore] = STATE(205), - [sym__strong_emphasis_underscore] = STATE(205), - [aux_sym_insert_repeat1] = STATE(205), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3087), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [STATE(104)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(194)] = { + [STATE(105)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -50069,1144 +40595,1029 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(206), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(206), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), [sym__text_base] = STATE(461), - [sym__inline_element] = STATE(206), - [sym__emphasis_star] = STATE(206), - [sym__strong_emphasis_star] = STATE(206), - [sym__emphasis_underscore] = STATE(206), - [sym__strong_emphasis_underscore] = STATE(206), - [aux_sym_insert_repeat1] = STATE(206), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3087), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(195)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(207), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(207), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(207), - [sym__emphasis_star] = STATE(207), - [sym__strong_emphasis_star] = STATE(207), - [sym__emphasis_underscore] = STATE(207), - [sym__strong_emphasis_underscore] = STATE(207), - [aux_sym_insert_repeat1] = STATE(207), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3089), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(196)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(208), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(208), - [sym__text_base] = STATE(465), - [sym__inline_element] = STATE(208), - [sym__emphasis_star] = STATE(208), - [sym__strong_emphasis_star] = STATE(208), - [sym__emphasis_underscore] = STATE(208), - [sym__strong_emphasis_underscore] = STATE(208), - [aux_sym_insert_repeat1] = STATE(208), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(197)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(211), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3093), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [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(2473), + [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(198)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(212), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(106)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(212), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(212), - [sym__emphasis_star] = STATE(212), - [sym__strong_emphasis_star] = STATE(212), - [sym__emphasis_underscore] = STATE(212), - [sym__strong_emphasis_underscore] = STATE(212), - [aux_sym_insert_repeat1] = STATE(212), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3095), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2475), + [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(199)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(213), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(107)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(213), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(213), - [sym__emphasis_star] = STATE(213), - [sym__strong_emphasis_star] = STATE(213), - [sym__emphasis_underscore] = STATE(213), - [sym__strong_emphasis_underscore] = STATE(213), - [aux_sym_insert_repeat1] = STATE(213), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3097), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2477), + [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(200)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(214), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(108)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(214), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(214), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3099), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2479), + [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(201)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(215), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(215), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(215), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3101), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(113), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(113), + [sym__text_base] = STATE(458), + [sym__inline_element] = 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_insert_repeat1] = STATE(113), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(202)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3103), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [STATE(110)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2483), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(111)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2485), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(112)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2487), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, - [STATE(203)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3105), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [STATE(113)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2489), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(204)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3107), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [STATE(114)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(127), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(127), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(127), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2491), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), }, - [STATE(205)] = { + [STATE(115)] = { [sym_backslash_escape] = STATE(459), [sym_commonmark_attribute] = STATE(459), [sym_code_span] = STATE(459), @@ -51224,1354 +41635,301 @@ 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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), + [sym__link_text] = STATE(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(128), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(128), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), + [sym__inline_element] = STATE(128), + [sym__emphasis_star] = STATE(128), + [sym__strong_emphasis_star] = STATE(128), + [sym__emphasis_underscore] = STATE(128), + [sym__strong_emphasis_underscore] = STATE(128), + [aux_sym_insert_repeat1] = STATE(128), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3109), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), - }, - [STATE(206)] = { - [sym_backslash_escape] = STATE(461), - [sym_commonmark_attribute] = STATE(461), - [sym_code_span] = STATE(461), - [sym_latex_span] = STATE(461), - [sym_insert] = STATE(461), - [sym_delete] = STATE(461), - [sym_highlight] = STATE(461), - [sym_edit_comment] = STATE(461), - [sym_superscript] = STATE(461), - [sym_subscript] = STATE(461), - [sym_strikeout] = STATE(461), - [sym_quoted_span] = STATE(461), - [sym_inline_note] = STATE(461), - [sym_citation] = STATE(461), - [sym_shortcode_escaped] = STATE(461), - [sym_shortcode] = STATE(461), - [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), - [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), - [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), - [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(66), - [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3109), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(207)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(68), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(68), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3111), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(208)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), - [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(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3113), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(209)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_close_star] = ACTIONS(3115), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(210)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - [sym__strong_emphasis_close_underscore] = ACTIONS(3117), - }, - [STATE(211)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(212)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3121), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(213)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3123), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(214)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3125), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(215)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3127), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(216)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(220), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(220), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(220), - [sym__emphasis_star] = STATE(220), - [sym__strong_emphasis_star] = STATE(220), - [sym__emphasis_underscore] = STATE(220), - [sym__strong_emphasis_underscore] = STATE(220), - [aux_sym_insert_repeat1] = STATE(220), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [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__single_quote_close] = ACTIONS(2493), + [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(217)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(116)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(129), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(129), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(129), + [sym__emphasis_star] = STATE(129), + [sym__strong_emphasis_star] = STATE(129), + [sym__emphasis_underscore] = STATE(129), + [sym__strong_emphasis_underscore] = STATE(129), + [aux_sym_insert_repeat1] = STATE(129), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2493), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), }, - [STATE(218)] = { + [STATE(117)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(130), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(130), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2495), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(118)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -52589,514 +41947,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(131), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(131), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3133), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), - }, - [STATE(219)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3135), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(220)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(221)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(234), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(234), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(234), - [sym__emphasis_star] = STATE(234), - [sym__strong_emphasis_star] = STATE(234), - [sym__emphasis_underscore] = STATE(234), - [sym__strong_emphasis_underscore] = STATE(234), - [aux_sym_insert_repeat1] = STATE(234), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3139), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2497), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(222)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(235), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(235), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(235), - [sym__emphasis_star] = STATE(235), - [sym__strong_emphasis_star] = STATE(235), - [sym__emphasis_underscore] = STATE(235), - [sym__strong_emphasis_underscore] = STATE(235), - [aux_sym_insert_repeat1] = STATE(235), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3141), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [STATE(119)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(134), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2499), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(223)] = { + [STATE(120)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -53114,934 +42155,1133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(236), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(135), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(236), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(135), [sym__text_base] = STATE(461), - [sym__inline_element] = STATE(236), - [sym__emphasis_star] = STATE(236), - [sym__strong_emphasis_star] = STATE(236), - [sym__emphasis_underscore] = STATE(236), - [sym__strong_emphasis_underscore] = STATE(236), - [aux_sym_insert_repeat1] = STATE(236), + [sym__inline_element] = STATE(135), + [sym__emphasis_star] = STATE(135), + [sym__strong_emphasis_star] = STATE(135), + [sym__emphasis_underscore] = STATE(135), + [sym__strong_emphasis_underscore] = STATE(135), + [aux_sym_insert_repeat1] = STATE(135), [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(224)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(237), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(237), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(237), - [sym__emphasis_star] = STATE(237), - [sym__strong_emphasis_star] = STATE(237), - [sym__emphasis_underscore] = STATE(237), - [sym__strong_emphasis_underscore] = STATE(237), - [aux_sym_insert_repeat1] = STATE(237), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3143), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(225)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(238), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(238), - [sym__text_base] = STATE(465), - [sym__inline_element] = STATE(238), - [sym__emphasis_star] = STATE(238), - [sym__strong_emphasis_star] = STATE(238), - [sym__emphasis_underscore] = STATE(238), - [sym__strong_emphasis_underscore] = STATE(238), - [aux_sym_insert_repeat1] = STATE(238), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3145), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(226)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(241), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [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(2501), + [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(227)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(242), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(121)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(136), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(242), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(242), - [sym__emphasis_star] = STATE(242), - [sym__strong_emphasis_star] = STATE(242), - [sym__emphasis_underscore] = STATE(242), - [sym__strong_emphasis_underscore] = STATE(242), - [aux_sym_insert_repeat1] = STATE(242), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3149), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(136), + [sym__text_base] = STATE(461), + [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(461), + [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(2503), + [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(228)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(243), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(122)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(137), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(243), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(243), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3151), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(137), + [sym__text_base] = STATE(461), + [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(461), + [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(2505), + [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(229)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(244), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(123)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(138), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(244), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(244), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3153), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(138), + [sym__text_base] = STATE(461), + [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(461), + [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(2507), + [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(124)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(24), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(24), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2509), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(125)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2511), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(126)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2513), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(127)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2515), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(128)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), + [sym__text_base] = STATE(459), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), + [aux_sym__inline_base_repeat1] = STATE(459), + [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__single_quote_close] = ACTIONS(2517), + [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(230)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(245), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(245), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(245), - [sym__emphasis_star] = STATE(245), - [sym__strong_emphasis_star] = STATE(245), - [sym__emphasis_underscore] = STATE(245), - [sym__strong_emphasis_underscore] = STATE(245), - [aux_sym_insert_repeat1] = STATE(245), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3155), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(129)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2517), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), }, - [STATE(231)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(87), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(87), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(87), - [aux_sym__inline_no_star] = STATE(87), - [sym__emphasis_star] = STATE(87), - [sym__strong_emphasis_star] = STATE(87), - [sym__emphasis_underscore] = STATE(87), - [sym__strong_emphasis_underscore] = STATE(87), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__last_token_punctuation] = ACTIONS(3157), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [STATE(130)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2519), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, - [STATE(232)] = { + [STATE(131)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -54059,94 +43299,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3159), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2521), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(233)] = { + [STATE(132)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -54164,304 +43403,1757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3161), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_close_star] = ACTIONS(2523), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), + }, + [STATE(133)] = { + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), + [sym__strong_emphasis_close_underscore] = ACTIONS(2525), + }, + [STATE(134)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2527), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(135)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2529), + [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(136)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2531), + [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(137)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2533), + [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(138)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2535), + [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(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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(143), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(143), + [sym__text_base] = STATE(458), + [sym__inline_element] = 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_insert_repeat1] = STATE(143), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2537), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(140)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2539), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(141)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2541), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(142)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2543), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(143)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2545), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(144)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(156), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(156), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(156), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2547), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(145)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(158), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(158), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(158), + [sym__emphasis_star] = STATE(158), + [sym__strong_emphasis_star] = STATE(158), + [sym__emphasis_underscore] = STATE(158), + [sym__strong_emphasis_underscore] = STATE(158), + [aux_sym_insert_repeat1] = STATE(158), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(247), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), + }, + [STATE(146)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(159), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(159), + [sym__text_base] = STATE(453), + [sym__inline_element] = STATE(159), + [sym__emphasis_star] = STATE(159), + [sym__strong_emphasis_star] = STATE(159), + [sym__emphasis_underscore] = STATE(159), + [sym__strong_emphasis_underscore] = STATE(159), + [aux_sym_insert_repeat1] = STATE(159), + [aux_sym__inline_base_repeat1] = STATE(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2549), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, - [STATE(234)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3163), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [STATE(147)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(18), + [aux_sym__inline_no_star] = STATE(18), + [sym__emphasis_star] = STATE(18), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(18), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__last_token_punctuation] = ACTIONS(2551), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, - [STATE(235)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3165), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [STATE(148)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(163), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2553), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(236)] = { + [STATE(149)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -54479,1249 +45171,1133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(164), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(164), [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(66), + [sym__inline_element] = STATE(164), + [sym__emphasis_star] = STATE(164), + [sym__strong_emphasis_star] = STATE(164), + [sym__emphasis_underscore] = STATE(164), + [sym__strong_emphasis_underscore] = STATE(164), + [aux_sym_insert_repeat1] = STATE(164), [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3165), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(237)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(68), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(68), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3167), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(238)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), - [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(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3169), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(239)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_close_star] = ACTIONS(3171), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(240)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - [sym__strong_emphasis_close_underscore] = ACTIONS(3173), - }, - [STATE(241)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [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(2555), + [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(242)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(150)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(165), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3177), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(165), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(165), + [sym__emphasis_star] = STATE(165), + [sym__strong_emphasis_star] = STATE(165), + [sym__emphasis_underscore] = STATE(165), + [sym__strong_emphasis_underscore] = STATE(165), + [aux_sym_insert_repeat1] = STATE(165), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2557), + [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(243)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(151)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(166), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3179), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(166), + [sym__text_base] = STATE(461), + [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(461), + [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(2559), + [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(244)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(152)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(167), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3181), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(167), + [sym__text_base] = STATE(461), + [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(461), + [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(2561), + [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(153)] = { + [sym_backslash_escape] = STATE(474), + [sym_commonmark_attribute] = STATE(474), + [sym_code_span] = STATE(474), + [sym_latex_span] = STATE(474), + [sym_insert] = STATE(474), + [sym_delete] = STATE(474), + [sym_highlight] = STATE(474), + [sym_edit_comment] = STATE(474), + [sym_superscript] = STATE(474), + [sym_subscript] = STATE(474), + [sym_strikeout] = STATE(474), + [sym_quoted_span] = STATE(474), + [sym_inline_note] = STATE(474), + [sym_citation] = STATE(474), + [sym_shortcode_escaped] = STATE(474), + [sym_shortcode] = STATE(474), + [sym_note_reference] = STATE(474), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(25), + [sym_image] = STATE(474), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), + [sym_hard_line_break] = STATE(474), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(25), + [sym__text_base] = STATE(474), + [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(474), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2563), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), + }, + [STATE(154)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2565), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(155)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2567), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(156)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2569), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), }, - [STATE(245)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3183), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(157)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), + [sym__text_base] = STATE(459), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), + [aux_sym__inline_base_repeat1] = STATE(459), + [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__single_quote_close] = ACTIONS(2571), + [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(246)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(250), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(250), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(250), - [sym__emphasis_star] = STATE(250), - [sym__strong_emphasis_star] = STATE(250), - [sym__emphasis_underscore] = STATE(250), - [sym__strong_emphasis_underscore] = STATE(250), - [aux_sym_insert_repeat1] = STATE(250), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(158)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2571), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), }, - [STATE(247)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(159)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2573), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, - [STATE(248)] = { + [STATE(160)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -55739,94 +46315,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3189), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2575), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(249)] = { + [STATE(161)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -55844,304 +46419,1341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3191), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_close_star] = ACTIONS(2577), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(250)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(162)] = { + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), + [sym__strong_emphasis_close_underscore] = ACTIONS(2579), + }, + [STATE(163)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2581), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(164)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2583), + [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(165)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2585), + [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(166)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2587), + [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(167)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2589), + [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(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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(172), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(172), + [sym__text_base] = STATE(458), + [sym__inline_element] = 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_insert_repeat1] = STATE(172), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2591), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2593), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(170)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2595), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(171)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2597), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(172)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2599), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(251)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(264), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(264), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(264), - [sym__emphasis_star] = STATE(264), - [sym__strong_emphasis_star] = STATE(264), - [sym__emphasis_underscore] = STATE(264), - [sym__strong_emphasis_underscore] = STATE(264), - [aux_sym_insert_repeat1] = STATE(264), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3195), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [STATE(173)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(185), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(185), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(185), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2601), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), }, - [STATE(252)] = { + [STATE(174)] = { [sym_backslash_escape] = STATE(459), [sym_commonmark_attribute] = STATE(459), [sym_code_span] = STATE(459), @@ -56159,94 +47771,509 @@ 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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(265), + [sym__link_text] = STATE(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(186), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(265), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(186), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(265), - [sym__emphasis_star] = STATE(265), - [sym__strong_emphasis_star] = STATE(265), - [sym__emphasis_underscore] = STATE(265), - [sym__strong_emphasis_underscore] = STATE(265), - [aux_sym_insert_repeat1] = STATE(265), + [sym__inline_element] = 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_insert_repeat1] = STATE(186), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3197), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [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__single_quote_close] = ACTIONS(2603), + [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(253)] = { + [STATE(175)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(187), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(187), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(187), + [sym__emphasis_star] = STATE(187), + [sym__strong_emphasis_star] = STATE(187), + [sym__emphasis_underscore] = STATE(187), + [sym__strong_emphasis_underscore] = STATE(187), + [aux_sym_insert_repeat1] = STATE(187), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2603), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), + }, + [STATE(176)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(188), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(188), + [sym__text_base] = STATE(453), + [sym__inline_element] = STATE(188), + [sym__emphasis_star] = STATE(188), + [sym__strong_emphasis_star] = STATE(188), + [sym__emphasis_underscore] = STATE(188), + [sym__strong_emphasis_underscore] = STATE(188), + [aux_sym_insert_repeat1] = STATE(188), + [aux_sym__inline_base_repeat1] = STATE(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2605), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(177)] = { + [sym_backslash_escape] = STATE(474), + [sym_commonmark_attribute] = STATE(474), + [sym_code_span] = STATE(474), + [sym_latex_span] = STATE(474), + [sym_insert] = STATE(474), + [sym_delete] = STATE(474), + [sym_highlight] = STATE(474), + [sym_edit_comment] = STATE(474), + [sym_superscript] = STATE(474), + [sym_subscript] = STATE(474), + [sym_strikeout] = STATE(474), + [sym_quoted_span] = STATE(474), + [sym_inline_note] = STATE(474), + [sym_citation] = STATE(474), + [sym_shortcode_escaped] = STATE(474), + [sym_shortcode] = STATE(474), + [sym_note_reference] = STATE(474), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(189), + [sym_image] = STATE(474), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), + [sym_hard_line_break] = STATE(474), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(189), + [sym__text_base] = STATE(474), + [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(474), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2607), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), + }, + [STATE(178)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(192), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(179)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -56264,829 +48291,717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(266), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(193), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(266), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(193), [sym__text_base] = STATE(461), - [sym__inline_element] = STATE(266), - [sym__emphasis_star] = STATE(266), - [sym__strong_emphasis_star] = STATE(266), - [sym__emphasis_underscore] = STATE(266), - [sym__strong_emphasis_underscore] = STATE(266), - [aux_sym_insert_repeat1] = STATE(266), + [sym__inline_element] = STATE(193), + [sym__emphasis_star] = STATE(193), + [sym__strong_emphasis_star] = STATE(193), + [sym__emphasis_underscore] = STATE(193), + [sym__strong_emphasis_underscore] = STATE(193), + [aux_sym_insert_repeat1] = STATE(193), [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3197), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(254)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(267), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(267), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(267), - [sym__emphasis_star] = STATE(267), - [sym__strong_emphasis_star] = STATE(267), - [sym__emphasis_underscore] = STATE(267), - [sym__strong_emphasis_underscore] = STATE(267), - [aux_sym_insert_repeat1] = STATE(267), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3199), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(255)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(268), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(268), - [sym__text_base] = STATE(465), - [sym__inline_element] = STATE(268), - [sym__emphasis_star] = STATE(268), - [sym__strong_emphasis_star] = STATE(268), - [sym__emphasis_underscore] = STATE(268), - [sym__strong_emphasis_underscore] = STATE(268), - [aux_sym_insert_repeat1] = STATE(268), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3201), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(256)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(271), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [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(2611), + [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(257)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(272), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(180)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(194), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(272), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(272), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3205), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(194), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(194), + [sym__emphasis_star] = STATE(194), + [sym__strong_emphasis_star] = STATE(194), + [sym__emphasis_underscore] = STATE(194), + [sym__strong_emphasis_underscore] = STATE(194), + [aux_sym_insert_repeat1] = STATE(194), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2613), + [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(258)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(273), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(181)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(195), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(273), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(273), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3207), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(195), + [sym__text_base] = STATE(461), + [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(461), + [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(2615), + [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(259)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(274), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(182)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(196), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(274), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(274), - [sym__emphasis_star] = STATE(274), - [sym__strong_emphasis_star] = STATE(274), - [sym__emphasis_underscore] = STATE(274), - [sym__strong_emphasis_underscore] = STATE(274), - [aux_sym_insert_repeat1] = STATE(274), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3209), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(196), + [sym__text_base] = STATE(461), + [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(461), + [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(2617), + [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(260)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(275), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(275), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(275), - [sym__emphasis_star] = STATE(275), - [sym__strong_emphasis_star] = STATE(275), - [sym__emphasis_underscore] = STATE(275), - [sym__strong_emphasis_underscore] = STATE(275), - [aux_sym_insert_repeat1] = STATE(275), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3211), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(183)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2619), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(184)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2621), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(185)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2623), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), }, - [STATE(261)] = { + [STATE(186)] = { [sym_backslash_escape] = STATE(459), [sym_commonmark_attribute] = STATE(459), [sym_code_span] = STATE(459), @@ -57104,94 +49019,301 @@ 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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(38), + [sym__link_text] = STATE(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(38), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), [sym__text_base] = STATE(459), - [sym__inline_element] = 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_insert_repeat1] = STATE(38), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3213), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [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__single_quote_close] = ACTIONS(2625), + [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(262)] = { + [STATE(187)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2625), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), + }, + [STATE(188)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2627), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(189)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -57209,94 +49331,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3215), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(263)] = { + [STATE(190)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -57314,94 +49435,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3217), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_close_star] = ACTIONS(2631), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(264)] = { + [STATE(191)] = { [sym_backslash_escape] = STATE(456), [sym_commonmark_attribute] = STATE(456), [sym_code_span] = STATE(456), @@ -57419,94 +49539,1237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(456), [sym_shortcode] = STATE(456), [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3219), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), + [sym__strong_emphasis_close_underscore] = ACTIONS(2633), }, - [STATE(265)] = { + [STATE(192)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(193)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2637), + [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(194)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2639), + [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(195)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2641), + [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(196)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2643), + [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(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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(201), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(201), + [sym__text_base] = STATE(458), + [sym__inline_element] = 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_insert_repeat1] = STATE(201), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(199)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2649), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(200)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2651), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(201)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2653), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(202)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(214), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(214), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(214), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2655), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(203)] = { [sym_backslash_escape] = STATE(459), [sym_commonmark_attribute] = STATE(459), [sym_code_span] = STATE(459), @@ -57524,94 +50787,509 @@ 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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), + [sym__link_text] = STATE(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(215), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(215), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), + [sym__inline_element] = 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_insert_repeat1] = STATE(215), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3221), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [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__single_quote_close] = ACTIONS(2657), + [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(204)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(216), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(216), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(216), + [sym__emphasis_star] = STATE(216), + [sym__strong_emphasis_star] = STATE(216), + [sym__emphasis_underscore] = STATE(216), + [sym__strong_emphasis_underscore] = STATE(216), + [aux_sym_insert_repeat1] = STATE(216), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2657), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), + }, + [STATE(205)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(217), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(217), + [sym__text_base] = STATE(453), + [sym__inline_element] = STATE(217), + [sym__emphasis_star] = STATE(217), + [sym__strong_emphasis_star] = STATE(217), + [sym__emphasis_underscore] = STATE(217), + [sym__strong_emphasis_underscore] = STATE(217), + [aux_sym_insert_repeat1] = STATE(217), + [aux_sym__inline_base_repeat1] = STATE(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2659), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(206)] = { + [sym_backslash_escape] = STATE(474), + [sym_commonmark_attribute] = STATE(474), + [sym_code_span] = STATE(474), + [sym_latex_span] = STATE(474), + [sym_insert] = STATE(474), + [sym_delete] = STATE(474), + [sym_highlight] = STATE(474), + [sym_edit_comment] = STATE(474), + [sym_superscript] = STATE(474), + [sym_subscript] = STATE(474), + [sym_strikeout] = STATE(474), + [sym_quoted_span] = STATE(474), + [sym_inline_note] = STATE(474), + [sym_citation] = STATE(474), + [sym_shortcode_escaped] = STATE(474), + [sym_shortcode] = STATE(474), + [sym_note_reference] = STATE(474), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(218), + [sym_image] = STATE(474), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), + [sym_hard_line_break] = STATE(474), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(218), + [sym__text_base] = STATE(474), + [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(474), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2661), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(266)] = { + [STATE(207)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(221), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2663), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(208)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -57629,1249 +51307,1029 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(222), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(222), [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(66), + [sym__inline_element] = STATE(222), + [sym__emphasis_star] = STATE(222), + [sym__strong_emphasis_star] = STATE(222), + [sym__emphasis_underscore] = STATE(222), + [sym__strong_emphasis_underscore] = STATE(222), + [aux_sym_insert_repeat1] = STATE(222), [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3221), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(267)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(68), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(68), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3223), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(268)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), - [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(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3225), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(269)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_close_star] = ACTIONS(3227), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(270)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - [sym__strong_emphasis_close_underscore] = ACTIONS(3229), - }, - [STATE(271)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3231), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [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(2665), + [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(272)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(209)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(223), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3233), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(223), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(223), + [sym__emphasis_star] = STATE(223), + [sym__strong_emphasis_star] = STATE(223), + [sym__emphasis_underscore] = STATE(223), + [sym__strong_emphasis_underscore] = STATE(223), + [aux_sym_insert_repeat1] = STATE(223), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2667), + [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(273)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(210)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(224), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3235), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(224), + [sym__text_base] = STATE(461), + [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(461), + [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(2669), + [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(274)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(211)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(225), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3237), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(225), + [sym__text_base] = STATE(461), + [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(461), + [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(2671), + [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(275)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3239), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(212)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2673), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, - [STATE(276)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(280), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(280), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(280), - [sym__emphasis_star] = STATE(280), - [sym__strong_emphasis_star] = STATE(280), - [sym__emphasis_underscore] = STATE(280), - [sym__strong_emphasis_underscore] = STATE(280), - [aux_sym_insert_repeat1] = STATE(280), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3241), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(213)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2675), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(214)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2677), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(215)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), + [sym__text_base] = STATE(459), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), + [aux_sym__inline_base_repeat1] = STATE(459), + [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__single_quote_close] = ACTIONS(2679), + [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(216)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2679), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), }, - [STATE(277)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3243), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(217)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2681), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, - [STATE(278)] = { + [STATE(218)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -58889,94 +52347,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3245), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2683), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(279)] = { + [STATE(219)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -58994,199 +52451,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3247), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(280)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3249), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_close_star] = ACTIONS(2685), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(281)] = { + [STATE(220)] = { [sym_backslash_escape] = STATE(456), [sym_commonmark_attribute] = STATE(456), [sym_code_span] = STATE(456), @@ -59204,94 +52555,1237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(456), [sym_shortcode] = STATE(456), [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(293), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(293), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(293), - [sym__emphasis_star] = STATE(293), - [sym__strong_emphasis_star] = STATE(293), - [sym__emphasis_underscore] = STATE(293), - [sym__strong_emphasis_underscore] = STATE(293), - [aux_sym_insert_repeat1] = STATE(293), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3251), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), + [sym__strong_emphasis_close_underscore] = ACTIONS(2687), }, - [STATE(282)] = { + [STATE(221)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2689), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(222)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2691), + [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(223)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2693), + [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(224)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2695), + [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(225)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2697), + [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(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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(230), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(230), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(230), + [sym__emphasis_star] = STATE(230), + [sym__strong_emphasis_star] = STATE(230), + [sym__emphasis_underscore] = STATE(230), + [sym__strong_emphasis_underscore] = STATE(230), + [aux_sym_insert_repeat1] = STATE(230), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2699), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2701), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(228)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2703), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(229)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2705), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2707), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(231)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(244), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(244), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(244), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2709), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(232)] = { [sym_backslash_escape] = STATE(459), [sym_commonmark_attribute] = STATE(459), [sym_code_span] = STATE(459), @@ -59309,94 +53803,509 @@ 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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(294), + [sym__link_text] = STATE(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(245), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(294), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(245), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(294), - [sym__emphasis_star] = STATE(294), - [sym__strong_emphasis_star] = STATE(294), - [sym__emphasis_underscore] = STATE(294), - [sym__strong_emphasis_underscore] = STATE(294), - [aux_sym_insert_repeat1] = STATE(294), + [sym__inline_element] = STATE(245), + [sym__emphasis_star] = STATE(245), + [sym__strong_emphasis_star] = STATE(245), + [sym__emphasis_underscore] = STATE(245), + [sym__strong_emphasis_underscore] = STATE(245), + [aux_sym_insert_repeat1] = STATE(245), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3253), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [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__single_quote_close] = ACTIONS(2711), + [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(233)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(246), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(246), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(246), + [sym__emphasis_star] = STATE(246), + [sym__strong_emphasis_star] = STATE(246), + [sym__emphasis_underscore] = STATE(246), + [sym__strong_emphasis_underscore] = STATE(246), + [aux_sym_insert_repeat1] = STATE(246), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2711), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), + }, + [STATE(234)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(247), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(247), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2713), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(235)] = { + [sym_backslash_escape] = STATE(474), + [sym_commonmark_attribute] = STATE(474), + [sym_code_span] = STATE(474), + [sym_latex_span] = STATE(474), + [sym_insert] = STATE(474), + [sym_delete] = STATE(474), + [sym_highlight] = STATE(474), + [sym_edit_comment] = STATE(474), + [sym_superscript] = STATE(474), + [sym_subscript] = STATE(474), + [sym_strikeout] = STATE(474), + [sym_quoted_span] = STATE(474), + [sym_inline_note] = STATE(474), + [sym_citation] = STATE(474), + [sym_shortcode_escaped] = STATE(474), + [sym_shortcode] = STATE(474), + [sym_note_reference] = STATE(474), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(248), + [sym_image] = STATE(474), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), + [sym_hard_line_break] = STATE(474), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(248), + [sym__text_base] = STATE(474), + [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(474), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2715), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(283)] = { + [STATE(236)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(251), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2717), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(237)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -59414,829 +54323,1133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(295), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(252), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(295), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(252), [sym__text_base] = STATE(461), - [sym__inline_element] = STATE(295), - [sym__emphasis_star] = STATE(295), - [sym__strong_emphasis_star] = STATE(295), - [sym__emphasis_underscore] = STATE(295), - [sym__strong_emphasis_underscore] = STATE(295), - [aux_sym_insert_repeat1] = STATE(295), + [sym__inline_element] = STATE(252), + [sym__emphasis_star] = STATE(252), + [sym__strong_emphasis_star] = STATE(252), + [sym__emphasis_underscore] = STATE(252), + [sym__strong_emphasis_underscore] = STATE(252), + [aux_sym_insert_repeat1] = STATE(252), [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3253), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(284)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(296), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(296), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(296), - [sym__emphasis_star] = STATE(296), - [sym__strong_emphasis_star] = STATE(296), - [sym__emphasis_underscore] = STATE(296), - [sym__strong_emphasis_underscore] = STATE(296), - [aux_sym_insert_repeat1] = STATE(296), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3255), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(285)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(297), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(297), - [sym__text_base] = STATE(465), - [sym__inline_element] = STATE(297), - [sym__emphasis_star] = STATE(297), - [sym__strong_emphasis_star] = STATE(297), - [sym__emphasis_underscore] = STATE(297), - [sym__strong_emphasis_underscore] = STATE(297), - [aux_sym_insert_repeat1] = STATE(297), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3257), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), + [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(2719), + [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(286)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(300), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(287)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(301), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(238)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(253), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(301), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(301), - [sym__emphasis_star] = STATE(301), - [sym__strong_emphasis_star] = STATE(301), - [sym__emphasis_underscore] = STATE(301), - [sym__strong_emphasis_underscore] = STATE(301), - [aux_sym_insert_repeat1] = STATE(301), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3261), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(253), + [sym__text_base] = STATE(461), + [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(461), + [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(2721), + [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(288)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(302), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(239)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(254), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(302), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(302), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3263), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(254), + [sym__text_base] = STATE(461), + [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(461), + [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(2723), + [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(289)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(303), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(240)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(255), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(303), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(303), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3265), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(255), + [sym__text_base] = STATE(461), + [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(461), + [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(2725), + [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(290)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(304), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(304), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(304), - [sym__emphasis_star] = STATE(304), - [sym__strong_emphasis_star] = STATE(304), - [sym__emphasis_underscore] = STATE(304), - [sym__strong_emphasis_underscore] = STATE(304), - [aux_sym_insert_repeat1] = STATE(304), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3267), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(29), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(291)] = { + [STATE(242)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2729), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(243)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2731), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(244)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2733), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(245)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), + [sym__text_base] = STATE(459), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), + [aux_sym__inline_base_repeat1] = STATE(459), + [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__single_quote_close] = ACTIONS(2735), + [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(246)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2735), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), + }, + [STATE(247)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2737), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(248)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -60254,94 +55467,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3269), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2739), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(292)] = { + [STATE(249)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -60359,94 +55571,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3271), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_close_star] = ACTIONS(2741), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(293)] = { + [STATE(250)] = { [sym_backslash_escape] = STATE(456), [sym_commonmark_attribute] = STATE(456), [sym_code_span] = STATE(456), @@ -60464,94 +55675,1237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(456), [sym_shortcode] = STATE(456), [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3273), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), + [sym__strong_emphasis_close_underscore] = ACTIONS(2743), }, - [STATE(294)] = { + [STATE(251)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2745), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(252)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2747), + [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(253)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2749), + [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(254)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2751), + [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(255)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2753), + [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(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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(260), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(260), + [sym__text_base] = STATE(458), + [sym__inline_element] = 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_insert_repeat1] = STATE(260), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2755), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(257)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2757), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(258)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2759), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(259)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2761), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(260)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2763), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(261)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(273), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(273), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(273), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2765), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(262)] = { [sym_backslash_escape] = STATE(459), [sym_commonmark_attribute] = STATE(459), [sym_code_span] = STATE(459), @@ -60569,94 +56923,821 @@ 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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), + [sym__link_text] = STATE(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(274), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(274), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), + [sym__inline_element] = STATE(274), + [sym__emphasis_star] = STATE(274), + [sym__strong_emphasis_star] = STATE(274), + [sym__emphasis_underscore] = STATE(274), + [sym__strong_emphasis_underscore] = STATE(274), + [aux_sym_insert_repeat1] = STATE(274), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3275), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [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__single_quote_close] = ACTIONS(2767), + [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(263)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(275), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(275), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(275), + [sym__emphasis_star] = STATE(275), + [sym__strong_emphasis_star] = STATE(275), + [sym__emphasis_underscore] = STATE(275), + [sym__strong_emphasis_underscore] = STATE(275), + [aux_sym_insert_repeat1] = STATE(275), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2767), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), + }, + [STATE(264)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(276), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(276), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2769), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(265)] = { + [sym_backslash_escape] = STATE(474), + [sym_commonmark_attribute] = STATE(474), + [sym_code_span] = STATE(474), + [sym_latex_span] = STATE(474), + [sym_insert] = STATE(474), + [sym_delete] = STATE(474), + [sym_highlight] = STATE(474), + [sym_edit_comment] = STATE(474), + [sym_superscript] = STATE(474), + [sym_subscript] = STATE(474), + [sym_strikeout] = STATE(474), + [sym_quoted_span] = STATE(474), + [sym_inline_note] = STATE(474), + [sym_citation] = STATE(474), + [sym_shortcode_escaped] = STATE(474), + [sym_shortcode] = STATE(474), + [sym_note_reference] = STATE(474), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(277), + [sym_image] = STATE(474), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), + [sym_hard_line_break] = STATE(474), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(277), + [sym__text_base] = STATE(474), + [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(474), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2771), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), + }, + [STATE(266)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(280), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(267)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(281), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(281), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(281), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(281), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(281), + [aux_sym_insert_repeat1] = STATE(281), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2775), + [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(268)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(282), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(282), + [sym__text_base] = STATE(461), + [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(461), + [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(2777), + [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(269)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(283), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(283), + [sym__text_base] = STATE(461), + [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(461), + [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(2779), + [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(295)] = { + [STATE(270)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -60674,1249 +57755,717 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(284), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(284), [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(66), + [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(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3275), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(296)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(68), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(68), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3277), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(297)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), - [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(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3279), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(298)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_close_star] = ACTIONS(3281), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(299)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - [sym__strong_emphasis_close_underscore] = ACTIONS(3283), - }, - [STATE(300)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3285), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [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(2781), + [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(301)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3287), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(271)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2783), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, - [STATE(302)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3289), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(272)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2785), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, - [STATE(303)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3291), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(273)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2787), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), }, - [STATE(304)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3293), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(274)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), + [sym__text_base] = STATE(459), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), + [aux_sym__inline_base_repeat1] = STATE(459), + [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__single_quote_close] = ACTIONS(2789), + [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(305)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(309), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(309), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(309), - [sym__emphasis_star] = STATE(309), - [sym__strong_emphasis_star] = STATE(309), - [sym__emphasis_underscore] = STATE(309), - [sym__strong_emphasis_underscore] = STATE(309), - [aux_sym_insert_repeat1] = STATE(309), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3295), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(275)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2789), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), }, - [STATE(306)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(276)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2791), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, - [STATE(307)] = { + [STATE(277)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -61934,94 +58483,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3299), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2793), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(308)] = { + [STATE(278)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -62039,199 +58587,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3301), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(309)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3303), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_close_star] = ACTIONS(2795), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(310)] = { + [STATE(279)] = { [sym_backslash_escape] = STATE(456), [sym_commonmark_attribute] = STATE(456), [sym_code_span] = STATE(456), @@ -62249,94 +58691,1237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(456), [sym_shortcode] = STATE(456), [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(323), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(323), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(323), - [sym__emphasis_star] = STATE(323), - [sym__strong_emphasis_star] = STATE(323), - [sym__emphasis_underscore] = STATE(323), - [sym__strong_emphasis_underscore] = STATE(323), - [aux_sym_insert_repeat1] = STATE(323), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3305), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), + [sym__strong_emphasis_close_underscore] = ACTIONS(2797), }, - [STATE(311)] = { + [STATE(280)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2799), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(281)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2801), + [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(282)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2803), + [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(283)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2805), + [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(284)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2807), + [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(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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(289), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(289), + [sym__text_base] = STATE(458), + [sym__inline_element] = 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_insert_repeat1] = STATE(289), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2809), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(286)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2811), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(287)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2813), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(288)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2815), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(289)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2817), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(290)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(303), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(303), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(303), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2819), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(291)] = { [sym_backslash_escape] = STATE(459), [sym_commonmark_attribute] = STATE(459), [sym_code_span] = STATE(459), @@ -62354,94 +59939,717 @@ 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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(324), + [sym__link_text] = STATE(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(304), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(324), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(304), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(324), - [sym__emphasis_star] = STATE(324), - [sym__strong_emphasis_star] = STATE(324), - [sym__emphasis_underscore] = STATE(324), - [sym__strong_emphasis_underscore] = STATE(324), - [aux_sym_insert_repeat1] = STATE(324), + [sym__inline_element] = STATE(304), + [sym__emphasis_star] = STATE(304), + [sym__strong_emphasis_star] = STATE(304), + [sym__emphasis_underscore] = STATE(304), + [sym__strong_emphasis_underscore] = STATE(304), + [aux_sym_insert_repeat1] = STATE(304), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3307), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [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__single_quote_close] = ACTIONS(2821), + [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(292)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(305), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(305), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(305), + [sym__emphasis_star] = STATE(305), + [sym__strong_emphasis_star] = STATE(305), + [sym__emphasis_underscore] = STATE(305), + [sym__strong_emphasis_underscore] = STATE(305), + [aux_sym_insert_repeat1] = STATE(305), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2821), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), + }, + [STATE(293)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(306), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(306), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2823), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(294)] = { + [sym_backslash_escape] = STATE(474), + [sym_commonmark_attribute] = STATE(474), + [sym_code_span] = STATE(474), + [sym_latex_span] = STATE(474), + [sym_insert] = STATE(474), + [sym_delete] = STATE(474), + [sym_highlight] = STATE(474), + [sym_edit_comment] = STATE(474), + [sym_superscript] = STATE(474), + [sym_subscript] = STATE(474), + [sym_strikeout] = STATE(474), + [sym_quoted_span] = STATE(474), + [sym_inline_note] = STATE(474), + [sym_citation] = STATE(474), + [sym_shortcode_escaped] = STATE(474), + [sym_shortcode] = STATE(474), + [sym_note_reference] = STATE(474), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(307), + [sym_image] = STATE(474), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), + [sym_hard_line_break] = STATE(474), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(307), + [sym__text_base] = STATE(474), + [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(474), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2825), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), + }, + [STATE(295)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(310), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2827), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(296)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(311), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(311), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(311), + [sym__emphasis_star] = STATE(311), + [sym__strong_emphasis_star] = STATE(311), + [sym__emphasis_underscore] = STATE(311), + [sym__strong_emphasis_underscore] = STATE(311), + [aux_sym_insert_repeat1] = STATE(311), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2829), + [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(297)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(312), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(312), + [sym__text_base] = STATE(461), + [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(461), + [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(2831), + [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(312)] = { + [STATE(298)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -62459,934 +60667,925 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(325), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(313), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(325), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(313), [sym__text_base] = STATE(461), - [sym__inline_element] = STATE(325), - [sym__emphasis_star] = STATE(325), - [sym__strong_emphasis_star] = STATE(325), - [sym__emphasis_underscore] = STATE(325), - [sym__strong_emphasis_underscore] = STATE(325), - [aux_sym_insert_repeat1] = STATE(325), + [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(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3307), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(313)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(326), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(326), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(326), - [sym__emphasis_star] = STATE(326), - [sym__strong_emphasis_star] = STATE(326), - [sym__emphasis_underscore] = STATE(326), - [sym__strong_emphasis_underscore] = STATE(326), - [aux_sym_insert_repeat1] = STATE(326), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3309), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(314)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(327), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(327), - [sym__text_base] = STATE(465), - [sym__inline_element] = STATE(327), - [sym__emphasis_star] = STATE(327), - [sym__strong_emphasis_star] = STATE(327), - [sym__emphasis_underscore] = STATE(327), - [sym__strong_emphasis_underscore] = STATE(327), - [aux_sym_insert_repeat1] = STATE(327), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3311), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(315)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(330), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3313), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [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(2833), + [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(316)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(331), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(299)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(314), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(331), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(331), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3315), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(314), + [sym__text_base] = STATE(461), + [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(461), + [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(2835), + [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(317)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(332), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(300)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(30), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(332), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(332), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3317), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(30), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(30), + [sym__emphasis_star] = STATE(30), + [sym__strong_emphasis_star] = STATE(30), + [sym__emphasis_underscore] = STATE(30), + [sym__strong_emphasis_underscore] = STATE(30), + [aux_sym_insert_repeat1] = STATE(30), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2837), + [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(318)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(333), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(333), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(333), - [sym__emphasis_star] = STATE(333), - [sym__strong_emphasis_star] = STATE(333), - [sym__emphasis_underscore] = STATE(333), - [sym__strong_emphasis_underscore] = STATE(333), - [aux_sym_insert_repeat1] = STATE(333), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3319), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(301)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2839), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, - [STATE(319)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(334), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(334), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(334), - [sym__emphasis_star] = STATE(334), - [sym__strong_emphasis_star] = STATE(334), - [sym__emphasis_underscore] = STATE(334), - [sym__strong_emphasis_underscore] = STATE(334), - [aux_sym_insert_repeat1] = STATE(334), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3321), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [STATE(302)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2841), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, - [STATE(320)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3323), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [STATE(303)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2843), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), }, - [STATE(321)] = { + [STATE(304)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), + [sym__text_base] = STATE(459), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), + [aux_sym__inline_base_repeat1] = STATE(459), + [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__single_quote_close] = ACTIONS(2845), + [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(305)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2845), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), + }, + [STATE(306)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2847), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(307)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -63404,94 +61603,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3325), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(322)] = { + [STATE(308)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -63509,94 +61707,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3327), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_close_star] = ACTIONS(2851), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(323)] = { + [STATE(309)] = { [sym_backslash_escape] = STATE(456), [sym_commonmark_attribute] = STATE(456), [sym_code_span] = STATE(456), @@ -63614,199 +61811,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(456), [sym_shortcode] = STATE(456), [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3329), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), + [sym__strong_emphasis_close_underscore] = ACTIONS(2853), }, - [STATE(324)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3331), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [STATE(310)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2855), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(325)] = { + [STATE(311)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -63824,1249 +62019,1341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(66), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3331), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(326)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(68), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(68), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3333), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(327)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), - [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(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(328)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_close_star] = ACTIONS(3337), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(329)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - [sym__strong_emphasis_close_underscore] = ACTIONS(3339), - }, - [STATE(330)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [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(2857), + [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(331)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(312)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3343), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2859), + [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(332)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(313)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3345), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2861), + [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(333)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(314)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3347), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2863), + [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(334)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3349), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(319), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(319), + [sym__text_base] = STATE(458), + [sym__inline_element] = 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_insert_repeat1] = STATE(319), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2865), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(316)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2867), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(317)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2869), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(318)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2871), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(319)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2873), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(320)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(333), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(333), + [sym__text_base] = STATE(472), + [sym__inline_element] = STATE(333), + [sym__emphasis_star] = STATE(333), + [sym__strong_emphasis_star] = STATE(333), + [sym__emphasis_underscore] = STATE(333), + [sym__strong_emphasis_underscore] = STATE(333), + [aux_sym_insert_repeat1] = STATE(333), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2875), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(321)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(334), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(334), + [sym__text_base] = STATE(459), + [sym__inline_element] = STATE(334), + [sym__emphasis_star] = STATE(334), + [sym__strong_emphasis_star] = STATE(334), + [sym__emphasis_underscore] = STATE(334), + [sym__strong_emphasis_underscore] = STATE(334), + [aux_sym_insert_repeat1] = STATE(334), + [aux_sym__inline_base_repeat1] = STATE(459), + [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__single_quote_close] = ACTIONS(2877), + [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(335)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(339), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(339), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(339), - [sym__emphasis_star] = STATE(339), - [sym__strong_emphasis_star] = STATE(339), - [sym__emphasis_underscore] = STATE(339), - [sym__strong_emphasis_underscore] = STATE(339), - [aux_sym_insert_repeat1] = STATE(339), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3351), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(322)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(335), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(335), + [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(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2877), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), }, - [STATE(336)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3353), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(323)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(336), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(336), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2879), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, - [STATE(337)] = { + [STATE(324)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -65084,514 +63371,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(337), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(337), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [sym__inline_element] = STATE(337), + [sym__emphasis_star] = STATE(337), + [sym__strong_emphasis_star] = STATE(337), + [sym__emphasis_underscore] = STATE(337), + [sym__strong_emphasis_underscore] = STATE(337), + [aux_sym_insert_repeat1] = STATE(337), [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3355), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), - }, - [STATE(338)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3357), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(339)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3359), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(340)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(353), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(353), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(353), - [sym__emphasis_star] = STATE(353), - [sym__strong_emphasis_star] = STATE(353), - [sym__emphasis_underscore] = STATE(353), - [sym__strong_emphasis_underscore] = STATE(353), - [aux_sym_insert_repeat1] = STATE(353), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3361), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2881), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(341)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(354), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(354), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(354), - [sym__emphasis_star] = STATE(354), - [sym__strong_emphasis_star] = STATE(354), - [sym__emphasis_underscore] = STATE(354), - [sym__strong_emphasis_underscore] = STATE(354), - [aux_sym_insert_repeat1] = STATE(354), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3363), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [STATE(325)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(340), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2883), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(342)] = { + [STATE(326)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -65609,829 +63579,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(355), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(341), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(355), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(341), [sym__text_base] = STATE(461), - [sym__inline_element] = STATE(355), - [sym__emphasis_star] = STATE(355), - [sym__strong_emphasis_star] = STATE(355), - [sym__emphasis_underscore] = STATE(355), - [sym__strong_emphasis_underscore] = STATE(355), - [aux_sym_insert_repeat1] = STATE(355), + [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(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3363), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(343)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(356), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(356), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(356), - [sym__emphasis_star] = STATE(356), - [sym__strong_emphasis_star] = STATE(356), - [sym__emphasis_underscore] = STATE(356), - [sym__strong_emphasis_underscore] = STATE(356), - [aux_sym_insert_repeat1] = STATE(356), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3365), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(344)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(357), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(357), - [sym__text_base] = STATE(465), - [sym__inline_element] = STATE(357), - [sym__emphasis_star] = STATE(357), - [sym__strong_emphasis_star] = STATE(357), - [sym__emphasis_underscore] = STATE(357), - [sym__strong_emphasis_underscore] = STATE(357), - [aux_sym_insert_repeat1] = STATE(357), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3367), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(345)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(360), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3369), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(346)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(361), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(361), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(361), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3371), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [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(2885), + [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(347)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(362), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(327)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(342), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(362), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(362), - [sym__emphasis_star] = STATE(362), - [sym__strong_emphasis_star] = STATE(362), - [sym__emphasis_underscore] = STATE(362), - [sym__strong_emphasis_underscore] = STATE(362), - [aux_sym_insert_repeat1] = STATE(362), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3373), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(342), + [sym__text_base] = STATE(461), + [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(461), + [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(2887), + [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(348)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(363), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(328)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(343), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(363), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(363), - [sym__emphasis_star] = STATE(363), - [sym__strong_emphasis_star] = STATE(363), - [sym__emphasis_underscore] = STATE(363), - [sym__strong_emphasis_underscore] = STATE(363), - [aux_sym_insert_repeat1] = STATE(363), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3375), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(343), + [sym__text_base] = STATE(461), + [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(461), + [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(2889), + [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(349)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(364), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(329)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(344), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(364), - [sym__text_base] = STATE(473), - [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(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3377), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(344), + [sym__text_base] = STATE(461), + [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(461), + [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(2891), + [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(350)] = { + [STATE(330)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -66449,409 +63995,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(39), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(31), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(39), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(31), [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(39), + [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(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3213), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), + [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(2893), + [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(351)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3379), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [STATE(331)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2895), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, - [STATE(352)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3381), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [STATE(332)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2897), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, - [STATE(353)] = { - [sym_backslash_escape] = STATE(456), - [sym_commonmark_attribute] = STATE(456), - [sym_code_span] = STATE(456), - [sym_latex_span] = STATE(456), - [sym_insert] = STATE(456), - [sym_delete] = STATE(456), - [sym_highlight] = STATE(456), - [sym_edit_comment] = STATE(456), - [sym_superscript] = STATE(456), - [sym_subscript] = STATE(456), - [sym_strikeout] = STATE(456), - [sym_quoted_span] = STATE(456), - [sym_inline_note] = STATE(456), - [sym_citation] = STATE(456), - [sym_shortcode_escaped] = STATE(456), - [sym_shortcode] = STATE(456), - [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), - [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), - [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), - [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3383), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [STATE(333)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2899), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), }, - [STATE(354)] = { + [STATE(334)] = { [sym_backslash_escape] = STATE(459), [sym_commonmark_attribute] = STATE(459), [sym_code_span] = STATE(459), @@ -66869,1354 +64411,301 @@ 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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), + [sym__link_text] = STATE(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3385), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), - }, - [STATE(355)] = { - [sym_backslash_escape] = STATE(461), - [sym_commonmark_attribute] = STATE(461), - [sym_code_span] = STATE(461), - [sym_latex_span] = STATE(461), - [sym_insert] = STATE(461), - [sym_delete] = STATE(461), - [sym_highlight] = STATE(461), - [sym_edit_comment] = STATE(461), - [sym_superscript] = STATE(461), - [sym_subscript] = STATE(461), - [sym_strikeout] = STATE(461), - [sym_quoted_span] = STATE(461), - [sym_inline_note] = STATE(461), - [sym_citation] = STATE(461), - [sym_shortcode_escaped] = STATE(461), - [sym_shortcode] = STATE(461), - [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), - [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), - [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), - [sym__text_base] = STATE(461), - [sym__inline_element] = 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_insert_repeat1] = STATE(66), - [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3385), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(356)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(68), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(68), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3387), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(357)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), - [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(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3389), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(358)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_close_star] = ACTIONS(3391), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(359)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - [sym__strong_emphasis_close_underscore] = ACTIONS(3393), - }, - [STATE(360)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), - }, - [STATE(361)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3397), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(362)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3399), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(363)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3401), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), - }, - [STATE(364)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3403), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [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__single_quote_close] = ACTIONS(2901), + [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(365)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(369), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(369), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(369), - [sym__emphasis_star] = STATE(369), - [sym__strong_emphasis_star] = STATE(369), - [sym__emphasis_underscore] = STATE(369), - [sym__strong_emphasis_underscore] = STATE(369), - [aux_sym_insert_repeat1] = STATE(369), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3405), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(335)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2901), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), }, - [STATE(366)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3407), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [STATE(336)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2903), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, - [STATE(367)] = { + [STATE(337)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -68234,94 +64723,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3409), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2905), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(368)] = { + [STATE(338)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -68339,199 +64827,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3411), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(369)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3413), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_close_star] = ACTIONS(2907), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(370)] = { + [STATE(339)] = { [sym_backslash_escape] = STATE(456), [sym_commonmark_attribute] = STATE(456), [sym_code_span] = STATE(456), @@ -68549,199 +64931,1757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(456), [sym_shortcode] = STATE(456), [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(383), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(383), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(383), - [sym__emphasis_star] = STATE(383), - [sym__strong_emphasis_star] = STATE(383), - [sym__emphasis_underscore] = STATE(383), - [sym__strong_emphasis_underscore] = STATE(383), - [aux_sym_insert_repeat1] = STATE(383), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3415), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), + [sym__strong_emphasis_close_underscore] = ACTIONS(2909), + }, + [STATE(340)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2911), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(341)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2913), + [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(342)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2915), + [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(343)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2917), + [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(344)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2919), + [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(345)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(349), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(349), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(349), + [sym__emphasis_star] = STATE(349), + [sym__strong_emphasis_star] = STATE(349), + [sym__emphasis_underscore] = STATE(349), + [sym__strong_emphasis_underscore] = STATE(349), + [aux_sym_insert_repeat1] = STATE(349), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(346)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2923), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(347)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2925), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(348)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2927), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(349)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2929), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(350)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(363), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(363), + [sym__text_base] = STATE(472), + [sym__inline_element] = STATE(363), + [sym__emphasis_star] = STATE(363), + [sym__strong_emphasis_star] = STATE(363), + [sym__emphasis_underscore] = STATE(363), + [sym__strong_emphasis_underscore] = STATE(363), + [aux_sym_insert_repeat1] = STATE(363), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2931), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(351)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(364), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(364), + [sym__text_base] = STATE(459), + [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(459), + [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__single_quote_close] = ACTIONS(2933), + [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(352)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(365), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(365), + [sym__text_base] = STATE(466), + [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(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2933), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), + }, + [STATE(353)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(366), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(366), + [sym__text_base] = STATE(453), + [sym__inline_element] = STATE(366), + [sym__emphasis_star] = STATE(366), + [sym__strong_emphasis_star] = STATE(366), + [sym__emphasis_underscore] = STATE(366), + [sym__strong_emphasis_underscore] = STATE(366), + [aux_sym_insert_repeat1] = STATE(366), + [aux_sym__inline_base_repeat1] = STATE(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2935), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), }, - [STATE(371)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(384), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(384), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(384), - [sym__emphasis_star] = STATE(384), - [sym__strong_emphasis_star] = STATE(384), - [sym__emphasis_underscore] = STATE(384), - [sym__strong_emphasis_underscore] = STATE(384), - [aux_sym_insert_repeat1] = STATE(384), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3417), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [STATE(354)] = { + [sym_backslash_escape] = STATE(474), + [sym_commonmark_attribute] = STATE(474), + [sym_code_span] = STATE(474), + [sym_latex_span] = STATE(474), + [sym_insert] = STATE(474), + [sym_delete] = STATE(474), + [sym_highlight] = STATE(474), + [sym_edit_comment] = STATE(474), + [sym_superscript] = STATE(474), + [sym_subscript] = STATE(474), + [sym_strikeout] = STATE(474), + [sym_quoted_span] = STATE(474), + [sym_inline_note] = STATE(474), + [sym_citation] = STATE(474), + [sym_shortcode_escaped] = STATE(474), + [sym_shortcode] = STATE(474), + [sym_note_reference] = STATE(474), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(367), + [sym_image] = STATE(474), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), + [sym_hard_line_break] = STATE(474), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(367), + [sym__text_base] = STATE(474), + [sym__inline_element] = STATE(367), + [sym__emphasis_star] = STATE(367), + [sym__strong_emphasis_star] = STATE(367), + [sym__emphasis_underscore] = STATE(367), + [sym__strong_emphasis_underscore] = STATE(367), + [aux_sym_insert_repeat1] = STATE(367), + [aux_sym__inline_base_repeat1] = STATE(474), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2937), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(372)] = { + [STATE(355)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(370), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2939), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(356)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -68759,934 +66699,1133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(385), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(371), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(385), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(371), [sym__text_base] = STATE(461), - [sym__inline_element] = STATE(385), - [sym__emphasis_star] = STATE(385), - [sym__strong_emphasis_star] = STATE(385), - [sym__emphasis_underscore] = STATE(385), - [sym__strong_emphasis_underscore] = STATE(385), - [aux_sym_insert_repeat1] = STATE(385), + [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(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3417), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), - }, - [STATE(373)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(386), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(386), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(386), - [sym__emphasis_star] = STATE(386), - [sym__strong_emphasis_star] = STATE(386), - [sym__emphasis_underscore] = STATE(386), - [sym__strong_emphasis_underscore] = STATE(386), - [aux_sym_insert_repeat1] = STATE(386), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3419), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), - }, - [STATE(374)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(387), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(387), - [sym__text_base] = STATE(465), - [sym__inline_element] = STATE(387), - [sym__emphasis_star] = STATE(387), - [sym__strong_emphasis_star] = STATE(387), - [sym__emphasis_underscore] = STATE(387), - [sym__strong_emphasis_underscore] = STATE(387), - [aux_sym_insert_repeat1] = STATE(387), - [aux_sym__inline_base_repeat1] = STATE(465), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3421), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), - }, - [STATE(375)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(390), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3423), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [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(2941), + [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(376)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(391), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(357)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(372), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(391), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(391), - [sym__emphasis_star] = STATE(391), - [sym__strong_emphasis_star] = STATE(391), - [sym__emphasis_underscore] = STATE(391), - [sym__strong_emphasis_underscore] = STATE(391), - [aux_sym_insert_repeat1] = STATE(391), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3425), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(372), + [sym__text_base] = STATE(461), + [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(461), + [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(2943), + [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(377)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(392), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(358)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(373), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(392), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(392), - [sym__emphasis_star] = STATE(392), - [sym__strong_emphasis_star] = STATE(392), - [sym__emphasis_underscore] = STATE(392), - [sym__strong_emphasis_underscore] = STATE(392), - [aux_sym_insert_repeat1] = STATE(392), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3427), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(373), + [sym__text_base] = STATE(461), + [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(461), + [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(2945), + [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(378)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(393), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(359)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(374), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(393), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(393), - [sym__emphasis_star] = STATE(393), - [sym__strong_emphasis_star] = STATE(393), - [sym__emphasis_underscore] = STATE(393), - [sym__strong_emphasis_underscore] = STATE(393), - [aux_sym_insert_repeat1] = STATE(393), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3429), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(374), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(374), + [sym__emphasis_star] = STATE(374), + [sym__strong_emphasis_star] = STATE(374), + [sym__emphasis_underscore] = STATE(374), + [sym__strong_emphasis_underscore] = STATE(374), + [aux_sym_insert_repeat1] = STATE(374), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2947), + [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(379)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(394), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), + [STATE(360)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(32), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), [sym__image_description] = STATE(2741), [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(394), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(394), - [sym__emphasis_star] = STATE(394), - [sym__strong_emphasis_star] = STATE(394), - [sym__emphasis_underscore] = STATE(394), - [sym__strong_emphasis_underscore] = STATE(394), - [aux_sym_insert_repeat1] = STATE(394), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3431), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(32), + [sym__text_base] = STATE(461), + [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(461), + [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(2949), + [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(380)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(115), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(115), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(115), - [aux_sym__inline_no_underscore] = STATE(115), - [sym__emphasis_star] = STATE(115), - [sym__strong_emphasis_star] = STATE(115), - [sym__emphasis_underscore] = STATE(115), - [sym__strong_emphasis_underscore] = STATE(115), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__last_token_punctuation] = ACTIONS(3433), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [STATE(361)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2951), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(362)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2953), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(363)] = { + [sym_backslash_escape] = STATE(472), + [sym_commonmark_attribute] = STATE(472), + [sym_code_span] = STATE(472), + [sym_latex_span] = STATE(472), + [sym_insert] = STATE(472), + [sym_delete] = STATE(472), + [sym_highlight] = STATE(472), + [sym_edit_comment] = STATE(472), + [sym_superscript] = STATE(472), + [sym_subscript] = STATE(472), + [sym_strikeout] = STATE(472), + [sym_quoted_span] = STATE(472), + [sym_inline_note] = STATE(472), + [sym_citation] = STATE(472), + [sym_shortcode_escaped] = STATE(472), + [sym_shortcode] = STATE(472), + [sym_note_reference] = STATE(472), + [sym__link_text] = STATE(611), + [sym__link_text_non_empty] = STATE(612), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(472), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(472), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(472), + [sym__inline_element] = 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_insert_repeat1] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(472), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(501), + [sym_numeric_character_reference] = ACTIONS(501), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(501), + [sym_email_autolink] = ACTIONS(501), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(541), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(2955), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(501), + [sym__strong_emphasis_open_star] = ACTIONS(569), + [sym__strong_emphasis_open_underscore] = ACTIONS(571), + }, + [STATE(364)] = { + [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(653), + [sym__link_text_non_empty] = STATE(658), + [sym_inline_link] = STATE(48), + [sym_image] = STATE(459), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(459), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__inline_base] = STATE(48), + [sym__text_base] = STATE(459), + [sym__inline_element] = STATE(48), + [sym__emphasis_star] = STATE(48), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(48), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym_insert_repeat1] = STATE(48), + [aux_sym__inline_base_repeat1] = STATE(459), + [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__single_quote_close] = ACTIONS(2957), + [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(365)] = { + [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(503), + [sym__link_text_non_empty] = STATE(519), + [sym_inline_link] = STATE(49), + [sym_image] = STATE(466), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(466), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__inline_base] = STATE(49), + [sym__text_base] = STATE(466), + [sym__inline_element] = STATE(49), + [sym__emphasis_star] = STATE(49), + [sym__strong_emphasis_star] = STATE(49), + [sym__emphasis_underscore] = STATE(49), + [sym__strong_emphasis_underscore] = STATE(49), + [aux_sym_insert_repeat1] = STATE(49), + [aux_sym__inline_base_repeat1] = STATE(466), + [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__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(2957), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(577), + [sym__strong_emphasis_open_star] = ACTIONS(643), + [sym__strong_emphasis_open_underscore] = ACTIONS(645), }, - [STATE(381)] = { + [STATE(366)] = { + [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(632), + [sym__link_text_non_empty] = STATE(633), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(453), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(453), + [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(453), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(649), + [sym_numeric_character_reference] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(649), + [sym_email_autolink] = ACTIONS(649), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(2959), + [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(649), + [sym__strong_emphasis_open_star] = ACTIONS(717), + [sym__strong_emphasis_open_underscore] = ACTIONS(719), + }, + [STATE(367)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -69704,94 +67843,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(51), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(51), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3435), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(2961), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(382)] = { + [STATE(368)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -69809,94 +67947,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(46), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(46), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(46), + [aux_sym__inline_no_star] = STATE(46), + [sym__emphasis_star] = STATE(46), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(46), + [sym__strong_emphasis_underscore] = STATE(46), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3437), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_close_star] = ACTIONS(2963), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(383)] = { + [STATE(369)] = { [sym_backslash_escape] = STATE(456), [sym_commonmark_attribute] = STATE(456), [sym_code_span] = STATE(456), @@ -69914,199 +68051,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(456), [sym_shortcode] = STATE(456), [sym_note_reference] = STATE(456), - [sym__link_text] = STATE(494), - [sym__link_text_non_empty] = STATE(495), - [sym_inline_link] = STATE(57), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(47), [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(456), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), - [sym__inline_base] = STATE(57), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(47), [sym__text_base] = STATE(456), - [sym__inline_element] = STATE(57), - [sym__emphasis_star] = STATE(57), - [sym__strong_emphasis_star] = STATE(57), - [sym__emphasis_underscore] = STATE(57), - [sym__strong_emphasis_underscore] = STATE(57), - [aux_sym_insert_repeat1] = STATE(57), + [sym__inline_element_no_underscore] = STATE(47), + [aux_sym__inline_no_underscore] = STATE(47), + [sym__emphasis_star] = STATE(47), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(47), + [sym__strong_emphasis_underscore] = STATE(47), [aux_sym__inline_base_repeat1] = STATE(456), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(761), - [sym_numeric_character_reference] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(761), - [sym_email_autolink] = ACTIONS(761), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(801), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3439), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(761), - [sym__strong_emphasis_open_star] = ACTIONS(829), - [sym__strong_emphasis_open_underscore] = ACTIONS(831), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), + [sym__strong_emphasis_close_underscore] = ACTIONS(2965), }, - [STATE(384)] = { - [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(515), - [sym__link_text_non_empty] = STATE(516), - [sym_inline_link] = STATE(65), - [sym_image] = STATE(459), - [sym__image_inline_link] = STATE(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), - [sym_hard_line_break] = STATE(459), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), - [sym__inline_base] = STATE(65), - [sym__text_base] = STATE(459), - [sym__inline_element] = STATE(65), - [sym__emphasis_star] = STATE(65), - [sym__strong_emphasis_star] = STATE(65), - [sym__emphasis_underscore] = STATE(65), - [sym__strong_emphasis_underscore] = STATE(65), - [aux_sym_insert_repeat1] = STATE(65), - [aux_sym__inline_base_repeat1] = STATE(459), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(873), - [sym__emphasis_open_underscore] = ACTIONS(875), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3441), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(835), - [sym__strong_emphasis_open_star] = ACTIONS(903), - [sym__strong_emphasis_open_underscore] = ACTIONS(905), + [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__link_text] = STATE(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(928), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(928), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(928), + [aux_sym__inline] = STATE(45), + [sym__emphasis_star] = STATE(928), + [sym__strong_emphasis_star] = STATE(928), + [sym__emphasis_underscore] = STATE(928), + [sym__strong_emphasis_underscore] = STATE(928), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2967), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), }, - [STATE(385)] = { + [STATE(371)] = { [sym_backslash_escape] = STATE(461), [sym_commonmark_attribute] = STATE(461), [sym_code_span] = STATE(461), @@ -70124,1249 +68259,3213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(461), [sym_shortcode] = STATE(461), [sym_note_reference] = STATE(461), - [sym__link_text] = STATE(538), - [sym__link_text_non_empty] = STATE(539), - [sym_inline_link] = STATE(66), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), [sym_image] = STATE(461), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(461), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), - [sym__inline_base] = STATE(66), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2969), + [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(372)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2971), + [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(373)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), + [sym__text_base] = STATE(461), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2973), + [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(374)] = { + [sym_backslash_escape] = STATE(461), + [sym_commonmark_attribute] = STATE(461), + [sym_code_span] = STATE(461), + [sym_latex_span] = STATE(461), + [sym_insert] = STATE(461), + [sym_delete] = STATE(461), + [sym_highlight] = STATE(461), + [sym_edit_comment] = STATE(461), + [sym_superscript] = STATE(461), + [sym_subscript] = STATE(461), + [sym_strikeout] = STATE(461), + [sym_quoted_span] = STATE(461), + [sym_inline_note] = STATE(461), + [sym_citation] = STATE(461), + [sym_shortcode_escaped] = STATE(461), + [sym_shortcode] = STATE(461), + [sym_note_reference] = STATE(461), + [sym__link_text] = STATE(536), + [sym__link_text_non_empty] = STATE(537), + [sym_inline_link] = STATE(52), + [sym_image] = STATE(461), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), + [sym_hard_line_break] = STATE(461), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), + [sym__inline_base] = STATE(52), [sym__text_base] = STATE(461), - [sym__inline_element] = STATE(66), + [sym__inline_element] = STATE(52), + [sym__emphasis_star] = STATE(52), + [sym__strong_emphasis_star] = STATE(52), + [sym__emphasis_underscore] = STATE(52), + [sym__strong_emphasis_underscore] = STATE(52), + [aux_sym_insert_repeat1] = STATE(52), + [aux_sym__inline_base_repeat1] = STATE(461), + [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(2975), + [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(375)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(379), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(379), + [sym__text_base] = STATE(458), + [sym__inline_element] = STATE(379), + [sym__emphasis_star] = STATE(379), + [sym__strong_emphasis_star] = STATE(379), + [sym__emphasis_underscore] = STATE(379), + [sym__strong_emphasis_underscore] = STATE(379), + [aux_sym_insert_repeat1] = STATE(379), + [aux_sym__inline_base_repeat1] = STATE(458), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2977), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(376)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(377)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__emphasis_close_star] = ACTIONS(2981), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(378)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__emphasis_close_underscore] = ACTIONS(2983), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(379)] = { + [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(517), + [sym__link_text_non_empty] = STATE(518), + [sym_inline_link] = STATE(53), + [sym_image] = STATE(458), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), + [sym_hard_line_break] = STATE(458), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), + [sym__inline_base] = STATE(53), + [sym__text_base] = STATE(458), + [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), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(79), + [sym_numeric_character_reference] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(79), + [sym_email_autolink] = ACTIONS(79), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(119), + [sym__emphasis_open_underscore] = ACTIONS(121), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(79), + [sym__strong_emphasis_open_star] = ACTIONS(149), + [sym__strong_emphasis_open_underscore] = ACTIONS(151), + }, + [STATE(380)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(65), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(65), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(65), + [aux_sym__inline_no_star] = STATE(65), + [sym__emphasis_star] = STATE(65), + [sym__strong_emphasis_star] = STATE(65), + [sym__emphasis_underscore] = STATE(65), + [sym__strong_emphasis_underscore] = STATE(65), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__last_token_punctuation] = ACTIONS(2987), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(381)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(66), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(66), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(66), + [aux_sym__inline_no_underscore] = 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_insert_repeat1] = STATE(66), - [aux_sym__inline_base_repeat1] = STATE(461), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(909), - [sym_numeric_character_reference] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(909), - [sym_email_autolink] = ACTIONS(909), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(947), - [sym__emphasis_open_underscore] = ACTIONS(949), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3441), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(909), - [sym__strong_emphasis_open_star] = ACTIONS(975), - [sym__strong_emphasis_open_underscore] = ACTIONS(977), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__last_token_punctuation] = ACTIONS(2989), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, - [STATE(386)] = { - [sym_backslash_escape] = STATE(463), - [sym_commonmark_attribute] = STATE(463), - [sym_code_span] = STATE(463), - [sym_latex_span] = STATE(463), - [sym_insert] = STATE(463), - [sym_delete] = STATE(463), - [sym_highlight] = STATE(463), - [sym_edit_comment] = STATE(463), - [sym_superscript] = STATE(463), - [sym_subscript] = STATE(463), - [sym_strikeout] = STATE(463), - [sym_quoted_span] = STATE(463), - [sym_inline_note] = STATE(463), - [sym_citation] = STATE(463), - [sym_shortcode_escaped] = STATE(463), - [sym_shortcode] = STATE(463), - [sym_note_reference] = STATE(463), - [sym__link_text] = STATE(560), - [sym__link_text_non_empty] = STATE(561), - [sym_inline_link] = STATE(68), - [sym_image] = STATE(463), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(463), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__inline_base] = STATE(68), - [sym__text_base] = STATE(463), - [sym__inline_element] = STATE(68), - [sym__emphasis_star] = STATE(68), - [sym__strong_emphasis_star] = STATE(68), - [sym__emphasis_underscore] = STATE(68), - [sym__strong_emphasis_underscore] = STATE(68), - [aux_sym_insert_repeat1] = STATE(68), - [aux_sym__inline_base_repeat1] = STATE(463), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(981), - [sym_numeric_character_reference] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(981), - [sym_email_autolink] = ACTIONS(981), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1021), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3443), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(981), - [sym__strong_emphasis_open_star] = ACTIONS(1049), - [sym__strong_emphasis_open_underscore] = ACTIONS(1051), + [STATE(382)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(95), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(95), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(95), + [aux_sym__inline_no_star] = STATE(95), + [sym__emphasis_star] = STATE(95), + [sym__strong_emphasis_star] = STATE(95), + [sym__emphasis_underscore] = STATE(95), + [sym__strong_emphasis_underscore] = STATE(95), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__last_token_punctuation] = ACTIONS(2991), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(383)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(96), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(96), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(96), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__last_token_punctuation] = ACTIONS(2993), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(384)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(125), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(125), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(125), + [aux_sym__inline_no_star] = STATE(125), + [sym__emphasis_star] = STATE(125), + [sym__strong_emphasis_star] = STATE(125), + [sym__emphasis_underscore] = STATE(125), + [sym__strong_emphasis_underscore] = STATE(125), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__last_token_punctuation] = ACTIONS(2995), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(385)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(126), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(126), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(126), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__last_token_punctuation] = ACTIONS(2997), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(386)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(154), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(154), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(154), + [aux_sym__inline_no_star] = STATE(154), + [sym__emphasis_star] = STATE(154), + [sym__strong_emphasis_star] = STATE(154), + [sym__emphasis_underscore] = STATE(154), + [sym__strong_emphasis_underscore] = STATE(154), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__last_token_punctuation] = ACTIONS(2999), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, [STATE(387)] = { - [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(579), - [sym__link_text_non_empty] = STATE(580), - [sym_inline_link] = STATE(70), - [sym_image] = STATE(465), - [sym__image_inline_link] = STATE(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(465), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__inline_base] = STATE(70), - [sym__text_base] = STATE(465), - [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(1053), - [sym_entity_reference] = ACTIONS(1055), - [sym_numeric_character_reference] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1055), - [sym_email_autolink] = ACTIONS(1055), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1095), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3445), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(1055), - [sym__strong_emphasis_open_star] = ACTIONS(1123), - [sym__strong_emphasis_open_underscore] = ACTIONS(1125), + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(155), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(155), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(155), + [aux_sym__inline_no_underscore] = STATE(155), + [sym__emphasis_star] = STATE(155), + [sym__strong_emphasis_star] = STATE(155), + [sym__emphasis_underscore] = STATE(155), + [sym__strong_emphasis_underscore] = STATE(155), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__last_token_punctuation] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, [STATE(388)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(63), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(63), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(63), - [aux_sym__inline_no_star] = STATE(63), - [sym__emphasis_star] = STATE(63), - [sym__strong_emphasis_star] = STATE(63), - [sym__emphasis_underscore] = STATE(63), - [sym__strong_emphasis_underscore] = STATE(63), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_close_star] = ACTIONS(3447), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(183), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(183), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(183), + [aux_sym__inline_no_star] = STATE(183), + [sym__emphasis_star] = STATE(183), + [sym__strong_emphasis_star] = STATE(183), + [sym__emphasis_underscore] = STATE(183), + [sym__strong_emphasis_underscore] = STATE(183), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__last_token_punctuation] = ACTIONS(3003), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, [STATE(389)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(64), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(64), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(64), - [aux_sym__inline_no_underscore] = STATE(64), - [sym__emphasis_star] = STATE(64), - [sym__strong_emphasis_star] = STATE(64), - [sym__emphasis_underscore] = STATE(64), - [sym__strong_emphasis_underscore] = STATE(64), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - [sym__strong_emphasis_close_underscore] = ACTIONS(3449), + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(184), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(184), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(184), + [aux_sym__inline_no_underscore] = STATE(184), + [sym__emphasis_star] = STATE(184), + [sym__strong_emphasis_star] = STATE(184), + [sym__emphasis_underscore] = STATE(184), + [sym__strong_emphasis_underscore] = STATE(184), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__last_token_punctuation] = ACTIONS(3005), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, [STATE(390)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(1202), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(1202), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(1202), - [aux_sym__inline] = STATE(62), - [sym__emphasis_star] = STATE(1202), - [sym__strong_emphasis_star] = STATE(1202), - [sym__emphasis_underscore] = STATE(1202), - [sym__strong_emphasis_underscore] = STATE(1202), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3451), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(212), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(212), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(212), + [aux_sym__inline_no_star] = STATE(212), + [sym__emphasis_star] = STATE(212), + [sym__strong_emphasis_star] = STATE(212), + [sym__emphasis_underscore] = STATE(212), + [sym__strong_emphasis_underscore] = STATE(212), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__last_token_punctuation] = ACTIONS(3007), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, [STATE(391)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3453), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(213), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(213), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(213), + [aux_sym__inline_no_underscore] = STATE(213), + [sym__emphasis_star] = STATE(213), + [sym__strong_emphasis_star] = STATE(213), + [sym__emphasis_underscore] = STATE(213), + [sym__strong_emphasis_underscore] = STATE(213), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__last_token_punctuation] = ACTIONS(3009), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, [STATE(392)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3455), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(242), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(242), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(242), + [aux_sym__inline_no_star] = STATE(242), + [sym__emphasis_star] = STATE(242), + [sym__strong_emphasis_star] = STATE(242), + [sym__emphasis_underscore] = STATE(242), + [sym__strong_emphasis_underscore] = STATE(242), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__last_token_punctuation] = ACTIONS(3011), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, [STATE(393)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3457), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(243), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(243), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(243), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__last_token_punctuation] = ACTIONS(3013), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, [STATE(394)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(73), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(73), - [sym__text_base] = STATE(473), - [sym__inline_element] = STATE(73), - [sym__emphasis_star] = STATE(73), - [sym__strong_emphasis_star] = STATE(73), - [sym__emphasis_underscore] = STATE(73), - [sym__strong_emphasis_underscore] = STATE(73), - [aux_sym_insert_repeat1] = STATE(73), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3459), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(271), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(271), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(271), + [aux_sym__inline_no_star] = STATE(271), + [sym__emphasis_star] = STATE(271), + [sym__strong_emphasis_star] = STATE(271), + [sym__emphasis_underscore] = STATE(271), + [sym__strong_emphasis_underscore] = STATE(271), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__last_token_punctuation] = ACTIONS(3015), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, [STATE(395)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(399), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(399), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(399), - [sym__emphasis_star] = STATE(399), - [sym__strong_emphasis_star] = STATE(399), - [sym__emphasis_underscore] = STATE(399), - [sym__strong_emphasis_underscore] = STATE(399), - [aux_sym_insert_repeat1] = STATE(399), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(272), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(272), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(272), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__last_token_punctuation] = ACTIONS(3017), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, [STATE(396)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3463), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(301), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(301), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(301), + [aux_sym__inline_no_star] = STATE(301), + [sym__emphasis_star] = STATE(301), + [sym__strong_emphasis_star] = STATE(301), + [sym__emphasis_underscore] = STATE(301), + [sym__strong_emphasis_underscore] = STATE(301), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__last_token_punctuation] = ACTIONS(3019), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, [STATE(397)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(302), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(302), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(302), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__last_token_punctuation] = ACTIONS(3021), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(398)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(331), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(331), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__last_token_punctuation] = ACTIONS(3023), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(399)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(332), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(332), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__last_token_punctuation] = ACTIONS(3025), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(400)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(361), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(361), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(361), + [aux_sym__inline_no_star] = 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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__last_token_punctuation] = ACTIONS(3027), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(401)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(362), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(362), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(362), + [aux_sym__inline_no_underscore] = STATE(362), + [sym__emphasis_star] = STATE(362), + [sym__strong_emphasis_star] = STATE(362), + [sym__emphasis_underscore] = STATE(362), + [sym__strong_emphasis_underscore] = STATE(362), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__last_token_punctuation] = ACTIONS(3029), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(402)] = { [sym_backslash_escape] = STATE(474), [sym_commonmark_attribute] = STATE(474), [sym_code_span] = STATE(474), @@ -71384,94 +71483,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(474), [sym_shortcode] = STATE(474), [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(54), + [sym__link_text] = STATE(659), + [sym__link_text_non_empty] = STATE(660), + [sym_inline_link] = STATE(160), [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(54), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__inline_base] = STATE(160), [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(54), - [aux_sym__inline_no_star] = STATE(54), - [sym__emphasis_star] = STATE(54), - [sym__strong_emphasis_star] = STATE(54), - [sym__emphasis_underscore] = STATE(54), - [sym__strong_emphasis_underscore] = STATE(54), + [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(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__emphasis_close_star] = ACTIONS(3465), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(723), + [sym_numeric_character_reference] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(723), + [sym_email_autolink] = ACTIONS(723), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(761), + [sym__emphasis_open_underscore] = ACTIONS(763), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(3031), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(723), + [sym__strong_emphasis_open_star] = ACTIONS(791), + [sym__strong_emphasis_open_underscore] = ACTIONS(793), }, - [STATE(398)] = { + [STATE(403)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -71489,304 +71587,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(56), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(161), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(56), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(161), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(56), - [aux_sym__inline_no_underscore] = STATE(56), - [sym__emphasis_star] = STATE(56), - [sym__strong_emphasis_star] = STATE(56), - [sym__emphasis_underscore] = STATE(56), - [sym__strong_emphasis_underscore] = STATE(56), + [sym__inline_element_no_star] = STATE(161), + [aux_sym__inline_no_star] = 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__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__emphasis_close_underscore] = ACTIONS(3467), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(399)] = { - [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__link_text] = STATE(630), - [sym__link_text_non_empty] = STATE(631), - [sym_inline_link] = STATE(75), - [sym_image] = STATE(471), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(471), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__inline_base] = STATE(75), - [sym__text_base] = STATE(471), - [sym__inline_element] = STATE(75), - [sym__emphasis_star] = STATE(75), - [sym__strong_emphasis_star] = STATE(75), - [sym__emphasis_underscore] = STATE(75), - [sym__strong_emphasis_underscore] = STATE(75), - [aux_sym_insert_repeat1] = STATE(75), - [aux_sym__inline_base_repeat1] = STATE(471), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3469), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(603), - [sym__emphasis_open_underscore] = ACTIONS(605), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(563), - [sym__strong_emphasis_open_star] = ACTIONS(633), - [sym__strong_emphasis_open_underscore] = ACTIONS(635), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(400)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(291), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(291), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(291), - [aux_sym__inline_no_star] = STATE(291), - [sym__emphasis_star] = STATE(291), - [sym__strong_emphasis_star] = STATE(291), - [sym__emphasis_underscore] = STATE(291), - [sym__strong_emphasis_underscore] = STATE(291), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__last_token_punctuation] = ACTIONS(3471), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [STATE(404)] = { + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(369), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(369), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(369), + [aux_sym__inline_no_underscore] = STATE(369), + [sym__emphasis_star] = STATE(369), + [sym__strong_emphasis_star] = STATE(369), + [sym__emphasis_underscore] = STATE(369), + [sym__strong_emphasis_underscore] = STATE(369), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), }, - [STATE(401)] = { + [STATE(405)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -71804,303 +71793,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(322), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(26), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(322), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(26), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(322), - [aux_sym__inline_no_underscore] = STATE(322), - [sym__emphasis_star] = STATE(322), - [sym__strong_emphasis_star] = STATE(322), - [sym__emphasis_underscore] = STATE(322), - [sym__strong_emphasis_underscore] = STATE(322), + [sym__inline_element_no_star] = STATE(26), + [aux_sym__inline_no_star] = 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__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__last_token_punctuation] = ACTIONS(3473), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(402)] = { - [sym_backslash_escape] = STATE(473), - [sym_commonmark_attribute] = STATE(473), - [sym_code_span] = STATE(473), - [sym_latex_span] = STATE(473), - [sym_insert] = STATE(473), - [sym_delete] = STATE(473), - [sym_highlight] = STATE(473), - [sym_edit_comment] = STATE(473), - [sym_superscript] = STATE(473), - [sym_subscript] = STATE(473), - [sym_strikeout] = STATE(473), - [sym_quoted_span] = STATE(473), - [sym_inline_note] = STATE(473), - [sym_citation] = STATE(473), - [sym_shortcode_escaped] = STATE(473), - [sym_shortcode] = STATE(473), - [sym_note_reference] = STATE(473), - [sym__link_text] = STATE(648), - [sym__link_text_non_empty] = STATE(649), - [sym_inline_link] = STATE(127), - [sym_image] = STATE(473), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(473), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__inline_base] = STATE(127), - [sym__text_base] = STATE(473), - [sym__inline_element] = 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_insert_repeat1] = STATE(127), - [aux_sym__inline_base_repeat1] = STATE(473), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(1281), - [sym_numeric_character_reference] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3475), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(1281), - [sym_email_autolink] = ACTIONS(1281), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(1321), - [sym__emphasis_open_underscore] = ACTIONS(1323), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(1281), - [sym__strong_emphasis_open_star] = ACTIONS(1349), - [sym__strong_emphasis_open_underscore] = ACTIONS(1351), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(403)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(218), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(218), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(218), - [aux_sym__inline_no_star] = 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__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [STATE(406)] = { + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(27), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(27), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(27), + [aux_sym__inline_no_underscore] = 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(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), }, - [STATE(404)] = { + [STATE(407)] = { [sym_backslash_escape] = STATE(469), [sym_commonmark_attribute] = STATE(469), [sym_code_span] = STATE(469), @@ -72118,234 +71999,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(469), [sym_shortcode] = STATE(469), [sym_note_reference] = STATE(469), - [sym__link_text] = STATE(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(43), + [sym__link_text] = STATE(598), + [sym__link_text_non_empty] = STATE(675), + [sym_inline_link] = STATE(826), [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), + [sym__image_inline_link] = STATE(1449), + [sym__image_description] = STATE(2655), + [sym__image_description_non_empty] = STATE(2655), [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(43), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1453), + [sym__inline_base] = STATE(826), [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(43), - [aux_sym__inline_no_underscore] = STATE(43), - [sym__emphasis_star] = STATE(43), - [sym__strong_emphasis_star] = STATE(43), - [sym__emphasis_underscore] = STATE(43), - [sym__strong_emphasis_underscore] = STATE(43), + [sym__inline_element] = STATE(826), + [aux_sym__inline] = STATE(20), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(826), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(826), [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - }, - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(55), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(55), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(55), - [aux_sym__inline_no_underscore] = STATE(55), - [sym__emphasis_star] = STATE(55), - [sym__strong_emphasis_star] = STATE(55), - [sym__emphasis_underscore] = STATE(55), - [sym__strong_emphasis_underscore] = STATE(55), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(406)] = { - [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(678), - [sym__link_text_non_empty] = STATE(562), - [sym_inline_link] = STATE(1543), - [sym_image] = STATE(458), - [sym__image_inline_link] = STATE(1434), - [sym__image_description] = STATE(2651), - [sym__image_description_non_empty] = STATE(2651), - [sym_hard_line_break] = STATE(458), - [sym__whitespace] = STATE(800), - [sym__word] = STATE(800), - [sym__soft_line_break] = STATE(1530), - [sym__inline_base] = STATE(1543), - [sym__text_base] = STATE(458), - [sym__inline_element] = STATE(1543), - [aux_sym__inline] = STATE(36), - [sym__emphasis_star] = STATE(1543), - [sym__strong_emphasis_star] = STATE(1543), - [sym__emphasis_underscore] = STATE(1543), - [sym__strong_emphasis_underscore] = STATE(1543), - [aux_sym__inline_base_repeat1] = STATE(458), [sym__backslash_escape] = ACTIONS(3), [sym_entity_reference] = ACTIONS(5), [sym_numeric_character_reference] = ACTIONS(5), @@ -72358,7 +72031,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(9), [anon_sym_AMP] = ACTIONS(7), [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(9), [anon_sym_PLUS] = ACTIONS(9), [anon_sym_COMMA] = ACTIONS(9), [anon_sym_DASH] = ACTIONS(7), @@ -72401,434 +72073,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__single_quote_open] = ACTIONS(53), [sym__double_quote_open] = ACTIONS(55), [sym__superscript_open] = ACTIONS(57), - [sym__subscript_open] = ACTIONS(59), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(61), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(63), - [sym__cite_author_in_text] = ACTIONS(65), - [sym__cite_suppress_author] = ACTIONS(67), - [sym__shortcode_open_escaped] = ACTIONS(69), - [sym__shortcode_open] = ACTIONS(71), - [sym__unclosed_span] = ACTIONS(5), - [sym__strong_emphasis_open_star] = ACTIONS(73), - [sym__strong_emphasis_open_underscore] = ACTIONS(75), - }, - [STATE(407)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(53), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(53), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(53), - [aux_sym__inline_no_star] = 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__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), - }, - [STATE(408)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(94), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(94), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(94), - [aux_sym__inline_no_star] = STATE(94), - [sym__emphasis_star] = STATE(94), - [sym__strong_emphasis_star] = STATE(94), - [sym__emphasis_underscore] = STATE(94), - [sym__strong_emphasis_underscore] = STATE(94), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), + [sym__subscript_open] = ACTIONS(59), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(61), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(63), + [sym__cite_author_in_text] = ACTIONS(65), + [sym__cite_suppress_author] = ACTIONS(67), + [sym__shortcode_open_escaped] = ACTIONS(69), + [sym__shortcode_open] = ACTIONS(71), + [sym__unclosed_span] = ACTIONS(5), + [sym__strong_emphasis_open_star] = ACTIONS(73), + [sym__strong_emphasis_open_underscore] = ACTIONS(75), + }, + [STATE(408)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(37), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(37), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(37), + [aux_sym__inline_no_star] = 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__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, [STATE(409)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(95), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(95), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(95), - [aux_sym__inline_no_underscore] = STATE(95), - [sym__emphasis_star] = STATE(95), - [sym__strong_emphasis_star] = STATE(95), - [sym__emphasis_underscore] = STATE(95), - [sym__strong_emphasis_underscore] = STATE(95), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(39), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, [STATE(410)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(103), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(103), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(103), - [aux_sym__inline_no_star] = STATE(103), - [sym__emphasis_star] = STATE(103), - [sym__strong_emphasis_star] = STATE(103), - [sym__emphasis_underscore] = STATE(103), - [sym__strong_emphasis_underscore] = STATE(103), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), - }, - [STATE(411)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -72846,405 +72308,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(34), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(72), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(34), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(72), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(34), - [aux_sym__inline_no_underscore] = STATE(34), - [sym__emphasis_star] = STATE(34), - [sym__strong_emphasis_star] = STATE(34), - [sym__emphasis_underscore] = STATE(34), - [sym__strong_emphasis_underscore] = STATE(34), + [sym__inline_element_no_star] = STATE(72), + [aux_sym__inline_no_star] = STATE(72), + [sym__emphasis_star] = STATE(72), + [sym__strong_emphasis_star] = STATE(72), + [sym__emphasis_underscore] = STATE(72), + [sym__strong_emphasis_underscore] = STATE(72), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), + }, + [STATE(411)] = { + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(73), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(73), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(73), + [aux_sym__inline_no_underscore] = STATE(73), + [sym__emphasis_star] = STATE(73), + [sym__strong_emphasis_star] = STATE(73), + [sym__emphasis_underscore] = STATE(73), + [sym__strong_emphasis_underscore] = STATE(73), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), }, [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__link_text] = STATE(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(121), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(121), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(121), - [aux_sym__inline_no_star] = STATE(121), - [sym__emphasis_star] = STATE(121), - [sym__strong_emphasis_star] = STATE(121), - [sym__emphasis_underscore] = STATE(121), - [sym__strong_emphasis_underscore] = STATE(121), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(81), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(81), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(81), + [aux_sym__inline_no_star] = STATE(81), + [sym__emphasis_star] = STATE(81), + [sym__strong_emphasis_star] = STATE(81), + [sym__emphasis_underscore] = STATE(81), + [sym__strong_emphasis_underscore] = STATE(81), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, [STATE(413)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(122), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(122), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(122), - [aux_sym__inline_no_underscore] = STATE(122), - [sym__emphasis_star] = STATE(122), - [sym__strong_emphasis_star] = STATE(122), - [sym__emphasis_underscore] = STATE(122), - [sym__strong_emphasis_underscore] = STATE(122), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(82), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(82), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(82), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, [STATE(414)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(130), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(130), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(130), - [aux_sym__inline_no_star] = 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__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), - }, - [STATE(415)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -73262,405 +72720,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(131), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(102), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(131), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(102), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(131), - [aux_sym__inline_no_underscore] = STATE(131), - [sym__emphasis_star] = STATE(131), - [sym__strong_emphasis_star] = STATE(131), - [sym__emphasis_underscore] = STATE(131), - [sym__strong_emphasis_underscore] = STATE(131), + [sym__inline_element_no_star] = STATE(102), + [aux_sym__inline_no_star] = STATE(102), + [sym__emphasis_star] = STATE(102), + [sym__strong_emphasis_star] = STATE(102), + [sym__emphasis_underscore] = STATE(102), + [sym__strong_emphasis_underscore] = STATE(102), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), + }, + [STATE(415)] = { + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(103), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(103), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(103), + [aux_sym__inline_no_underscore] = STATE(103), + [sym__emphasis_star] = STATE(103), + [sym__strong_emphasis_star] = STATE(103), + [sym__emphasis_underscore] = STATE(103), + [sym__strong_emphasis_underscore] = STATE(103), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), }, [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__link_text] = STATE(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(151), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(151), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(151), - [aux_sym__inline_no_star] = STATE(151), - [sym__emphasis_star] = STATE(151), - [sym__strong_emphasis_star] = STATE(151), - [sym__emphasis_underscore] = STATE(151), - [sym__strong_emphasis_underscore] = STATE(151), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(111), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(111), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(111), + [aux_sym__inline_no_star] = STATE(111), + [sym__emphasis_star] = STATE(111), + [sym__strong_emphasis_star] = STATE(111), + [sym__emphasis_underscore] = STATE(111), + [sym__strong_emphasis_underscore] = STATE(111), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, [STATE(417)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(152), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(152), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(152), - [aux_sym__inline_no_underscore] = STATE(152), - [sym__emphasis_star] = STATE(152), - [sym__strong_emphasis_star] = STATE(152), - [sym__emphasis_underscore] = STATE(152), - [sym__strong_emphasis_underscore] = STATE(152), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(112), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(112), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(112), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, [STATE(418)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(160), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(160), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(160), - [aux_sym__inline_no_star] = 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__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), - }, - [STATE(419)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -73678,405 +73132,710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(161), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(132), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(161), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(132), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(161), - [aux_sym__inline_no_underscore] = STATE(161), - [sym__emphasis_star] = STATE(161), - [sym__strong_emphasis_star] = STATE(161), - [sym__emphasis_underscore] = STATE(161), - [sym__strong_emphasis_underscore] = STATE(161), + [sym__inline_element_no_star] = STATE(132), + [aux_sym__inline_no_star] = STATE(132), + [sym__emphasis_star] = STATE(132), + [sym__strong_emphasis_star] = STATE(132), + [sym__emphasis_underscore] = STATE(132), + [sym__strong_emphasis_underscore] = STATE(132), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [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__link_text] = STATE(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(180), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(180), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(180), - [aux_sym__inline_no_star] = STATE(180), - [sym__emphasis_star] = STATE(180), - [sym__strong_emphasis_star] = STATE(180), - [sym__emphasis_underscore] = STATE(180), - [sym__strong_emphasis_underscore] = STATE(180), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), + [STATE(419)] = { + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(133), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(133), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(133), + [aux_sym__inline_no_underscore] = STATE(133), + [sym__emphasis_star] = STATE(133), + [sym__strong_emphasis_star] = STATE(133), + [sym__emphasis_underscore] = STATE(133), + [sym__strong_emphasis_underscore] = STATE(133), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), }, - [STATE(421)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(181), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(181), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(181), - [aux_sym__inline_no_underscore] = STATE(181), - [sym__emphasis_star] = STATE(181), - [sym__strong_emphasis_star] = STATE(181), - [sym__emphasis_underscore] = STATE(181), - [sym__strong_emphasis_underscore] = STATE(181), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), + [STATE(420)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(141), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(141), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(141), + [aux_sym__inline_no_star] = STATE(141), + [sym__emphasis_star] = STATE(141), + [sym__strong_emphasis_star] = STATE(141), + [sym__emphasis_underscore] = STATE(141), + [sym__strong_emphasis_underscore] = STATE(141), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(421)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(142), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(142), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(142), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, [STATE(422)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(189), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(189), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(189), - [aux_sym__inline_no_star] = 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__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(377), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(377), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(377), + [aux_sym__inline_no_star] = 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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, [STATE(423)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(170), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(170), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(170), + [aux_sym__inline_no_star] = STATE(170), + [sym__emphasis_star] = STATE(170), + [sym__strong_emphasis_star] = STATE(170), + [sym__emphasis_underscore] = STATE(170), + [sym__strong_emphasis_underscore] = STATE(170), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(424)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(171), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(171), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(171), + [aux_sym__inline_no_underscore] = STATE(171), + [sym__emphasis_star] = STATE(171), + [sym__strong_emphasis_star] = STATE(171), + [sym__emphasis_underscore] = STATE(171), + [sym__strong_emphasis_underscore] = STATE(171), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(425)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -74094,301 +73853,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), [sym_inline_link] = STATE(190), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), [sym__inline_base] = STATE(190), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(190), - [aux_sym__inline_no_underscore] = STATE(190), + [sym__inline_element_no_star] = STATE(190), + [aux_sym__inline_no_star] = 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__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [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__link_text] = STATE(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(209), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(209), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(209), - [aux_sym__inline_no_star] = STATE(209), - [sym__emphasis_star] = STATE(209), - [sym__strong_emphasis_star] = STATE(209), - [sym__emphasis_underscore] = STATE(209), - [sym__strong_emphasis_underscore] = STATE(209), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), + [STATE(426)] = { + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(191), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(191), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(191), + [aux_sym__inline_no_underscore] = STATE(191), + [sym__emphasis_star] = STATE(191), + [sym__strong_emphasis_star] = STATE(191), + [sym__emphasis_underscore] = STATE(191), + [sym__strong_emphasis_underscore] = STATE(191), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), }, - [STATE(425)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(210), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(210), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(210), - [aux_sym__inline_no_underscore] = STATE(210), - [sym__emphasis_star] = STATE(210), - [sym__strong_emphasis_star] = STATE(210), - [sym__emphasis_underscore] = STATE(210), - [sym__strong_emphasis_underscore] = STATE(210), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), + [STATE(427)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(199), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(199), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(199), + [aux_sym__inline_no_star] = STATE(199), + [sym__emphasis_star] = STATE(199), + [sym__strong_emphasis_star] = STATE(199), + [sym__emphasis_underscore] = STATE(199), + [sym__strong_emphasis_underscore] = STATE(199), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, - [STATE(426)] = { + [STATE(428)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(200), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(200), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(200), + [aux_sym__inline_no_underscore] = STATE(200), + [sym__emphasis_star] = STATE(200), + [sym__strong_emphasis_star] = STATE(200), + [sym__emphasis_underscore] = STATE(200), + [sym__strong_emphasis_underscore] = STATE(200), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(429)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -74406,509 +74265,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(398), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(219), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(398), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(219), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(398), - [aux_sym__inline_no_underscore] = STATE(398), - [sym__emphasis_star] = STATE(398), - [sym__strong_emphasis_star] = STATE(398), - [sym__emphasis_underscore] = STATE(398), - [sym__strong_emphasis_underscore] = STATE(398), + [sym__inline_element_no_star] = STATE(219), + [aux_sym__inline_no_star] = 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__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(427)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(42), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(42), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(42), - [aux_sym__inline_no_star] = 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(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [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__link_text] = STATE(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(239), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(239), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(239), - [aux_sym__inline_no_star] = STATE(239), - [sym__emphasis_star] = STATE(239), - [sym__strong_emphasis_star] = STATE(239), - [sym__emphasis_underscore] = STATE(239), - [sym__strong_emphasis_underscore] = STATE(239), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(429)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(240), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(240), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(240), - [aux_sym__inline_no_underscore] = STATE(240), - [sym__emphasis_star] = STATE(240), - [sym__strong_emphasis_star] = STATE(240), - [sym__emphasis_underscore] = STATE(240), - [sym__strong_emphasis_underscore] = STATE(240), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, [STATE(430)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(248), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(248), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(248), - [aux_sym__inline_no_star] = 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__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(220), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(220), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(220), + [aux_sym__inline_no_underscore] = STATE(220), + [sym__emphasis_star] = STATE(220), + [sym__strong_emphasis_star] = STATE(220), + [sym__emphasis_underscore] = STATE(220), + [sym__strong_emphasis_underscore] = STATE(220), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), }, [STATE(431)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(228), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(228), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(228), + [aux_sym__inline_no_star] = STATE(228), + [sym__emphasis_star] = STATE(228), + [sym__strong_emphasis_star] = STATE(228), + [sym__emphasis_underscore] = STATE(228), + [sym__strong_emphasis_underscore] = STATE(228), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(432)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(229), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(229), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(229), + [aux_sym__inline_no_underscore] = STATE(229), + [sym__emphasis_star] = STATE(229), + [sym__strong_emphasis_star] = STATE(229), + [sym__emphasis_underscore] = STATE(229), + [sym__strong_emphasis_underscore] = STATE(229), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(433)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -74926,405 +74677,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), [sym_inline_link] = STATE(249), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), [sym__inline_base] = STATE(249), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(249), - [aux_sym__inline_no_underscore] = STATE(249), + [sym__inline_element_no_star] = STATE(249), + [aux_sym__inline_no_star] = STATE(249), [sym__emphasis_star] = STATE(249), [sym__strong_emphasis_star] = STATE(249), - [sym__emphasis_underscore] = STATE(249), - [sym__strong_emphasis_underscore] = STATE(249), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [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__link_text] = STATE(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(269), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(269), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(269), - [aux_sym__inline_no_star] = STATE(269), - [sym__emphasis_star] = STATE(269), - [sym__strong_emphasis_star] = STATE(269), - [sym__emphasis_underscore] = STATE(269), - [sym__strong_emphasis_underscore] = STATE(269), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(433)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(270), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(270), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(270), - [aux_sym__inline_no_underscore] = STATE(270), - [sym__emphasis_star] = STATE(270), - [sym__strong_emphasis_star] = STATE(270), - [sym__emphasis_underscore] = STATE(270), - [sym__strong_emphasis_underscore] = STATE(270), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - }, - [STATE(434)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(278), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(278), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(278), - [aux_sym__inline_no_star] = STATE(278), - [sym__emphasis_star] = STATE(278), - [sym__strong_emphasis_star] = STATE(278), - [sym__emphasis_underscore] = STATE(278), - [sym__strong_emphasis_underscore] = STATE(278), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__emphasis_underscore] = STATE(249), + [sym__strong_emphasis_underscore] = STATE(249), + [aux_sym__inline_base_repeat1] = STATE(454), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), + }, + [STATE(434)] = { + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(250), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(250), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(250), + [aux_sym__inline_no_underscore] = STATE(250), + [sym__emphasis_star] = STATE(250), + [sym__strong_emphasis_star] = STATE(250), + [sym__emphasis_underscore] = STATE(250), + [sym__strong_emphasis_underscore] = STATE(250), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), }, [STATE(435)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(258), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(258), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(258), + [aux_sym__inline_no_star] = STATE(258), + [sym__emphasis_star] = STATE(258), + [sym__strong_emphasis_star] = STATE(258), + [sym__emphasis_underscore] = STATE(258), + [sym__strong_emphasis_underscore] = STATE(258), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(436)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(259), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(259), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(259), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(437)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -75342,405 +75089,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(279), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), + [sym_inline_link] = STATE(278), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(279), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), + [sym__inline_base] = STATE(278), [sym__text_base] = STATE(454), + [sym__inline_element_no_star] = STATE(278), + [aux_sym__inline_no_star] = STATE(278), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(278), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(278), + [aux_sym__inline_base_repeat1] = STATE(454), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), + }, + [STATE(438)] = { + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(279), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(279), + [sym__text_base] = STATE(456), [sym__inline_element_no_underscore] = STATE(279), [aux_sym__inline_no_underscore] = STATE(279), [sym__emphasis_star] = STATE(279), [sym__strong_emphasis_star] = STATE(279), [sym__emphasis_underscore] = STATE(279), [sym__strong_emphasis_underscore] = STATE(279), - [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [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__link_text] = STATE(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(298), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(298), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(298), - [aux_sym__inline_no_star] = STATE(298), - [sym__emphasis_star] = STATE(298), - [sym__strong_emphasis_star] = STATE(298), - [sym__emphasis_underscore] = STATE(298), - [sym__strong_emphasis_underscore] = STATE(298), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), }, - [STATE(437)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(299), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(299), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(299), - [aux_sym__inline_no_underscore] = STATE(299), - [sym__emphasis_star] = STATE(299), - [sym__strong_emphasis_star] = STATE(299), - [sym__emphasis_underscore] = STATE(299), - [sym__strong_emphasis_underscore] = STATE(299), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), + [STATE(439)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(287), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(287), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(287), + [aux_sym__inline_no_star] = STATE(287), + [sym__emphasis_star] = STATE(287), + [sym__strong_emphasis_star] = STATE(287), + [sym__emphasis_underscore] = STATE(287), + [sym__strong_emphasis_underscore] = STATE(287), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, - [STATE(438)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(307), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(307), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(307), - [aux_sym__inline_no_star] = 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__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [STATE(440)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(288), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(288), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(288), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), }, - [STATE(439)] = { + [STATE(441)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -75758,405 +75501,504 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), [sym_inline_link] = STATE(308), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), [sym__inline_base] = STATE(308), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(308), - [aux_sym__inline_no_underscore] = STATE(308), + [sym__inline_element_no_star] = STATE(308), + [aux_sym__inline_no_star] = STATE(308), [sym__emphasis_star] = STATE(308), [sym__strong_emphasis_star] = STATE(308), [sym__emphasis_underscore] = STATE(308), [sym__strong_emphasis_underscore] = STATE(308), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [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__link_text] = STATE(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(328), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(328), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(328), - [aux_sym__inline_no_star] = STATE(328), - [sym__emphasis_star] = STATE(328), - [sym__strong_emphasis_star] = STATE(328), - [sym__emphasis_underscore] = STATE(328), - [sym__strong_emphasis_underscore] = STATE(328), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(441)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(329), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(329), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(329), - [aux_sym__inline_no_underscore] = STATE(329), - [sym__emphasis_star] = STATE(329), - [sym__strong_emphasis_star] = STATE(329), - [sym__emphasis_underscore] = STATE(329), - [sym__strong_emphasis_underscore] = STATE(329), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, [STATE(442)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(337), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(337), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(337), - [aux_sym__inline_no_star] = STATE(337), - [sym__emphasis_star] = STATE(337), - [sym__strong_emphasis_star] = STATE(337), - [sym__emphasis_underscore] = STATE(337), - [sym__strong_emphasis_underscore] = STATE(337), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(309), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(309), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(309), + [aux_sym__inline_no_underscore] = STATE(309), + [sym__emphasis_star] = STATE(309), + [sym__strong_emphasis_star] = STATE(309), + [sym__emphasis_underscore] = STATE(309), + [sym__strong_emphasis_underscore] = STATE(309), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), }, [STATE(443)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(317), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(317), + [sym__text_base] = STATE(464), + [sym__inline_element_no_star] = STATE(317), + [aux_sym__inline_no_star] = STATE(317), + [sym__emphasis_star] = STATE(317), + [sym__strong_emphasis_star] = STATE(317), + [sym__emphasis_underscore] = STATE(317), + [sym__strong_emphasis_underscore] = STATE(317), + [aux_sym__inline_base_repeat1] = STATE(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), + }, + [STATE(444)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(318), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(318), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(318), + [aux_sym__inline_no_underscore] = 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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(445)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(378), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(378), + [sym__text_base] = STATE(470), + [sym__inline_element_no_underscore] = STATE(378), + [aux_sym__inline_no_underscore] = STATE(378), + [sym__emphasis_star] = STATE(378), + [sym__strong_emphasis_star] = STATE(378), + [sym__emphasis_underscore] = STATE(378), + [sym__strong_emphasis_underscore] = STATE(378), + [aux_sym__inline_base_repeat1] = STATE(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(446)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -76174,405 +76016,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), [sym_inline_link] = STATE(338), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), [sym__inline_base] = STATE(338), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(338), - [aux_sym__inline_no_underscore] = STATE(338), + [sym__inline_element_no_star] = STATE(338), + [aux_sym__inline_no_star] = STATE(338), [sym__emphasis_star] = STATE(338), [sym__strong_emphasis_star] = STATE(338), [sym__emphasis_underscore] = STATE(338), [sym__strong_emphasis_underscore] = STATE(338), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(444)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(358), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(358), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(358), - [aux_sym__inline_no_star] = STATE(358), - [sym__emphasis_star] = STATE(358), - [sym__strong_emphasis_star] = STATE(358), - [sym__emphasis_underscore] = STATE(358), - [sym__strong_emphasis_underscore] = STATE(358), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, - [STATE(445)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(359), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(359), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(359), - [aux_sym__inline_no_underscore] = STATE(359), - [sym__emphasis_star] = STATE(359), - [sym__strong_emphasis_star] = STATE(359), - [sym__emphasis_underscore] = STATE(359), - [sym__strong_emphasis_underscore] = STATE(359), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), + [STATE(447)] = { + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(339), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(339), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(339), + [aux_sym__inline_no_underscore] = STATE(339), + [sym__emphasis_star] = STATE(339), + [sym__strong_emphasis_star] = STATE(339), + [sym__emphasis_underscore] = STATE(339), + [sym__strong_emphasis_underscore] = STATE(339), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), }, - [STATE(446)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(367), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(367), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(367), - [aux_sym__inline_no_star] = STATE(367), - [sym__emphasis_star] = STATE(367), - [sym__strong_emphasis_star] = STATE(367), - [sym__emphasis_underscore] = STATE(367), - [sym__strong_emphasis_underscore] = STATE(367), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [STATE(448)] = { + [sym_backslash_escape] = STATE(464), + [sym_commonmark_attribute] = STATE(464), + [sym_code_span] = STATE(464), + [sym_latex_span] = STATE(464), + [sym_insert] = STATE(464), + [sym_delete] = STATE(464), + [sym_highlight] = STATE(464), + [sym_edit_comment] = STATE(464), + [sym_superscript] = STATE(464), + [sym_subscript] = STATE(464), + [sym_strikeout] = STATE(464), + [sym_quoted_span] = STATE(464), + [sym_inline_note] = STATE(464), + [sym_citation] = STATE(464), + [sym_shortcode_escaped] = STATE(464), + [sym_shortcode] = STATE(464), + [sym_note_reference] = STATE(464), + [sym__link_text] = STATE(569), + [sym__link_text_non_empty] = STATE(570), + [sym_inline_link] = STATE(347), + [sym_image] = STATE(464), + [sym__image_inline_link] = STATE(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(464), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__inline_base] = STATE(347), + [sym__text_base] = STATE(464), + [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(464), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(423), + [sym_numeric_character_reference] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(423), + [sym_email_autolink] = ACTIONS(423), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(463), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(423), + [sym__strong_emphasis_open_star] = ACTIONS(491), + [sym__strong_emphasis_open_underscore] = ACTIONS(493), }, - [STATE(447)] = { + [STATE(449)] = { + [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(591), + [sym__link_text_non_empty] = STATE(592), + [sym_inline_link] = STATE(348), + [sym_image] = STATE(470), + [sym__image_inline_link] = STATE(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(470), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__inline_base] = STATE(348), + [sym__text_base] = STATE(470), + [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(470), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(347), + [sym_numeric_character_reference] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(347), + [sym_email_autolink] = ACTIONS(347), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(385), + [sym__emphasis_open_underscore] = ACTIONS(387), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(347), + [sym__strong_emphasis_open_star] = ACTIONS(415), + [sym__strong_emphasis_open_underscore] = ACTIONS(417), + }, + [STATE(450)] = { [sym_backslash_escape] = STATE(454), [sym_commonmark_attribute] = STATE(454), [sym_code_span] = STATE(454), @@ -76590,507 +76428,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_escaped] = STATE(454), [sym_shortcode] = STATE(454), [sym_note_reference] = STATE(454), - [sym__link_text] = STATE(634), - [sym__link_text_non_empty] = STATE(650), + [sym__link_text] = STATE(481), + [sym__link_text_non_empty] = STATE(482), [sym_inline_link] = STATE(368), [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), [sym__inline_base] = STATE(368), [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(368), - [aux_sym__inline_no_underscore] = STATE(368), + [sym__inline_element_no_star] = STATE(368), + [aux_sym__inline_no_star] = STATE(368), [sym__emphasis_star] = STATE(368), [sym__strong_emphasis_star] = STATE(368), [sym__emphasis_underscore] = STATE(368), [sym__strong_emphasis_underscore] = STATE(368), [aux_sym__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), - }, - [STATE(448)] = { - [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(596), - [sym__link_text_non_empty] = STATE(597), - [sym_inline_link] = STATE(388), - [sym_image] = STATE(467), - [sym__image_inline_link] = STATE(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(467), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__inline_base] = STATE(388), - [sym__text_base] = STATE(467), - [sym__inline_element_no_star] = STATE(388), - [aux_sym__inline_no_star] = STATE(388), - [sym__emphasis_star] = STATE(388), - [sym__strong_emphasis_star] = STATE(388), - [sym__emphasis_underscore] = STATE(388), - [sym__strong_emphasis_underscore] = STATE(388), - [aux_sym__inline_base_repeat1] = STATE(467), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(1129), - [sym_numeric_character_reference] = ACTIONS(1129), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(1129), - [sym_email_autolink] = ACTIONS(1129), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(1167), - [sym__emphasis_open_underscore] = ACTIONS(1169), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(1129), - [sym__strong_emphasis_open_star] = ACTIONS(1195), - [sym__strong_emphasis_open_underscore] = ACTIONS(1199), - }, - [STATE(449)] = { - [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(613), - [sym__link_text_non_empty] = STATE(614), - [sym_inline_link] = STATE(389), - [sym_image] = STATE(469), - [sym__image_inline_link] = STATE(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(469), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__inline_base] = STATE(389), - [sym__text_base] = STATE(469), - [sym__inline_element_no_underscore] = STATE(389), - [aux_sym__inline_no_underscore] = STATE(389), - [sym__emphasis_star] = STATE(389), - [sym__strong_emphasis_star] = STATE(389), - [sym__emphasis_underscore] = STATE(389), - [sym__strong_emphasis_underscore] = STATE(389), - [aux_sym__inline_base_repeat1] = STATE(469), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1203), - [sym_numeric_character_reference] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(1203), - [sym_email_autolink] = ACTIONS(1203), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(1241), - [sym__emphasis_open_underscore] = ACTIONS(1243), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(1203), - [sym__strong_emphasis_open_star] = ACTIONS(1269), - [sym__strong_emphasis_open_underscore] = ACTIONS(1271), - }, - [STATE(450)] = { - [sym_backslash_escape] = STATE(474), - [sym_commonmark_attribute] = STATE(474), - [sym_code_span] = STATE(474), - [sym_latex_span] = STATE(474), - [sym_insert] = STATE(474), - [sym_delete] = STATE(474), - [sym_highlight] = STATE(474), - [sym_edit_comment] = STATE(474), - [sym_superscript] = STATE(474), - [sym_subscript] = STATE(474), - [sym_strikeout] = STATE(474), - [sym_quoted_span] = STATE(474), - [sym_inline_note] = STATE(474), - [sym_citation] = STATE(474), - [sym_shortcode_escaped] = STATE(474), - [sym_shortcode] = STATE(474), - [sym_note_reference] = STATE(474), - [sym__link_text] = STATE(668), - [sym__link_text_non_empty] = STATE(669), - [sym_inline_link] = STATE(397), - [sym_image] = STATE(474), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(474), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__inline_base] = STATE(397), - [sym__text_base] = STATE(474), - [sym__inline_element_no_star] = STATE(397), - [aux_sym__inline_no_star] = STATE(397), - [sym__emphasis_star] = STATE(397), - [sym__strong_emphasis_star] = STATE(397), - [sym__emphasis_underscore] = STATE(397), - [sym__strong_emphasis_underscore] = STATE(397), - [aux_sym__inline_base_repeat1] = STATE(474), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(1475), - [sym_numeric_character_reference] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(1475), - [sym_email_autolink] = ACTIONS(1475), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(1513), - [sym__emphasis_open_underscore] = ACTIONS(1515), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(1475), - [sym__strong_emphasis_open_star] = ACTIONS(1543), - [sym__strong_emphasis_open_underscore] = ACTIONS(1545), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(797), + [sym_numeric_character_reference] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(797), + [sym_email_autolink] = ACTIONS(797), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(835), + [sym__emphasis_open_underscore] = ACTIONS(837), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(797), + [sym__strong_emphasis_open_star] = ACTIONS(863), + [sym__strong_emphasis_open_underscore] = ACTIONS(867), }, [STATE(451)] = { - [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(634), - [sym__link_text_non_empty] = STATE(650), - [sym_inline_link] = STATE(219), - [sym_image] = STATE(454), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), - [sym_hard_line_break] = STATE(454), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), - [sym__inline_base] = STATE(219), - [sym__text_base] = STATE(454), - [sym__inline_element_no_underscore] = STATE(219), - [aux_sym__inline_no_underscore] = 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__inline_base_repeat1] = STATE(454), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(683), - [sym_numeric_character_reference] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(683), - [sym_email_autolink] = ACTIONS(683), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(721), - [sym__emphasis_open_underscore] = ACTIONS(723), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(683), - [sym__strong_emphasis_open_star] = ACTIONS(751), - [sym__strong_emphasis_open_underscore] = ACTIONS(753), + [sym_backslash_escape] = STATE(456), + [sym_commonmark_attribute] = STATE(456), + [sym_code_span] = STATE(456), + [sym_latex_span] = STATE(456), + [sym_insert] = STATE(456), + [sym_delete] = STATE(456), + [sym_highlight] = STATE(456), + [sym_edit_comment] = STATE(456), + [sym_superscript] = STATE(456), + [sym_subscript] = STATE(456), + [sym_strikeout] = STATE(456), + [sym_quoted_span] = STATE(456), + [sym_inline_note] = STATE(456), + [sym_citation] = STATE(456), + [sym_shortcode_escaped] = STATE(456), + [sym_shortcode] = STATE(456), + [sym_note_reference] = STATE(456), + [sym__link_text] = STATE(499), + [sym__link_text_non_empty] = STATE(500), + [sym_inline_link] = STATE(162), + [sym_image] = STATE(456), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), + [sym_hard_line_break] = STATE(456), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), + [sym__inline_base] = STATE(162), + [sym__text_base] = STATE(456), + [sym__inline_element_no_underscore] = STATE(162), + [aux_sym__inline_no_underscore] = STATE(162), + [sym__emphasis_star] = STATE(162), + [sym__strong_emphasis_star] = STATE(162), + [sym__emphasis_underscore] = STATE(162), + [sym__strong_emphasis_underscore] = STATE(162), + [aux_sym__inline_base_repeat1] = STATE(456), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(871), + [sym_numeric_character_reference] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(871), + [sym_email_autolink] = ACTIONS(871), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(909), + [sym__emphasis_open_underscore] = ACTIONS(911), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(871), + [sym__strong_emphasis_open_star] = ACTIONS(937), + [sym__strong_emphasis_open_underscore] = ACTIONS(939), }, [STATE(452)] = { [sym_backslash_escape] = STATE(452), @@ -77111,176 +76635,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(452), [sym_note_reference] = STATE(452), [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), [sym__text_base] = STATE(452), [aux_sym__inline_base_repeat1] = STATE(452), - [sym__backslash_escape] = ACTIONS(3477), - [sym_entity_reference] = ACTIONS(3480), - [sym_numeric_character_reference] = ACTIONS(3480), - [anon_sym_LT] = ACTIONS(3483), - [anon_sym_GT] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_POUND] = ACTIONS(3486), - [anon_sym_DOLLAR] = ACTIONS(3486), - [anon_sym_PERCENT] = ACTIONS(3486), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3486), - [anon_sym_STAR] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_COMMA] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3483), - [anon_sym_DOT] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_EQ] = ACTIONS(3486), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_BSLASH] = ACTIONS(3494), - [anon_sym_CARET] = ACTIONS(3483), - [anon_sym_BQUOTE] = ACTIONS(3486), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_PIPE] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3486), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_RPAREN] = ACTIONS(3486), - [sym__newline_token] = ACTIONS(3500), - [aux_sym_insert_token1] = ACTIONS(3503), - [aux_sym_insert_token2] = ACTIONS(3506), - [aux_sym_delete_token1] = ACTIONS(3508), - [aux_sym_highlight_token1] = ACTIONS(3511), - [aux_sym_edit_comment_token1] = ACTIONS(3514), - [anon_sym_CARET_LBRACK] = ACTIONS(3517), - [anon_sym_LBRACK_CARET] = ACTIONS(3520), - [sym_uri_autolink] = ACTIONS(3480), - [sym_email_autolink] = ACTIONS(3480), - [sym__whitespace_ge_2] = ACTIONS(3523), - [aux_sym__whitespace_token1] = ACTIONS(3526), - [sym__word_no_digit] = ACTIONS(3529), - [sym__digits] = ACTIONS(3529), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3529), - [sym__code_span_start] = ACTIONS(3535), - [sym__emphasis_open_star] = ACTIONS(3506), - [sym__emphasis_open_underscore] = ACTIONS(3506), - [sym__strikeout_open] = ACTIONS(3538), - [sym__latex_span_start] = ACTIONS(3541), - [sym__single_quote_open] = ACTIONS(3544), - [sym__double_quote_open] = ACTIONS(3547), - [sym__superscript_open] = ACTIONS(3550), - [sym__subscript_open] = ACTIONS(3553), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3556), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3559), - [sym__cite_author_in_text] = ACTIONS(3562), - [sym__cite_suppress_author] = ACTIONS(3565), - [sym__shortcode_open_escaped] = ACTIONS(3568), - [sym__shortcode_open] = ACTIONS(3571), - [sym__unclosed_span] = ACTIONS(3480), - [sym__strong_emphasis_open_star] = ACTIONS(3506), - [sym__strong_emphasis_open_underscore] = ACTIONS(3506), + [sym__backslash_escape] = ACTIONS(3033), + [sym_entity_reference] = ACTIONS(3036), + [sym_numeric_character_reference] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3039), + [anon_sym_GT] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_DQUOTE] = ACTIONS(3042), + [anon_sym_POUND] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3042), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_PLUS] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_SLASH] = ACTIONS(3042), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_EQ] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_BSLASH] = ACTIONS(3050), + [anon_sym_CARET] = ACTIONS(3039), + [anon_sym_BQUOTE] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_RPAREN] = ACTIONS(3042), + [sym__newline_token] = ACTIONS(3056), + [aux_sym_insert_token1] = ACTIONS(3059), + [aux_sym_delete_token1] = ACTIONS(3062), + [aux_sym_highlight_token1] = ACTIONS(3065), + [aux_sym_edit_comment_token1] = ACTIONS(3068), + [anon_sym_CARET_LBRACK] = ACTIONS(3071), + [anon_sym_LBRACK_CARET] = ACTIONS(3074), + [sym_uri_autolink] = ACTIONS(3036), + [sym_email_autolink] = ACTIONS(3036), + [sym__whitespace_ge_2] = ACTIONS(3077), + [aux_sym__whitespace_token1] = ACTIONS(3080), + [sym__word_no_digit] = ACTIONS(3083), + [sym__digits] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3086), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3083), + [sym__code_span_start] = ACTIONS(3089), + [sym__emphasis_open_star] = ACTIONS(3092), + [sym__emphasis_open_underscore] = ACTIONS(3092), + [sym__strikeout_open] = ACTIONS(3094), + [sym__latex_span_start] = ACTIONS(3097), + [sym__single_quote_open] = ACTIONS(3100), + [sym__double_quote_open] = ACTIONS(3103), + [sym__double_quote_close] = ACTIONS(3092), + [sym__superscript_open] = ACTIONS(3106), + [sym__subscript_open] = ACTIONS(3109), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3112), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3115), + [sym__cite_author_in_text] = ACTIONS(3118), + [sym__cite_suppress_author] = ACTIONS(3121), + [sym__shortcode_open_escaped] = ACTIONS(3124), + [sym__shortcode_open] = ACTIONS(3127), + [sym__unclosed_span] = ACTIONS(3036), + [sym__strong_emphasis_open_star] = ACTIONS(3092), + [sym__strong_emphasis_open_underscore] = ACTIONS(3092), }, [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(1434), + [sym_backslash_escape] = STATE(463), + [sym_commonmark_attribute] = STATE(463), + [sym_code_span] = STATE(463), + [sym_latex_span] = STATE(463), + [sym_insert] = STATE(463), + [sym_delete] = STATE(463), + [sym_highlight] = STATE(463), + [sym_edit_comment] = STATE(463), + [sym_superscript] = STATE(463), + [sym_subscript] = STATE(463), + [sym_strikeout] = STATE(463), + [sym_quoted_span] = STATE(463), + [sym_inline_note] = STATE(463), + [sym_citation] = STATE(463), + [sym_shortcode_escaped] = STATE(463), + [sym_shortcode] = STATE(463), + [sym_note_reference] = STATE(463), + [sym_image] = STATE(463), + [sym__image_inline_link] = STATE(1089), [sym__image_description] = STATE(2651), [sym__image_description_non_empty] = STATE(2651), - [sym_hard_line_break] = STATE(453), - [sym__whitespace] = STATE(800), - [sym__word] = STATE(800), - [sym__soft_line_break] = STATE(1530), - [sym__text_base] = STATE(453), - [aux_sym__inline_base_repeat1] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(3506), - [sym__backslash_escape] = ACTIONS(3574), - [sym_entity_reference] = ACTIONS(3577), - [sym_numeric_character_reference] = ACTIONS(3577), - [anon_sym_LT] = ACTIONS(3580), - [anon_sym_GT] = ACTIONS(3583), - [anon_sym_BANG] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3583), - [anon_sym_POUND] = ACTIONS(3583), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_PERCENT] = ACTIONS(3583), - [anon_sym_AMP] = ACTIONS(3580), - [anon_sym_SQUOTE] = ACTIONS(3583), - [anon_sym_STAR] = ACTIONS(3583), - [anon_sym_PLUS] = ACTIONS(3583), - [anon_sym_COMMA] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3580), - [anon_sym_DOT] = ACTIONS(3580), - [anon_sym_SLASH] = ACTIONS(3583), - [anon_sym_COLON] = ACTIONS(3583), - [anon_sym_SEMI] = ACTIONS(3583), - [anon_sym_EQ] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_BSLASH] = ACTIONS(3589), - [anon_sym_CARET] = ACTIONS(3580), - [anon_sym_BQUOTE] = ACTIONS(3583), - [anon_sym_LBRACE] = ACTIONS(3592), - [anon_sym_PIPE] = ACTIONS(3583), - [anon_sym_TILDE] = ACTIONS(3583), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_RPAREN] = ACTIONS(3583), - [sym__newline_token] = ACTIONS(3595), - [aux_sym_insert_token1] = ACTIONS(3598), - [aux_sym_delete_token1] = ACTIONS(3601), - [aux_sym_highlight_token1] = ACTIONS(3604), - [aux_sym_edit_comment_token1] = ACTIONS(3607), - [anon_sym_CARET_LBRACK] = ACTIONS(3610), - [anon_sym_LBRACK_CARET] = ACTIONS(3613), - [sym_uri_autolink] = ACTIONS(3577), - [sym_email_autolink] = ACTIONS(3577), - [sym__whitespace_ge_2] = ACTIONS(3616), - [aux_sym__whitespace_token1] = ACTIONS(3619), - [sym__word_no_digit] = ACTIONS(3622), - [sym__digits] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3622), - [sym__code_span_start] = ACTIONS(3628), - [sym__emphasis_open_star] = ACTIONS(3506), - [sym__emphasis_open_underscore] = ACTIONS(3506), - [sym__strikeout_open] = ACTIONS(3631), - [sym__latex_span_start] = ACTIONS(3634), - [sym__single_quote_open] = ACTIONS(3637), - [sym__double_quote_open] = ACTIONS(3640), - [sym__superscript_open] = ACTIONS(3643), - [sym__subscript_open] = ACTIONS(3646), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3649), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3652), - [sym__cite_author_in_text] = ACTIONS(3655), - [sym__cite_suppress_author] = ACTIONS(3658), - [sym__shortcode_open_escaped] = ACTIONS(3661), - [sym__shortcode_open] = ACTIONS(3664), - [sym__unclosed_span] = ACTIONS(3577), - [sym__strong_emphasis_open_star] = ACTIONS(3506), - [sym__strong_emphasis_open_underscore] = ACTIONS(3506), + [sym_hard_line_break] = STATE(463), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__text_base] = STATE(463), + [aux_sym__inline_base_repeat1] = STATE(463), + [sym__backslash_escape] = ACTIONS(647), + [sym_entity_reference] = ACTIONS(3130), + [sym_numeric_character_reference] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_SQUOTE] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_BSLASH] = ACTIONS(659), + [anon_sym_CARET] = ACTIONS(651), + [anon_sym_BQUOTE] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(661), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_TILDE] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_RPAREN] = ACTIONS(653), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(665), + [aux_sym_delete_token1] = ACTIONS(667), + [aux_sym_highlight_token1] = ACTIONS(669), + [aux_sym_edit_comment_token1] = ACTIONS(671), + [anon_sym_CARET_LBRACK] = ACTIONS(673), + [anon_sym_LBRACK_CARET] = ACTIONS(675), + [sym_uri_autolink] = ACTIONS(3130), + [sym_email_autolink] = ACTIONS(3130), + [sym__whitespace_ge_2] = ACTIONS(677), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(681), + [sym__digits] = ACTIONS(681), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_DASH_DASH_DASH] = ACTIONS(681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(681), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(3134), + [sym__emphasis_open_underscore] = ACTIONS(3134), + [sym__strikeout_open] = ACTIONS(691), + [sym__latex_span_start] = ACTIONS(693), + [sym__single_quote_open] = ACTIONS(695), + [sym__double_quote_open] = ACTIONS(697), + [sym__superscript_open] = ACTIONS(699), + [sym__superscript_close] = ACTIONS(3134), + [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(3130), + [sym__strong_emphasis_open_star] = ACTIONS(3134), + [sym__strong_emphasis_open_underscore] = ACTIONS(3134), }, [STATE(454)] = { [sym_backslash_escape] = STATE(455), @@ -77301,81 +76823,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(455), [sym_note_reference] = STATE(455), [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), [sym__text_base] = STATE(455), [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(3667), - [sym_numeric_character_reference] = ACTIONS(3667), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DQUOTE] = ACTIONS(687), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_COMMA] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(687), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(699), - [aux_sym_delete_token1] = ACTIONS(701), - [aux_sym_highlight_token1] = ACTIONS(703), - [aux_sym_edit_comment_token1] = ACTIONS(705), - [anon_sym_CARET_LBRACK] = ACTIONS(707), - [anon_sym_LBRACK_CARET] = ACTIONS(709), - [sym_uri_autolink] = ACTIONS(3667), - [sym_email_autolink] = ACTIONS(3667), - [sym__whitespace_ge_2] = ACTIONS(711), - [aux_sym__whitespace_token1] = ACTIONS(713), - [sym__word_no_digit] = ACTIONS(715), - [sym__digits] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(717), - [anon_sym_DASH_DASH_DASH] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(715), - [sym__code_span_start] = ACTIONS(719), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__emphasis_close_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(727), - [sym__latex_span_start] = ACTIONS(729), - [sym__single_quote_open] = ACTIONS(731), - [sym__double_quote_open] = ACTIONS(733), - [sym__superscript_open] = ACTIONS(735), - [sym__subscript_open] = ACTIONS(737), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(739), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(741), - [sym__cite_author_in_text] = ACTIONS(743), - [sym__cite_suppress_author] = ACTIONS(745), - [sym__shortcode_open_escaped] = ACTIONS(747), - [sym__shortcode_open] = ACTIONS(749), - [sym__unclosed_span] = ACTIONS(3667), - [sym__strong_emphasis_open_star] = ACTIONS(3671), - [sym__strong_emphasis_open_underscore] = ACTIONS(3671), + [sym__backslash_escape] = ACTIONS(795), + [sym_entity_reference] = ACTIONS(3136), + [sym_numeric_character_reference] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_PERCENT] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_COMMA] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOT] = ACTIONS(799), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_COLON] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_EQ] = ACTIONS(801), + [anon_sym_QMARK] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_BSLASH] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(813), + [aux_sym_delete_token1] = ACTIONS(815), + [aux_sym_highlight_token1] = ACTIONS(817), + [aux_sym_edit_comment_token1] = ACTIONS(819), + [anon_sym_CARET_LBRACK] = ACTIONS(821), + [anon_sym_LBRACK_CARET] = ACTIONS(823), + [sym_uri_autolink] = ACTIONS(3136), + [sym_email_autolink] = ACTIONS(3136), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(829), + [sym__digits] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(831), + [anon_sym_DASH_DASH_DASH] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(829), + [sym__code_span_start] = ACTIONS(833), + [sym__emphasis_open_star] = ACTIONS(3134), + [sym__emphasis_open_underscore] = ACTIONS(3134), + [sym__strikeout_open] = ACTIONS(839), + [sym__latex_span_start] = ACTIONS(841), + [sym__single_quote_open] = ACTIONS(843), + [sym__double_quote_open] = ACTIONS(845), + [sym__superscript_open] = ACTIONS(847), + [sym__subscript_open] = ACTIONS(849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(851), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(853), + [sym__cite_author_in_text] = ACTIONS(855), + [sym__cite_suppress_author] = ACTIONS(857), + [sym__shortcode_open_escaped] = ACTIONS(859), + [sym__shortcode_open] = ACTIONS(861), + [sym__unclosed_span] = ACTIONS(3136), + [sym__strong_emphasis_open_star] = ACTIONS(3134), + [sym__strong_emphasis_close_star] = ACTIONS(3134), + [sym__strong_emphasis_open_underscore] = ACTIONS(3134), }, [STATE(455)] = { [sym_backslash_escape] = STATE(455), @@ -77396,81 +76917,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(455), [sym_note_reference] = STATE(455), [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(1441), - [sym__image_description] = STATE(2719), - [sym__image_description_non_empty] = STATE(2719), + [sym__image_inline_link] = STATE(939), + [sym__image_description] = STATE(2687), + [sym__image_description_non_empty] = STATE(2687), [sym_hard_line_break] = STATE(455), - [sym__whitespace] = STATE(1438), - [sym__word] = STATE(1438), - [sym__soft_line_break] = STATE(1442), + [sym__whitespace] = STATE(936), + [sym__word] = STATE(936), + [sym__soft_line_break] = STATE(940), [sym__text_base] = STATE(455), [aux_sym__inline_base_repeat1] = STATE(455), - [sym__backslash_escape] = ACTIONS(3673), - [sym_entity_reference] = ACTIONS(3676), - [sym_numeric_character_reference] = ACTIONS(3676), - [anon_sym_LT] = ACTIONS(3679), - [anon_sym_GT] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3685), - [anon_sym_DQUOTE] = ACTIONS(3682), - [anon_sym_POUND] = ACTIONS(3682), - [anon_sym_DOLLAR] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3679), - [anon_sym_SQUOTE] = ACTIONS(3682), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3682), - [anon_sym_COMMA] = ACTIONS(3682), - [anon_sym_DASH] = ACTIONS(3679), - [anon_sym_DOT] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_COLON] = ACTIONS(3682), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_EQ] = ACTIONS(3682), - [anon_sym_QMARK] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_BSLASH] = ACTIONS(3688), - [anon_sym_CARET] = ACTIONS(3679), - [anon_sym_BQUOTE] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3691), - [anon_sym_PIPE] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3682), - [sym__newline_token] = ACTIONS(3694), - [aux_sym_insert_token1] = ACTIONS(3697), - [aux_sym_delete_token1] = ACTIONS(3700), - [aux_sym_highlight_token1] = ACTIONS(3703), - [aux_sym_edit_comment_token1] = ACTIONS(3706), - [anon_sym_CARET_LBRACK] = ACTIONS(3709), - [anon_sym_LBRACK_CARET] = ACTIONS(3712), - [sym_uri_autolink] = ACTIONS(3676), - [sym_email_autolink] = ACTIONS(3676), - [sym__whitespace_ge_2] = ACTIONS(3715), - [aux_sym__whitespace_token1] = ACTIONS(3718), - [sym__word_no_digit] = ACTIONS(3721), - [sym__digits] = ACTIONS(3721), - [anon_sym_DASH_DASH] = ACTIONS(3724), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3721), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3721), - [sym__code_span_start] = ACTIONS(3727), - [sym__emphasis_open_star] = ACTIONS(3506), - [sym__emphasis_open_underscore] = ACTIONS(3506), - [sym__emphasis_close_underscore] = ACTIONS(3506), - [sym__strikeout_open] = ACTIONS(3730), - [sym__latex_span_start] = ACTIONS(3733), - [sym__single_quote_open] = ACTIONS(3736), - [sym__double_quote_open] = ACTIONS(3739), - [sym__superscript_open] = ACTIONS(3742), - [sym__subscript_open] = ACTIONS(3745), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3748), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3751), - [sym__cite_author_in_text] = ACTIONS(3754), - [sym__cite_suppress_author] = ACTIONS(3757), - [sym__shortcode_open_escaped] = ACTIONS(3760), - [sym__shortcode_open] = ACTIONS(3763), - [sym__unclosed_span] = ACTIONS(3676), - [sym__strong_emphasis_open_star] = ACTIONS(3506), - [sym__strong_emphasis_open_underscore] = ACTIONS(3506), + [sym__backslash_escape] = ACTIONS(3138), + [sym_entity_reference] = ACTIONS(3141), + [sym_numeric_character_reference] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3144), + [anon_sym_GT] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(3147), + [anon_sym_POUND] = ACTIONS(3147), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_SLASH] = ACTIONS(3147), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_BSLASH] = ACTIONS(3153), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_BQUOTE] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_PIPE] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_RPAREN] = ACTIONS(3147), + [sym__newline_token] = ACTIONS(3159), + [aux_sym_insert_token1] = ACTIONS(3162), + [aux_sym_delete_token1] = ACTIONS(3165), + [aux_sym_highlight_token1] = ACTIONS(3168), + [aux_sym_edit_comment_token1] = ACTIONS(3171), + [anon_sym_CARET_LBRACK] = ACTIONS(3174), + [anon_sym_LBRACK_CARET] = ACTIONS(3177), + [sym_uri_autolink] = ACTIONS(3141), + [sym_email_autolink] = ACTIONS(3141), + [sym__whitespace_ge_2] = ACTIONS(3180), + [aux_sym__whitespace_token1] = ACTIONS(3183), + [sym__word_no_digit] = ACTIONS(3186), + [sym__digits] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3186), + [sym__code_span_start] = ACTIONS(3192), + [sym__emphasis_open_star] = ACTIONS(3092), + [sym__emphasis_open_underscore] = ACTIONS(3092), + [sym__strikeout_open] = ACTIONS(3195), + [sym__latex_span_start] = ACTIONS(3198), + [sym__single_quote_open] = ACTIONS(3201), + [sym__double_quote_open] = ACTIONS(3204), + [sym__superscript_open] = ACTIONS(3207), + [sym__subscript_open] = ACTIONS(3210), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3213), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3216), + [sym__cite_author_in_text] = ACTIONS(3219), + [sym__cite_suppress_author] = ACTIONS(3222), + [sym__shortcode_open_escaped] = ACTIONS(3225), + [sym__shortcode_open] = ACTIONS(3228), + [sym__unclosed_span] = ACTIONS(3141), + [sym__strong_emphasis_open_star] = ACTIONS(3092), + [sym__strong_emphasis_close_star] = ACTIONS(3092), + [sym__strong_emphasis_open_underscore] = ACTIONS(3092), }, [STATE(456)] = { [sym_backslash_escape] = STATE(457), @@ -77491,81 +77011,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(457), [sym_note_reference] = STATE(457), [sym_image] = STATE(457), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(457), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), [sym__text_base] = STATE(457), [aux_sym__inline_base_repeat1] = STATE(457), - [sym__backslash_escape] = ACTIONS(759), - [sym_entity_reference] = ACTIONS(3766), - [sym_numeric_character_reference] = ACTIONS(3766), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(777), - [aux_sym_delete_token1] = ACTIONS(779), - [aux_sym_highlight_token1] = ACTIONS(781), - [aux_sym_edit_comment_token1] = ACTIONS(783), - [anon_sym_CARET_LBRACK] = ACTIONS(785), - [anon_sym_LBRACK_CARET] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(3766), - [sym_email_autolink] = ACTIONS(3766), - [sym__whitespace_ge_2] = ACTIONS(789), - [aux_sym__whitespace_token1] = ACTIONS(791), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_DASH_DASH_DASH] = ACTIONS(793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(797), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(803), - [sym__strikeout_close] = ACTIONS(3671), - [sym__latex_span_start] = ACTIONS(807), - [sym__single_quote_open] = ACTIONS(809), - [sym__double_quote_open] = ACTIONS(811), - [sym__superscript_open] = ACTIONS(813), - [sym__subscript_open] = ACTIONS(815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(817), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(819), - [sym__cite_author_in_text] = ACTIONS(821), - [sym__cite_suppress_author] = ACTIONS(823), - [sym__shortcode_open_escaped] = ACTIONS(825), - [sym__shortcode_open] = ACTIONS(827), - [sym__unclosed_span] = ACTIONS(3766), - [sym__strong_emphasis_open_star] = ACTIONS(3671), - [sym__strong_emphasis_open_underscore] = ACTIONS(3671), + [sym__backslash_escape] = ACTIONS(869), + [sym_entity_reference] = ACTIONS(3231), + [sym_numeric_character_reference] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOT] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_BSLASH] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(887), + [aux_sym_delete_token1] = ACTIONS(889), + [aux_sym_highlight_token1] = ACTIONS(891), + [aux_sym_edit_comment_token1] = ACTIONS(893), + [anon_sym_CARET_LBRACK] = ACTIONS(895), + [anon_sym_LBRACK_CARET] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(3231), + [sym_email_autolink] = ACTIONS(3231), + [sym__whitespace_ge_2] = ACTIONS(899), + [aux_sym__whitespace_token1] = ACTIONS(901), + [sym__word_no_digit] = ACTIONS(903), + [sym__digits] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH_DASH] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(907), + [sym__emphasis_open_star] = ACTIONS(3134), + [sym__emphasis_open_underscore] = ACTIONS(3134), + [sym__strikeout_open] = ACTIONS(913), + [sym__latex_span_start] = ACTIONS(915), + [sym__single_quote_open] = ACTIONS(917), + [sym__double_quote_open] = ACTIONS(919), + [sym__superscript_open] = ACTIONS(921), + [sym__subscript_open] = ACTIONS(923), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(925), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(927), + [sym__cite_author_in_text] = ACTIONS(929), + [sym__cite_suppress_author] = ACTIONS(931), + [sym__shortcode_open_escaped] = ACTIONS(933), + [sym__shortcode_open] = ACTIONS(935), + [sym__unclosed_span] = ACTIONS(3231), + [sym__strong_emphasis_open_star] = ACTIONS(3134), + [sym__strong_emphasis_open_underscore] = ACTIONS(3134), + [sym__strong_emphasis_close_underscore] = ACTIONS(3134), }, [STATE(457)] = { [sym_backslash_escape] = STATE(457), @@ -77586,178 +77105,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(457), [sym_note_reference] = STATE(457), [sym_image] = STATE(457), - [sym__image_inline_link] = STATE(1531), - [sym__image_description] = STATE(2743), - [sym__image_description_non_empty] = STATE(2743), + [sym__image_inline_link] = STATE(1038), + [sym__image_description] = STATE(2705), + [sym__image_description_non_empty] = STATE(2705), [sym_hard_line_break] = STATE(457), - [sym__whitespace] = STATE(1528), - [sym__word] = STATE(1528), - [sym__soft_line_break] = STATE(1532), + [sym__whitespace] = STATE(1035), + [sym__word] = STATE(1035), + [sym__soft_line_break] = STATE(1039), [sym__text_base] = STATE(457), [aux_sym__inline_base_repeat1] = STATE(457), - [sym__backslash_escape] = ACTIONS(3768), - [sym_entity_reference] = ACTIONS(3771), - [sym_numeric_character_reference] = ACTIONS(3771), - [anon_sym_LT] = ACTIONS(3774), - [anon_sym_GT] = ACTIONS(3777), - [anon_sym_BANG] = ACTIONS(3780), - [anon_sym_DQUOTE] = ACTIONS(3777), - [anon_sym_POUND] = ACTIONS(3777), - [anon_sym_DOLLAR] = ACTIONS(3777), - [anon_sym_PERCENT] = ACTIONS(3777), - [anon_sym_AMP] = ACTIONS(3774), - [anon_sym_SQUOTE] = ACTIONS(3777), - [anon_sym_STAR] = ACTIONS(3777), - [anon_sym_PLUS] = ACTIONS(3777), - [anon_sym_COMMA] = ACTIONS(3777), - [anon_sym_DASH] = ACTIONS(3774), - [anon_sym_DOT] = ACTIONS(3774), - [anon_sym_SLASH] = ACTIONS(3777), - [anon_sym_COLON] = ACTIONS(3777), - [anon_sym_SEMI] = ACTIONS(3777), - [anon_sym_EQ] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3777), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_BSLASH] = ACTIONS(3783), - [anon_sym_CARET] = ACTIONS(3774), - [anon_sym_BQUOTE] = ACTIONS(3777), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_PIPE] = ACTIONS(3777), - [anon_sym_TILDE] = ACTIONS(3777), - [anon_sym_LPAREN] = ACTIONS(3777), - [anon_sym_RPAREN] = ACTIONS(3777), - [sym__newline_token] = ACTIONS(3789), - [aux_sym_insert_token1] = ACTIONS(3792), - [aux_sym_delete_token1] = ACTIONS(3795), - [aux_sym_highlight_token1] = ACTIONS(3798), - [aux_sym_edit_comment_token1] = ACTIONS(3801), - [anon_sym_CARET_LBRACK] = ACTIONS(3804), - [anon_sym_LBRACK_CARET] = ACTIONS(3807), - [sym_uri_autolink] = ACTIONS(3771), - [sym_email_autolink] = ACTIONS(3771), - [sym__whitespace_ge_2] = ACTIONS(3810), - [aux_sym__whitespace_token1] = ACTIONS(3813), - [sym__word_no_digit] = ACTIONS(3816), - [sym__digits] = ACTIONS(3816), - [anon_sym_DASH_DASH] = ACTIONS(3819), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3816), - [sym__code_span_start] = ACTIONS(3822), - [sym__emphasis_open_star] = ACTIONS(3506), - [sym__emphasis_open_underscore] = ACTIONS(3506), - [sym__strikeout_open] = ACTIONS(3825), - [sym__strikeout_close] = ACTIONS(3506), - [sym__latex_span_start] = ACTIONS(3828), - [sym__single_quote_open] = ACTIONS(3831), - [sym__double_quote_open] = ACTIONS(3834), - [sym__superscript_open] = ACTIONS(3837), - [sym__subscript_open] = ACTIONS(3840), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3843), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3846), - [sym__cite_author_in_text] = ACTIONS(3849), - [sym__cite_suppress_author] = ACTIONS(3852), - [sym__shortcode_open_escaped] = ACTIONS(3855), - [sym__shortcode_open] = ACTIONS(3858), - [sym__unclosed_span] = ACTIONS(3771), - [sym__strong_emphasis_open_star] = ACTIONS(3506), - [sym__strong_emphasis_open_underscore] = ACTIONS(3506), + [sym__backslash_escape] = ACTIONS(3233), + [sym_entity_reference] = ACTIONS(3236), + [sym_numeric_character_reference] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_GT] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3242), + [anon_sym_POUND] = ACTIONS(3242), + [anon_sym_DOLLAR] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_DOT] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_BSLASH] = ACTIONS(3248), + [anon_sym_CARET] = ACTIONS(3239), + [anon_sym_BQUOTE] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_RPAREN] = ACTIONS(3242), + [sym__newline_token] = ACTIONS(3254), + [aux_sym_insert_token1] = ACTIONS(3257), + [aux_sym_delete_token1] = ACTIONS(3260), + [aux_sym_highlight_token1] = ACTIONS(3263), + [aux_sym_edit_comment_token1] = ACTIONS(3266), + [anon_sym_CARET_LBRACK] = ACTIONS(3269), + [anon_sym_LBRACK_CARET] = ACTIONS(3272), + [sym_uri_autolink] = ACTIONS(3236), + [sym_email_autolink] = ACTIONS(3236), + [sym__whitespace_ge_2] = ACTIONS(3275), + [aux_sym__whitespace_token1] = ACTIONS(3278), + [sym__word_no_digit] = ACTIONS(3281), + [sym__digits] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3281), + [sym__code_span_start] = ACTIONS(3287), + [sym__emphasis_open_star] = ACTIONS(3092), + [sym__emphasis_open_underscore] = ACTIONS(3092), + [sym__strikeout_open] = ACTIONS(3290), + [sym__latex_span_start] = ACTIONS(3293), + [sym__single_quote_open] = ACTIONS(3296), + [sym__double_quote_open] = ACTIONS(3299), + [sym__superscript_open] = ACTIONS(3302), + [sym__subscript_open] = ACTIONS(3305), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3308), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3311), + [sym__cite_author_in_text] = ACTIONS(3314), + [sym__cite_suppress_author] = ACTIONS(3317), + [sym__shortcode_open_escaped] = ACTIONS(3320), + [sym__shortcode_open] = ACTIONS(3323), + [sym__unclosed_span] = ACTIONS(3236), + [sym__strong_emphasis_open_star] = ACTIONS(3092), + [sym__strong_emphasis_open_underscore] = ACTIONS(3092), + [sym__strong_emphasis_close_underscore] = ACTIONS(3092), }, [STATE(458)] = { - [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(1434), - [sym__image_description] = STATE(2651), - [sym__image_description_non_empty] = STATE(2651), - [sym_hard_line_break] = STATE(453), - [sym__whitespace] = STATE(800), - [sym__word] = STATE(800), - [sym__soft_line_break] = STATE(1530), - [sym__text_base] = STATE(453), - [aux_sym__inline_base_repeat1] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(3671), - [sym__backslash_escape] = ACTIONS(3), - [sym_entity_reference] = ACTIONS(3861), - [sym_numeric_character_reference] = ACTIONS(3861), - [anon_sym_LT] = ACTIONS(7), - [anon_sym_GT] = ACTIONS(9), - [anon_sym_BANG] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(9), - [anon_sym_PERCENT] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(9), - [anon_sym_PLUS] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(9), - [anon_sym_DASH] = ACTIONS(7), - [anon_sym_DOT] = ACTIONS(7), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_EQ] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_CARET] = ACTIONS(7), - [anon_sym_BQUOTE] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_PIPE] = ACTIONS(9), - [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(9), - [sym__newline_token] = ACTIONS(19), - [aux_sym_insert_token1] = ACTIONS(21), - [aux_sym_delete_token1] = ACTIONS(23), - [aux_sym_highlight_token1] = ACTIONS(25), - [aux_sym_edit_comment_token1] = ACTIONS(27), - [anon_sym_CARET_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_CARET] = ACTIONS(31), - [sym_uri_autolink] = ACTIONS(3861), - [sym_email_autolink] = ACTIONS(3861), - [sym__whitespace_ge_2] = ACTIONS(33), - [aux_sym__whitespace_token1] = ACTIONS(35), - [sym__word_no_digit] = ACTIONS(37), - [sym__digits] = ACTIONS(37), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(37), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym__code_span_start] = ACTIONS(41), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(49), - [sym__latex_span_start] = ACTIONS(51), - [sym__single_quote_open] = ACTIONS(53), - [sym__double_quote_open] = ACTIONS(55), - [sym__superscript_open] = ACTIONS(57), - [sym__subscript_open] = ACTIONS(59), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(61), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(63), - [sym__cite_author_in_text] = ACTIONS(65), - [sym__cite_suppress_author] = ACTIONS(67), - [sym__shortcode_open_escaped] = ACTIONS(69), - [sym__shortcode_open] = ACTIONS(71), - [sym__unclosed_span] = ACTIONS(3861), - [sym__strong_emphasis_open_star] = ACTIONS(3671), - [sym__strong_emphasis_open_underscore] = ACTIONS(3671), - }, - [STATE(459)] = { [sym_backslash_escape] = STATE(460), [sym_commonmark_attribute] = STATE(460), [sym_code_span] = STATE(460), @@ -77776,81 +77199,174 @@ 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(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), [sym_hard_line_break] = STATE(460), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), [sym__text_base] = STATE(460), [aux_sym__inline_base_repeat1] = STATE(460), - [sym__backslash_escape] = ACTIONS(833), - [sym_entity_reference] = ACTIONS(3863), - [sym_numeric_character_reference] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(839), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR] = ACTIONS(839), - [anon_sym_PERCENT] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOT] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(851), - [aux_sym_delete_token1] = ACTIONS(853), - [aux_sym_highlight_token1] = ACTIONS(855), - [aux_sym_edit_comment_token1] = ACTIONS(857), - [anon_sym_CARET_LBRACK] = ACTIONS(859), - [anon_sym_LBRACK_CARET] = ACTIONS(861), - [sym_uri_autolink] = ACTIONS(3863), - [sym_email_autolink] = ACTIONS(3863), - [sym__whitespace_ge_2] = ACTIONS(863), - [aux_sym__whitespace_token1] = ACTIONS(865), - [sym__word_no_digit] = ACTIONS(867), - [sym__digits] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH_DASH_DASH] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(867), - [sym__code_span_start] = ACTIONS(871), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(877), - [sym__latex_span_start] = ACTIONS(879), - [sym__single_quote_open] = ACTIONS(881), - [sym__single_quote_close] = ACTIONS(3671), - [sym__double_quote_open] = ACTIONS(885), - [sym__superscript_open] = ACTIONS(887), - [sym__subscript_open] = ACTIONS(889), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(893), - [sym__cite_author_in_text] = ACTIONS(895), - [sym__cite_suppress_author] = ACTIONS(897), - [sym__shortcode_open_escaped] = ACTIONS(899), - [sym__shortcode_open] = ACTIONS(901), - [sym__unclosed_span] = ACTIONS(3863), - [sym__strong_emphasis_open_star] = ACTIONS(3671), - [sym__strong_emphasis_open_underscore] = ACTIONS(3671), + [sym__backslash_escape] = ACTIONS(77), + [sym_entity_reference] = ACTIONS(3326), + [sym_numeric_character_reference] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(83), + [anon_sym_DOLLAR] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(81), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_COLON] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(83), + [anon_sym_EQ] = ACTIONS(83), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_CARET] = ACTIONS(81), + [anon_sym_BQUOTE] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(83), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(97), + [aux_sym_delete_token1] = ACTIONS(99), + [aux_sym_highlight_token1] = ACTIONS(101), + [aux_sym_edit_comment_token1] = ACTIONS(103), + [anon_sym_CARET_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_CARET] = ACTIONS(107), + [sym_uri_autolink] = ACTIONS(3326), + [sym_email_autolink] = ACTIONS(3326), + [sym__whitespace_ge_2] = ACTIONS(109), + [aux_sym__whitespace_token1] = ACTIONS(111), + [sym__word_no_digit] = ACTIONS(113), + [sym__digits] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(115), + [anon_sym_DASH_DASH_DASH] = ACTIONS(113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [sym__code_span_start] = ACTIONS(117), + [sym__emphasis_open_star] = ACTIONS(3134), + [sym__emphasis_open_underscore] = ACTIONS(3134), + [sym__strikeout_open] = ACTIONS(125), + [sym__latex_span_start] = ACTIONS(127), + [sym__single_quote_open] = ACTIONS(129), + [sym__double_quote_open] = ACTIONS(131), + [sym__superscript_open] = ACTIONS(133), + [sym__subscript_open] = ACTIONS(135), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(137), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(139), + [sym__cite_author_in_text] = ACTIONS(141), + [sym__cite_suppress_author] = ACTIONS(143), + [sym__shortcode_open_escaped] = ACTIONS(145), + [sym__shortcode_open] = ACTIONS(147), + [sym__unclosed_span] = ACTIONS(3326), + [sym__strong_emphasis_open_star] = ACTIONS(3134), + [sym__strong_emphasis_open_underscore] = ACTIONS(3134), + }, + [STATE(459)] = { + [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(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), + [sym_hard_line_break] = STATE(468), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), + [sym__text_base] = STATE(468), + [aux_sym__inline_base_repeat1] = STATE(468), + [sym__backslash_escape] = ACTIONS(197), + [sym_entity_reference] = ACTIONS(3328), + [sym_numeric_character_reference] = ACTIONS(3328), + [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(3132), + [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(3328), + [sym_email_autolink] = ACTIONS(3328), + [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(3134), + [sym__emphasis_open_underscore] = ACTIONS(3134), + [sym__strikeout_open] = ACTIONS(241), + [sym__latex_span_start] = ACTIONS(243), + [sym__single_quote_open] = ACTIONS(245), + [sym__single_quote_close] = ACTIONS(3134), + [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(3328), + [sym__strong_emphasis_open_star] = ACTIONS(3134), + [sym__strong_emphasis_open_underscore] = ACTIONS(3134), }, [STATE(460)] = { [sym_backslash_escape] = STATE(460), @@ -77871,81 +77387,80 @@ 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(1613), - [sym__image_description] = STATE(2782), - [sym__image_description_non_empty] = STATE(2782), + [sym__image_inline_link] = STATE(1136), + [sym__image_description] = STATE(2723), + [sym__image_description_non_empty] = STATE(2723), [sym_hard_line_break] = STATE(460), - [sym__whitespace] = STATE(1611), - [sym__word] = STATE(1611), - [sym__soft_line_break] = STATE(1614), + [sym__whitespace] = STATE(1133), + [sym__word] = STATE(1133), + [sym__soft_line_break] = STATE(1137), [sym__text_base] = STATE(460), [aux_sym__inline_base_repeat1] = STATE(460), - [sym__backslash_escape] = ACTIONS(3865), - [sym_entity_reference] = ACTIONS(3868), - [sym_numeric_character_reference] = ACTIONS(3868), - [anon_sym_LT] = ACTIONS(3871), - [anon_sym_GT] = ACTIONS(3874), - [anon_sym_BANG] = ACTIONS(3877), - [anon_sym_DQUOTE] = ACTIONS(3874), - [anon_sym_POUND] = ACTIONS(3874), - [anon_sym_DOLLAR] = ACTIONS(3874), - [anon_sym_PERCENT] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3871), - [anon_sym_SQUOTE] = ACTIONS(3874), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_PLUS] = ACTIONS(3874), - [anon_sym_COMMA] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3871), - [anon_sym_DOT] = ACTIONS(3871), - [anon_sym_SLASH] = ACTIONS(3874), - [anon_sym_COLON] = ACTIONS(3874), - [anon_sym_SEMI] = ACTIONS(3874), - [anon_sym_EQ] = ACTIONS(3874), - [anon_sym_QMARK] = ACTIONS(3874), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_BSLASH] = ACTIONS(3880), - [anon_sym_CARET] = ACTIONS(3871), - [anon_sym_BQUOTE] = ACTIONS(3874), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_PIPE] = ACTIONS(3874), - [anon_sym_TILDE] = ACTIONS(3874), - [anon_sym_LPAREN] = ACTIONS(3874), - [anon_sym_RPAREN] = ACTIONS(3874), - [sym__newline_token] = ACTIONS(3886), - [aux_sym_insert_token1] = ACTIONS(3889), - [aux_sym_delete_token1] = ACTIONS(3892), - [aux_sym_highlight_token1] = ACTIONS(3895), - [aux_sym_edit_comment_token1] = ACTIONS(3898), - [anon_sym_CARET_LBRACK] = ACTIONS(3901), - [anon_sym_LBRACK_CARET] = ACTIONS(3904), - [sym_uri_autolink] = ACTIONS(3868), - [sym_email_autolink] = ACTIONS(3868), - [sym__whitespace_ge_2] = ACTIONS(3907), - [aux_sym__whitespace_token1] = ACTIONS(3910), - [sym__word_no_digit] = ACTIONS(3913), - [sym__digits] = ACTIONS(3913), - [anon_sym_DASH_DASH] = ACTIONS(3916), - [anon_sym_DASH_DASH_DASH] = ACTIONS(3913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3913), - [sym__code_span_start] = ACTIONS(3919), - [sym__emphasis_open_star] = ACTIONS(3506), - [sym__emphasis_open_underscore] = ACTIONS(3506), - [sym__strikeout_open] = ACTIONS(3922), - [sym__latex_span_start] = ACTIONS(3925), - [sym__single_quote_open] = ACTIONS(3928), - [sym__single_quote_close] = ACTIONS(3506), - [sym__double_quote_open] = ACTIONS(3931), - [sym__superscript_open] = ACTIONS(3934), - [sym__subscript_open] = ACTIONS(3937), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3940), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3943), - [sym__cite_author_in_text] = ACTIONS(3946), - [sym__cite_suppress_author] = ACTIONS(3949), - [sym__shortcode_open_escaped] = ACTIONS(3952), - [sym__shortcode_open] = ACTIONS(3955), - [sym__unclosed_span] = ACTIONS(3868), - [sym__strong_emphasis_open_star] = ACTIONS(3506), - [sym__strong_emphasis_open_underscore] = ACTIONS(3506), + [sym__backslash_escape] = ACTIONS(3330), + [sym_entity_reference] = ACTIONS(3333), + [sym_numeric_character_reference] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_GT] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3339), + [anon_sym_POUND] = ACTIONS(3339), + [anon_sym_DOLLAR] = ACTIONS(3339), + [anon_sym_PERCENT] = ACTIONS(3339), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_COMMA] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_COLON] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3339), + [anon_sym_EQ] = ACTIONS(3339), + [anon_sym_QMARK] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_BSLASH] = ACTIONS(3345), + [anon_sym_RBRACK] = ACTIONS(3092), + [anon_sym_CARET] = ACTIONS(3336), + [anon_sym_BQUOTE] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_TILDE] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_RPAREN] = ACTIONS(3339), + [sym__newline_token] = ACTIONS(3351), + [aux_sym_insert_token1] = ACTIONS(3354), + [aux_sym_delete_token1] = ACTIONS(3357), + [aux_sym_highlight_token1] = ACTIONS(3360), + [aux_sym_edit_comment_token1] = ACTIONS(3363), + [anon_sym_CARET_LBRACK] = ACTIONS(3366), + [anon_sym_LBRACK_CARET] = ACTIONS(3369), + [sym_uri_autolink] = ACTIONS(3333), + [sym_email_autolink] = ACTIONS(3333), + [sym__whitespace_ge_2] = ACTIONS(3372), + [aux_sym__whitespace_token1] = ACTIONS(3375), + [sym__word_no_digit] = ACTIONS(3378), + [sym__digits] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3378), + [sym__code_span_start] = ACTIONS(3384), + [sym__emphasis_open_star] = ACTIONS(3092), + [sym__emphasis_open_underscore] = ACTIONS(3092), + [sym__strikeout_open] = ACTIONS(3387), + [sym__latex_span_start] = ACTIONS(3390), + [sym__single_quote_open] = ACTIONS(3393), + [sym__double_quote_open] = ACTIONS(3396), + [sym__superscript_open] = ACTIONS(3399), + [sym__subscript_open] = ACTIONS(3402), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3405), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3408), + [sym__cite_author_in_text] = ACTIONS(3411), + [sym__cite_suppress_author] = ACTIONS(3414), + [sym__shortcode_open_escaped] = ACTIONS(3417), + [sym__shortcode_open] = ACTIONS(3420), + [sym__unclosed_span] = ACTIONS(3333), + [sym__strong_emphasis_open_star] = ACTIONS(3092), + [sym__strong_emphasis_open_underscore] = ACTIONS(3092), }, [STATE(461)] = { [sym_backslash_escape] = STATE(462), @@ -77966,81 +77481,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), [sym__text_base] = STATE(462), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(907), - [sym_entity_reference] = ACTIONS(3958), - [sym_numeric_character_reference] = ACTIONS(3958), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(913), - [anon_sym_PERCENT] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(913), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BQUOTE] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(925), - [aux_sym_delete_token1] = ACTIONS(927), - [aux_sym_highlight_token1] = ACTIONS(929), - [aux_sym_edit_comment_token1] = ACTIONS(931), - [anon_sym_CARET_LBRACK] = ACTIONS(933), - [anon_sym_LBRACK_CARET] = ACTIONS(935), - [sym_uri_autolink] = ACTIONS(3958), - [sym_email_autolink] = ACTIONS(3958), - [sym__whitespace_ge_2] = ACTIONS(937), - [aux_sym__whitespace_token1] = ACTIONS(939), - [sym__word_no_digit] = ACTIONS(941), - [sym__digits] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH_DASH_DASH] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(941), - [sym__code_span_start] = ACTIONS(945), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(951), - [sym__latex_span_start] = ACTIONS(953), - [sym__single_quote_open] = ACTIONS(955), - [sym__double_quote_open] = ACTIONS(957), - [sym__double_quote_close] = ACTIONS(3671), - [sym__superscript_open] = ACTIONS(959), - [sym__subscript_open] = ACTIONS(961), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(965), - [sym__cite_author_in_text] = ACTIONS(967), - [sym__cite_suppress_author] = ACTIONS(969), - [sym__shortcode_open_escaped] = ACTIONS(971), - [sym__shortcode_open] = ACTIONS(973), - [sym__unclosed_span] = ACTIONS(3958), - [sym__strong_emphasis_open_star] = ACTIONS(3671), - [sym__strong_emphasis_open_underscore] = ACTIONS(3671), + [sym__backslash_escape] = ACTIONS(271), + [sym_entity_reference] = ACTIONS(3423), + [sym_numeric_character_reference] = ACTIONS(3423), + [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(3132), + [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(3134), + [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(3423), + [sym_email_autolink] = ACTIONS(3423), + [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(3134), + [sym__emphasis_open_underscore] = ACTIONS(3134), + [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(3423), + [sym__strong_emphasis_open_star] = ACTIONS(3134), + [sym__strong_emphasis_open_underscore] = ACTIONS(3134), }, [STATE(462)] = { [sym_backslash_escape] = STATE(462), @@ -78061,556 +77575,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode] = STATE(462), [sym_note_reference] = STATE(462), [sym_image] = STATE(462), - [sym__image_inline_link] = STATE(802), - [sym__image_description] = STATE(2798), - [sym__image_description_non_empty] = STATE(2798), + [sym__image_inline_link] = STATE(1239), + [sym__image_description] = STATE(2741), + [sym__image_description_non_empty] = STATE(2741), [sym_hard_line_break] = STATE(462), - [sym__whitespace] = STATE(1339), - [sym__word] = STATE(1339), - [sym__soft_line_break] = STATE(803), + [sym__whitespace] = STATE(1236), + [sym__word] = STATE(1236), + [sym__soft_line_break] = STATE(1240), [sym__text_base] = STATE(462), [aux_sym__inline_base_repeat1] = STATE(462), - [sym__backslash_escape] = ACTIONS(3960), - [sym_entity_reference] = ACTIONS(3963), - [sym_numeric_character_reference] = ACTIONS(3963), - [anon_sym_LT] = ACTIONS(3966), - [anon_sym_GT] = ACTIONS(3969), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_DQUOTE] = ACTIONS(3969), - [anon_sym_POUND] = ACTIONS(3969), - [anon_sym_DOLLAR] = ACTIONS(3969), - [anon_sym_PERCENT] = ACTIONS(3969), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_SQUOTE] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3969), - [anon_sym_PLUS] = ACTIONS(3969), - [anon_sym_COMMA] = ACTIONS(3969), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_DOT] = ACTIONS(3966), - [anon_sym_SLASH] = ACTIONS(3969), - [anon_sym_COLON] = ACTIONS(3969), - [anon_sym_SEMI] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(3969), - [anon_sym_QMARK] = ACTIONS(3969), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_BSLASH] = ACTIONS(3975), - [anon_sym_CARET] = ACTIONS(3966), - [anon_sym_BQUOTE] = ACTIONS(3969), - [anon_sym_LBRACE] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3969), - [anon_sym_TILDE] = ACTIONS(3969), - [anon_sym_LPAREN] = ACTIONS(3969), - [anon_sym_RPAREN] = ACTIONS(3969), - [sym__newline_token] = ACTIONS(3981), - [aux_sym_insert_token1] = ACTIONS(3984), - [aux_sym_delete_token1] = ACTIONS(3987), - [aux_sym_highlight_token1] = ACTIONS(3990), - [aux_sym_edit_comment_token1] = ACTIONS(3993), - [anon_sym_CARET_LBRACK] = ACTIONS(3996), - [anon_sym_LBRACK_CARET] = ACTIONS(3999), - [sym_uri_autolink] = ACTIONS(3963), - [sym_email_autolink] = ACTIONS(3963), - [sym__whitespace_ge_2] = ACTIONS(4002), - [aux_sym__whitespace_token1] = ACTIONS(4005), - [sym__word_no_digit] = ACTIONS(4008), - [sym__digits] = ACTIONS(4008), - [anon_sym_DASH_DASH] = ACTIONS(4011), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4008), - [sym__code_span_start] = ACTIONS(4014), - [sym__emphasis_open_star] = ACTIONS(3506), - [sym__emphasis_open_underscore] = ACTIONS(3506), - [sym__strikeout_open] = ACTIONS(4017), - [sym__latex_span_start] = ACTIONS(4020), - [sym__single_quote_open] = ACTIONS(4023), - [sym__double_quote_open] = ACTIONS(4026), - [sym__double_quote_close] = ACTIONS(3506), - [sym__superscript_open] = ACTIONS(4029), - [sym__subscript_open] = ACTIONS(4032), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4038), - [sym__cite_author_in_text] = ACTIONS(4041), - [sym__cite_suppress_author] = ACTIONS(4044), - [sym__shortcode_open_escaped] = ACTIONS(4047), - [sym__shortcode_open] = ACTIONS(4050), - [sym__unclosed_span] = ACTIONS(3963), - [sym__strong_emphasis_open_star] = ACTIONS(3506), - [sym__strong_emphasis_open_underscore] = ACTIONS(3506), + [sym__backslash_escape] = ACTIONS(3425), + [sym_entity_reference] = ACTIONS(3428), + [sym_numeric_character_reference] = ACTIONS(3428), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3434), + [anon_sym_POUND] = ACTIONS(3434), + [anon_sym_DOLLAR] = ACTIONS(3434), + [anon_sym_PERCENT] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_COMMA] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_COLON] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3434), + [anon_sym_EQ] = ACTIONS(3434), + [anon_sym_QMARK] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_BSLASH] = ACTIONS(3440), + [anon_sym_CARET] = ACTIONS(3431), + [anon_sym_BQUOTE] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_RPAREN] = ACTIONS(3434), + [sym__newline_token] = ACTIONS(3446), + [aux_sym_insert_token1] = ACTIONS(3449), + [aux_sym_insert_token2] = ACTIONS(3092), + [aux_sym_delete_token1] = ACTIONS(3452), + [aux_sym_highlight_token1] = ACTIONS(3455), + [aux_sym_edit_comment_token1] = ACTIONS(3458), + [anon_sym_CARET_LBRACK] = ACTIONS(3461), + [anon_sym_LBRACK_CARET] = ACTIONS(3464), + [sym_uri_autolink] = ACTIONS(3428), + [sym_email_autolink] = ACTIONS(3428), + [sym__whitespace_ge_2] = ACTIONS(3467), + [aux_sym__whitespace_token1] = ACTIONS(3470), + [sym__word_no_digit] = ACTIONS(3473), + [sym__digits] = ACTIONS(3473), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3473), + [sym__code_span_start] = ACTIONS(3479), + [sym__emphasis_open_star] = ACTIONS(3092), + [sym__emphasis_open_underscore] = ACTIONS(3092), + [sym__strikeout_open] = ACTIONS(3482), + [sym__latex_span_start] = ACTIONS(3485), + [sym__single_quote_open] = ACTIONS(3488), + [sym__double_quote_open] = ACTIONS(3491), + [sym__superscript_open] = ACTIONS(3494), + [sym__subscript_open] = ACTIONS(3497), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3500), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3503), + [sym__cite_author_in_text] = ACTIONS(3506), + [sym__cite_suppress_author] = ACTIONS(3509), + [sym__shortcode_open_escaped] = ACTIONS(3512), + [sym__shortcode_open] = ACTIONS(3515), + [sym__unclosed_span] = ACTIONS(3428), + [sym__strong_emphasis_open_star] = ACTIONS(3092), + [sym__strong_emphasis_open_underscore] = ACTIONS(3092), }, [STATE(463)] = { - [sym_backslash_escape] = STATE(464), - [sym_commonmark_attribute] = STATE(464), - [sym_code_span] = STATE(464), - [sym_latex_span] = STATE(464), - [sym_insert] = STATE(464), - [sym_delete] = STATE(464), - [sym_highlight] = STATE(464), - [sym_edit_comment] = STATE(464), - [sym_superscript] = STATE(464), - [sym_subscript] = STATE(464), - [sym_strikeout] = STATE(464), - [sym_quoted_span] = STATE(464), - [sym_inline_note] = STATE(464), - [sym_citation] = STATE(464), - [sym_shortcode_escaped] = STATE(464), - [sym_shortcode] = STATE(464), - [sym_note_reference] = STATE(464), - [sym_image] = STATE(464), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(464), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__text_base] = STATE(464), - [aux_sym__inline_base_repeat1] = STATE(464), - [sym__backslash_escape] = ACTIONS(979), - [sym_entity_reference] = ACTIONS(4053), - [sym_numeric_character_reference] = ACTIONS(4053), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(997), - [aux_sym_delete_token1] = ACTIONS(999), - [aux_sym_highlight_token1] = ACTIONS(1001), - [aux_sym_edit_comment_token1] = ACTIONS(1003), - [anon_sym_CARET_LBRACK] = ACTIONS(1005), - [anon_sym_LBRACK_CARET] = ACTIONS(1007), - [sym_uri_autolink] = ACTIONS(4053), - [sym_email_autolink] = ACTIONS(4053), - [sym__whitespace_ge_2] = ACTIONS(1009), - [aux_sym__whitespace_token1] = ACTIONS(1011), - [sym__word_no_digit] = ACTIONS(1013), - [sym__digits] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [sym__code_span_start] = ACTIONS(1017), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(1023), - [sym__latex_span_start] = ACTIONS(1025), - [sym__single_quote_open] = ACTIONS(1027), - [sym__double_quote_open] = ACTIONS(1029), - [sym__superscript_open] = ACTIONS(1031), - [sym__superscript_close] = ACTIONS(3671), - [sym__subscript_open] = ACTIONS(1035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1039), - [sym__cite_author_in_text] = ACTIONS(1041), - [sym__cite_suppress_author] = ACTIONS(1043), - [sym__shortcode_open_escaped] = ACTIONS(1045), - [sym__shortcode_open] = ACTIONS(1047), - [sym__unclosed_span] = ACTIONS(4053), - [sym__strong_emphasis_open_star] = ACTIONS(3671), - [sym__strong_emphasis_open_underscore] = ACTIONS(3671), + [sym_backslash_escape] = STATE(463), + [sym_commonmark_attribute] = STATE(463), + [sym_code_span] = STATE(463), + [sym_latex_span] = STATE(463), + [sym_insert] = STATE(463), + [sym_delete] = STATE(463), + [sym_highlight] = STATE(463), + [sym_edit_comment] = STATE(463), + [sym_superscript] = STATE(463), + [sym_subscript] = STATE(463), + [sym_strikeout] = STATE(463), + [sym_quoted_span] = STATE(463), + [sym_inline_note] = STATE(463), + [sym_citation] = STATE(463), + [sym_shortcode_escaped] = STATE(463), + [sym_shortcode] = STATE(463), + [sym_note_reference] = STATE(463), + [sym_image] = STATE(463), + [sym__image_inline_link] = STATE(1089), + [sym__image_description] = STATE(2651), + [sym__image_description_non_empty] = STATE(2651), + [sym_hard_line_break] = STATE(463), + [sym__whitespace] = STATE(1057), + [sym__word] = STATE(1057), + [sym__soft_line_break] = STATE(1127), + [sym__text_base] = STATE(463), + [aux_sym__inline_base_repeat1] = STATE(463), + [sym__backslash_escape] = ACTIONS(3518), + [sym_entity_reference] = ACTIONS(3521), + [sym_numeric_character_reference] = ACTIONS(3521), + [anon_sym_LT] = ACTIONS(3524), + [anon_sym_GT] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3527), + [anon_sym_POUND] = ACTIONS(3527), + [anon_sym_DOLLAR] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(3527), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_DOT] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(3527), + [anon_sym_SEMI] = ACTIONS(3527), + [anon_sym_EQ] = ACTIONS(3527), + [anon_sym_QMARK] = ACTIONS(3527), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_BSLASH] = ACTIONS(3533), + [anon_sym_CARET] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(3527), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_PIPE] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_RPAREN] = ACTIONS(3527), + [sym__newline_token] = ACTIONS(3539), + [aux_sym_insert_token1] = ACTIONS(3542), + [aux_sym_delete_token1] = ACTIONS(3545), + [aux_sym_highlight_token1] = ACTIONS(3548), + [aux_sym_edit_comment_token1] = ACTIONS(3551), + [anon_sym_CARET_LBRACK] = ACTIONS(3554), + [anon_sym_LBRACK_CARET] = ACTIONS(3557), + [sym_uri_autolink] = ACTIONS(3521), + [sym_email_autolink] = ACTIONS(3521), + [sym__whitespace_ge_2] = ACTIONS(3560), + [aux_sym__whitespace_token1] = ACTIONS(3563), + [sym__word_no_digit] = ACTIONS(3566), + [sym__digits] = ACTIONS(3566), + [anon_sym_DASH_DASH] = ACTIONS(3569), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3566), + [sym__code_span_start] = ACTIONS(3572), + [sym__emphasis_open_star] = ACTIONS(3092), + [sym__emphasis_open_underscore] = ACTIONS(3092), + [sym__strikeout_open] = ACTIONS(3575), + [sym__latex_span_start] = ACTIONS(3578), + [sym__single_quote_open] = ACTIONS(3581), + [sym__double_quote_open] = ACTIONS(3584), + [sym__superscript_open] = ACTIONS(3587), + [sym__superscript_close] = ACTIONS(3092), + [sym__subscript_open] = ACTIONS(3590), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3593), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3596), + [sym__cite_author_in_text] = ACTIONS(3599), + [sym__cite_suppress_author] = ACTIONS(3602), + [sym__shortcode_open_escaped] = ACTIONS(3605), + [sym__shortcode_open] = ACTIONS(3608), + [sym__unclosed_span] = ACTIONS(3521), + [sym__strong_emphasis_open_star] = ACTIONS(3092), + [sym__strong_emphasis_open_underscore] = ACTIONS(3092), }, [STATE(464)] = { - [sym_backslash_escape] = STATE(464), - [sym_commonmark_attribute] = STATE(464), - [sym_code_span] = STATE(464), - [sym_latex_span] = STATE(464), - [sym_insert] = STATE(464), - [sym_delete] = STATE(464), - [sym_highlight] = STATE(464), - [sym_edit_comment] = STATE(464), - [sym_superscript] = STATE(464), - [sym_subscript] = STATE(464), - [sym_strikeout] = STATE(464), - [sym_quoted_span] = STATE(464), - [sym_inline_note] = STATE(464), - [sym_citation] = STATE(464), - [sym_shortcode_escaped] = STATE(464), - [sym_shortcode] = STATE(464), - [sym_note_reference] = STATE(464), - [sym_image] = STATE(464), - [sym__image_inline_link] = STATE(879), - [sym__image_description] = STATE(2661), - [sym__image_description_non_empty] = STATE(2661), - [sym_hard_line_break] = STATE(464), - [sym__whitespace] = STATE(878), - [sym__word] = STATE(878), - [sym__soft_line_break] = STATE(880), - [sym__text_base] = STATE(464), - [aux_sym__inline_base_repeat1] = STATE(464), - [sym__backslash_escape] = ACTIONS(4055), - [sym_entity_reference] = ACTIONS(4058), - [sym_numeric_character_reference] = ACTIONS(4058), - [anon_sym_LT] = ACTIONS(4061), - [anon_sym_GT] = ACTIONS(4064), - [anon_sym_BANG] = ACTIONS(4067), - [anon_sym_DQUOTE] = ACTIONS(4064), - [anon_sym_POUND] = ACTIONS(4064), - [anon_sym_DOLLAR] = ACTIONS(4064), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_AMP] = ACTIONS(4061), - [anon_sym_SQUOTE] = ACTIONS(4064), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_PLUS] = ACTIONS(4064), - [anon_sym_COMMA] = ACTIONS(4064), - [anon_sym_DASH] = ACTIONS(4061), - [anon_sym_DOT] = ACTIONS(4061), - [anon_sym_SLASH] = ACTIONS(4064), - [anon_sym_COLON] = ACTIONS(4064), - [anon_sym_SEMI] = ACTIONS(4064), - [anon_sym_EQ] = ACTIONS(4064), - [anon_sym_QMARK] = ACTIONS(4064), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_BSLASH] = ACTIONS(4070), - [anon_sym_CARET] = ACTIONS(4061), - [anon_sym_BQUOTE] = ACTIONS(4064), - [anon_sym_LBRACE] = ACTIONS(4073), - [anon_sym_PIPE] = ACTIONS(4064), - [anon_sym_TILDE] = ACTIONS(4064), - [anon_sym_LPAREN] = ACTIONS(4064), - [anon_sym_RPAREN] = ACTIONS(4064), - [sym__newline_token] = ACTIONS(4076), - [aux_sym_insert_token1] = ACTIONS(4079), - [aux_sym_delete_token1] = ACTIONS(4082), - [aux_sym_highlight_token1] = ACTIONS(4085), - [aux_sym_edit_comment_token1] = ACTIONS(4088), - [anon_sym_CARET_LBRACK] = ACTIONS(4091), - [anon_sym_LBRACK_CARET] = ACTIONS(4094), - [sym_uri_autolink] = ACTIONS(4058), - [sym_email_autolink] = ACTIONS(4058), - [sym__whitespace_ge_2] = ACTIONS(4097), - [aux_sym__whitespace_token1] = ACTIONS(4100), - [sym__word_no_digit] = ACTIONS(4103), - [sym__digits] = ACTIONS(4103), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4103), - [sym__code_span_start] = ACTIONS(4109), - [sym__emphasis_open_star] = ACTIONS(3506), - [sym__emphasis_open_underscore] = ACTIONS(3506), - [sym__strikeout_open] = ACTIONS(4112), - [sym__latex_span_start] = ACTIONS(4115), - [sym__single_quote_open] = ACTIONS(4118), - [sym__double_quote_open] = ACTIONS(4121), - [sym__superscript_open] = ACTIONS(4124), - [sym__superscript_close] = ACTIONS(3506), - [sym__subscript_open] = ACTIONS(4127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4130), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4133), - [sym__cite_author_in_text] = ACTIONS(4136), - [sym__cite_suppress_author] = ACTIONS(4139), - [sym__shortcode_open_escaped] = ACTIONS(4142), - [sym__shortcode_open] = ACTIONS(4145), - [sym__unclosed_span] = ACTIONS(4058), - [sym__strong_emphasis_open_star] = ACTIONS(3506), - [sym__strong_emphasis_open_underscore] = ACTIONS(3506), + [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(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(467), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__text_base] = STATE(467), + [aux_sym__inline_base_repeat1] = STATE(467), + [sym__backslash_escape] = ACTIONS(421), + [sym_entity_reference] = ACTIONS(3611), + [sym_numeric_character_reference] = ACTIONS(3611), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_DQUOTE] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_BSLASH] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_BQUOTE] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(427), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RPAREN] = ACTIONS(427), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(439), + [aux_sym_delete_token1] = ACTIONS(441), + [aux_sym_highlight_token1] = ACTIONS(443), + [aux_sym_edit_comment_token1] = ACTIONS(445), + [anon_sym_CARET_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_CARET] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(3611), + [sym_email_autolink] = ACTIONS(3611), + [sym__whitespace_ge_2] = ACTIONS(451), + [aux_sym__whitespace_token1] = ACTIONS(453), + [sym__word_no_digit] = ACTIONS(455), + [sym__digits] = ACTIONS(455), + [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_DASH_DASH_DASH] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(459), + [sym__emphasis_open_star] = ACTIONS(3134), + [sym__emphasis_open_underscore] = ACTIONS(3134), + [sym__emphasis_close_star] = ACTIONS(3134), + [sym__strikeout_open] = ACTIONS(467), + [sym__latex_span_start] = ACTIONS(469), + [sym__single_quote_open] = ACTIONS(471), + [sym__double_quote_open] = ACTIONS(473), + [sym__superscript_open] = ACTIONS(475), + [sym__subscript_open] = ACTIONS(477), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(481), + [sym__cite_author_in_text] = ACTIONS(483), + [sym__cite_suppress_author] = ACTIONS(485), + [sym__shortcode_open_escaped] = ACTIONS(487), + [sym__shortcode_open] = ACTIONS(489), + [sym__unclosed_span] = ACTIONS(3611), + [sym__strong_emphasis_open_star] = ACTIONS(3134), + [sym__strong_emphasis_open_underscore] = ACTIONS(3134), }, [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(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(466), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__text_base] = STATE(466), - [aux_sym__inline_base_repeat1] = STATE(466), - [sym__backslash_escape] = ACTIONS(1053), - [sym_entity_reference] = ACTIONS(4148), - [sym_numeric_character_reference] = ACTIONS(4148), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_POUND] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1059), - [anon_sym_PERCENT] = ACTIONS(1059), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(1059), - [anon_sym_STAR] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1059), - [anon_sym_COMMA] = ACTIONS(1059), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1059), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(1059), - [anon_sym_QMARK] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(1065), - [anon_sym_CARET] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1059), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(1071), - [aux_sym_delete_token1] = ACTIONS(1073), - [aux_sym_highlight_token1] = ACTIONS(1075), - [aux_sym_edit_comment_token1] = ACTIONS(1077), - [anon_sym_CARET_LBRACK] = ACTIONS(1079), - [anon_sym_LBRACK_CARET] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(4148), - [sym_email_autolink] = ACTIONS(4148), - [sym__whitespace_ge_2] = ACTIONS(1083), - [aux_sym__whitespace_token1] = ACTIONS(1085), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1091), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(1097), - [sym__latex_span_start] = ACTIONS(1099), - [sym__single_quote_open] = ACTIONS(1101), - [sym__double_quote_open] = ACTIONS(1103), - [sym__superscript_open] = ACTIONS(1105), - [sym__subscript_open] = ACTIONS(1107), - [sym__subscript_close] = ACTIONS(3671), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1113), - [sym__cite_author_in_text] = ACTIONS(1115), - [sym__cite_suppress_author] = ACTIONS(1117), - [sym__shortcode_open_escaped] = ACTIONS(1119), - [sym__shortcode_open] = ACTIONS(1121), - [sym__unclosed_span] = ACTIONS(4148), - [sym__strong_emphasis_open_star] = ACTIONS(3671), - [sym__strong_emphasis_open_underscore] = ACTIONS(3671), + [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_image] = STATE(465), + [sym__image_inline_link] = STATE(1449), + [sym__image_description] = STATE(2655), + [sym__image_description_non_empty] = STATE(2655), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1453), + [sym__text_base] = STATE(465), + [aux_sym__inline_base_repeat1] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(3092), + [sym__backslash_escape] = ACTIONS(3613), + [sym_entity_reference] = ACTIONS(3616), + [sym_numeric_character_reference] = ACTIONS(3616), + [anon_sym_LT] = ACTIONS(3619), + [anon_sym_GT] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_POUND] = ACTIONS(3622), + [anon_sym_DOLLAR] = ACTIONS(3622), + [anon_sym_PERCENT] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_COMMA] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3619), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_COLON] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_EQ] = ACTIONS(3622), + [anon_sym_QMARK] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_BSLASH] = ACTIONS(3628), + [anon_sym_CARET] = ACTIONS(3619), + [anon_sym_BQUOTE] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_PIPE] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_RPAREN] = ACTIONS(3622), + [sym__newline_token] = ACTIONS(3634), + [aux_sym_insert_token1] = ACTIONS(3637), + [aux_sym_delete_token1] = ACTIONS(3640), + [aux_sym_highlight_token1] = ACTIONS(3643), + [aux_sym_edit_comment_token1] = ACTIONS(3646), + [anon_sym_CARET_LBRACK] = ACTIONS(3649), + [anon_sym_LBRACK_CARET] = ACTIONS(3652), + [sym_uri_autolink] = ACTIONS(3616), + [sym_email_autolink] = ACTIONS(3616), + [sym__whitespace_ge_2] = ACTIONS(3655), + [aux_sym__whitespace_token1] = ACTIONS(3658), + [sym__word_no_digit] = ACTIONS(3661), + [sym__digits] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3661), + [sym__code_span_start] = ACTIONS(3667), + [sym__emphasis_open_star] = ACTIONS(3092), + [sym__emphasis_open_underscore] = ACTIONS(3092), + [sym__strikeout_open] = ACTIONS(3670), + [sym__latex_span_start] = ACTIONS(3673), + [sym__single_quote_open] = ACTIONS(3676), + [sym__double_quote_open] = ACTIONS(3679), + [sym__superscript_open] = ACTIONS(3682), + [sym__subscript_open] = ACTIONS(3685), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3688), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3691), + [sym__cite_author_in_text] = ACTIONS(3694), + [sym__cite_suppress_author] = ACTIONS(3697), + [sym__shortcode_open_escaped] = ACTIONS(3700), + [sym__shortcode_open] = ACTIONS(3703), + [sym__unclosed_span] = ACTIONS(3616), + [sym__strong_emphasis_open_star] = ACTIONS(3092), + [sym__strong_emphasis_open_underscore] = ACTIONS(3092), }, [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(957), - [sym__image_description] = STATE(2677), - [sym__image_description_non_empty] = STATE(2677), - [sym_hard_line_break] = STATE(466), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__soft_line_break] = STATE(958), - [sym__text_base] = STATE(466), - [aux_sym__inline_base_repeat1] = STATE(466), - [sym__backslash_escape] = ACTIONS(4150), - [sym_entity_reference] = ACTIONS(4153), - [sym_numeric_character_reference] = ACTIONS(4153), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4159), - [anon_sym_BANG] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(4159), - [anon_sym_POUND] = ACTIONS(4159), - [anon_sym_DOLLAR] = ACTIONS(4159), - [anon_sym_PERCENT] = ACTIONS(4159), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SQUOTE] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_COMMA] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_SLASH] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(4159), - [anon_sym_SEMI] = ACTIONS(4159), - [anon_sym_EQ] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4159), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_BSLASH] = ACTIONS(4165), - [anon_sym_CARET] = ACTIONS(4156), - [anon_sym_BQUOTE] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4168), - [anon_sym_PIPE] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4159), - [anon_sym_LPAREN] = ACTIONS(4159), - [anon_sym_RPAREN] = ACTIONS(4159), - [sym__newline_token] = ACTIONS(4171), - [aux_sym_insert_token1] = ACTIONS(4174), - [aux_sym_delete_token1] = ACTIONS(4177), - [aux_sym_highlight_token1] = ACTIONS(4180), - [aux_sym_edit_comment_token1] = ACTIONS(4183), - [anon_sym_CARET_LBRACK] = ACTIONS(4186), - [anon_sym_LBRACK_CARET] = ACTIONS(4189), - [sym_uri_autolink] = ACTIONS(4153), - [sym_email_autolink] = ACTIONS(4153), - [sym__whitespace_ge_2] = ACTIONS(4192), - [aux_sym__whitespace_token1] = ACTIONS(4195), - [sym__word_no_digit] = ACTIONS(4198), - [sym__digits] = ACTIONS(4198), - [anon_sym_DASH_DASH] = ACTIONS(4201), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4198), - [sym__code_span_start] = ACTIONS(4204), - [sym__emphasis_open_star] = ACTIONS(3506), - [sym__emphasis_open_underscore] = ACTIONS(3506), - [sym__strikeout_open] = ACTIONS(4207), - [sym__latex_span_start] = ACTIONS(4210), - [sym__single_quote_open] = ACTIONS(4213), - [sym__double_quote_open] = ACTIONS(4216), - [sym__superscript_open] = ACTIONS(4219), - [sym__subscript_open] = ACTIONS(4222), - [sym__subscript_close] = ACTIONS(3506), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4225), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4228), - [sym__cite_author_in_text] = ACTIONS(4231), - [sym__cite_suppress_author] = ACTIONS(4234), - [sym__shortcode_open_escaped] = ACTIONS(4237), - [sym__shortcode_open] = ACTIONS(4240), - [sym__unclosed_span] = ACTIONS(4153), - [sym__strong_emphasis_open_star] = ACTIONS(3506), - [sym__strong_emphasis_open_underscore] = ACTIONS(3506), - }, - [STATE(467)] = { - [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(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), - [sym_hard_line_break] = STATE(468), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), - [sym__text_base] = STATE(468), - [aux_sym__inline_base_repeat1] = STATE(468), - [sym__backslash_escape] = ACTIONS(1127), - [sym_entity_reference] = ACTIONS(4243), - [sym_numeric_character_reference] = ACTIONS(4243), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1131), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_DOT] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(1145), - [aux_sym_delete_token1] = ACTIONS(1147), - [aux_sym_highlight_token1] = ACTIONS(1149), - [aux_sym_edit_comment_token1] = ACTIONS(1151), - [anon_sym_CARET_LBRACK] = ACTIONS(1153), - [anon_sym_LBRACK_CARET] = ACTIONS(1155), - [sym_uri_autolink] = ACTIONS(4243), - [sym_email_autolink] = ACTIONS(4243), - [sym__whitespace_ge_2] = ACTIONS(1157), - [aux_sym__whitespace_token1] = ACTIONS(1159), - [sym__word_no_digit] = ACTIONS(1161), - [sym__digits] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1165), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(1171), - [sym__latex_span_start] = ACTIONS(1173), - [sym__single_quote_open] = ACTIONS(1175), - [sym__double_quote_open] = ACTIONS(1177), - [sym__superscript_open] = ACTIONS(1179), - [sym__subscript_open] = ACTIONS(1181), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1185), - [sym__cite_author_in_text] = ACTIONS(1187), - [sym__cite_suppress_author] = ACTIONS(1189), - [sym__shortcode_open_escaped] = ACTIONS(1191), - [sym__shortcode_open] = ACTIONS(1193), - [sym__unclosed_span] = ACTIONS(4243), - [sym__strong_emphasis_open_star] = ACTIONS(3671), - [sym__strong_emphasis_close_star] = ACTIONS(3671), - [sym__strong_emphasis_open_underscore] = ACTIONS(3671), + [sym_backslash_escape] = STATE(452), + [sym_commonmark_attribute] = STATE(452), + [sym_code_span] = STATE(452), + [sym_latex_span] = STATE(452), + [sym_insert] = STATE(452), + [sym_delete] = STATE(452), + [sym_highlight] = STATE(452), + [sym_edit_comment] = STATE(452), + [sym_superscript] = STATE(452), + [sym_subscript] = STATE(452), + [sym_strikeout] = STATE(452), + [sym_quoted_span] = STATE(452), + [sym_inline_note] = STATE(452), + [sym_citation] = STATE(452), + [sym_shortcode_escaped] = STATE(452), + [sym_shortcode] = STATE(452), + [sym_note_reference] = STATE(452), + [sym_image] = STATE(452), + [sym__image_inline_link] = STATE(1630), + [sym__image_description] = STATE(2785), + [sym__image_description_non_empty] = STATE(2785), + [sym_hard_line_break] = STATE(452), + [sym__whitespace] = STATE(1628), + [sym__word] = STATE(1628), + [sym__soft_line_break] = STATE(1631), + [sym__text_base] = STATE(452), + [aux_sym__inline_base_repeat1] = STATE(452), + [sym__backslash_escape] = ACTIONS(575), + [sym_entity_reference] = ACTIONS(3706), + [sym_numeric_character_reference] = ACTIONS(3706), + [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(3132), + [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(3706), + [sym_email_autolink] = ACTIONS(3706), + [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(3134), + [sym__emphasis_open_underscore] = ACTIONS(3134), + [sym__strikeout_open] = ACTIONS(619), + [sym__latex_span_start] = ACTIONS(621), + [sym__single_quote_open] = ACTIONS(623), + [sym__double_quote_open] = ACTIONS(625), + [sym__double_quote_close] = ACTIONS(3134), + [sym__superscript_open] = ACTIONS(627), + [sym__subscript_open] = ACTIONS(629), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(633), + [sym__cite_author_in_text] = ACTIONS(635), + [sym__cite_suppress_author] = ACTIONS(637), + [sym__shortcode_open_escaped] = ACTIONS(639), + [sym__shortcode_open] = ACTIONS(641), + [sym__unclosed_span] = ACTIONS(3706), + [sym__strong_emphasis_open_star] = ACTIONS(3134), + [sym__strong_emphasis_open_underscore] = ACTIONS(3134), + }, + [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(924), + [sym__image_description] = STATE(2688), + [sym__image_description_non_empty] = STATE(2688), + [sym_hard_line_break] = STATE(467), + [sym__whitespace] = STATE(917), + [sym__word] = STATE(917), + [sym__soft_line_break] = STATE(926), + [sym__text_base] = STATE(467), + [aux_sym__inline_base_repeat1] = STATE(467), + [sym__backslash_escape] = ACTIONS(3708), + [sym_entity_reference] = ACTIONS(3711), + [sym_numeric_character_reference] = ACTIONS(3711), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3720), + [anon_sym_DQUOTE] = ACTIONS(3717), + [anon_sym_POUND] = ACTIONS(3717), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_PERCENT] = ACTIONS(3717), + [anon_sym_AMP] = ACTIONS(3714), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_COMMA] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3714), + [anon_sym_DOT] = ACTIONS(3714), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SEMI] = ACTIONS(3717), + [anon_sym_EQ] = ACTIONS(3717), + [anon_sym_QMARK] = ACTIONS(3717), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_BSLASH] = ACTIONS(3723), + [anon_sym_CARET] = ACTIONS(3714), + [anon_sym_BQUOTE] = ACTIONS(3717), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3717), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_RPAREN] = ACTIONS(3717), + [sym__newline_token] = ACTIONS(3729), + [aux_sym_insert_token1] = ACTIONS(3732), + [aux_sym_delete_token1] = ACTIONS(3735), + [aux_sym_highlight_token1] = ACTIONS(3738), + [aux_sym_edit_comment_token1] = ACTIONS(3741), + [anon_sym_CARET_LBRACK] = ACTIONS(3744), + [anon_sym_LBRACK_CARET] = ACTIONS(3747), + [sym_uri_autolink] = ACTIONS(3711), + [sym_email_autolink] = ACTIONS(3711), + [sym__whitespace_ge_2] = ACTIONS(3750), + [aux_sym__whitespace_token1] = ACTIONS(3753), + [sym__word_no_digit] = ACTIONS(3756), + [sym__digits] = ACTIONS(3756), + [anon_sym_DASH_DASH] = ACTIONS(3759), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3756), + [sym__code_span_start] = ACTIONS(3762), + [sym__emphasis_open_star] = ACTIONS(3092), + [sym__emphasis_open_underscore] = ACTIONS(3092), + [sym__emphasis_close_star] = ACTIONS(3092), + [sym__strikeout_open] = ACTIONS(3765), + [sym__latex_span_start] = ACTIONS(3768), + [sym__single_quote_open] = ACTIONS(3771), + [sym__double_quote_open] = ACTIONS(3774), + [sym__superscript_open] = ACTIONS(3777), + [sym__subscript_open] = ACTIONS(3780), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3783), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3786), + [sym__cite_author_in_text] = ACTIONS(3789), + [sym__cite_suppress_author] = ACTIONS(3792), + [sym__shortcode_open_escaped] = ACTIONS(3795), + [sym__shortcode_open] = ACTIONS(3798), + [sym__unclosed_span] = ACTIONS(3711), + [sym__strong_emphasis_open_star] = ACTIONS(3092), + [sym__strong_emphasis_open_underscore] = ACTIONS(3092), }, [STATE(468)] = { [sym_backslash_escape] = STATE(468), @@ -78631,27208 +78139,27629 @@ 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(1036), - [sym__image_description] = STATE(2693), - [sym__image_description_non_empty] = STATE(2693), + [sym__image_inline_link] = STATE(1544), + [sym__image_description] = STATE(2729), + [sym__image_description_non_empty] = STATE(2729), [sym_hard_line_break] = STATE(468), - [sym__whitespace] = STATE(1034), - [sym__word] = STATE(1034), - [sym__soft_line_break] = STATE(1037), + [sym__whitespace] = STATE(1543), + [sym__word] = STATE(1543), + [sym__soft_line_break] = STATE(1545), [sym__text_base] = STATE(468), [aux_sym__inline_base_repeat1] = STATE(468), - [sym__backslash_escape] = ACTIONS(4245), - [sym_entity_reference] = ACTIONS(4248), - [sym_numeric_character_reference] = ACTIONS(4248), - [anon_sym_LT] = ACTIONS(4251), - [anon_sym_GT] = ACTIONS(4254), - [anon_sym_BANG] = ACTIONS(4257), - [anon_sym_DQUOTE] = ACTIONS(4254), - [anon_sym_POUND] = ACTIONS(4254), - [anon_sym_DOLLAR] = ACTIONS(4254), - [anon_sym_PERCENT] = ACTIONS(4254), - [anon_sym_AMP] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_COMMA] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4251), - [anon_sym_DOT] = ACTIONS(4251), - [anon_sym_SLASH] = ACTIONS(4254), - [anon_sym_COLON] = ACTIONS(4254), - [anon_sym_SEMI] = ACTIONS(4254), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_QMARK] = ACTIONS(4254), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_BSLASH] = ACTIONS(4260), - [anon_sym_CARET] = ACTIONS(4251), - [anon_sym_BQUOTE] = ACTIONS(4254), - [anon_sym_LBRACE] = ACTIONS(4263), - [anon_sym_PIPE] = ACTIONS(4254), - [anon_sym_TILDE] = ACTIONS(4254), - [anon_sym_LPAREN] = ACTIONS(4254), - [anon_sym_RPAREN] = ACTIONS(4254), - [sym__newline_token] = ACTIONS(4266), - [aux_sym_insert_token1] = ACTIONS(4269), - [aux_sym_delete_token1] = ACTIONS(4272), - [aux_sym_highlight_token1] = ACTIONS(4275), - [aux_sym_edit_comment_token1] = ACTIONS(4278), - [anon_sym_CARET_LBRACK] = ACTIONS(4281), - [anon_sym_LBRACK_CARET] = ACTIONS(4284), - [sym_uri_autolink] = ACTIONS(4248), - [sym_email_autolink] = ACTIONS(4248), - [sym__whitespace_ge_2] = ACTIONS(4287), - [aux_sym__whitespace_token1] = ACTIONS(4290), - [sym__word_no_digit] = ACTIONS(4293), - [sym__digits] = ACTIONS(4293), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4293), - [sym__code_span_start] = ACTIONS(4299), - [sym__emphasis_open_star] = ACTIONS(3506), - [sym__emphasis_open_underscore] = ACTIONS(3506), - [sym__strikeout_open] = ACTIONS(4302), - [sym__latex_span_start] = ACTIONS(4305), - [sym__single_quote_open] = ACTIONS(4308), - [sym__double_quote_open] = ACTIONS(4311), - [sym__superscript_open] = ACTIONS(4314), - [sym__subscript_open] = ACTIONS(4317), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4320), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4323), - [sym__cite_author_in_text] = ACTIONS(4326), - [sym__cite_suppress_author] = ACTIONS(4329), - [sym__shortcode_open_escaped] = ACTIONS(4332), - [sym__shortcode_open] = ACTIONS(4335), - [sym__unclosed_span] = ACTIONS(4248), - [sym__strong_emphasis_open_star] = ACTIONS(3506), - [sym__strong_emphasis_close_star] = ACTIONS(3506), - [sym__strong_emphasis_open_underscore] = ACTIONS(3506), + [sym__backslash_escape] = ACTIONS(3801), + [sym_entity_reference] = ACTIONS(3804), + [sym_numeric_character_reference] = ACTIONS(3804), + [anon_sym_LT] = ACTIONS(3807), + [anon_sym_GT] = ACTIONS(3810), + [anon_sym_BANG] = ACTIONS(3813), + [anon_sym_DQUOTE] = ACTIONS(3810), + [anon_sym_POUND] = ACTIONS(3810), + [anon_sym_DOLLAR] = ACTIONS(3810), + [anon_sym_PERCENT] = ACTIONS(3810), + [anon_sym_AMP] = ACTIONS(3807), + [anon_sym_SQUOTE] = ACTIONS(3810), + [anon_sym_PLUS] = ACTIONS(3810), + [anon_sym_COMMA] = ACTIONS(3810), + [anon_sym_DASH] = ACTIONS(3807), + [anon_sym_DOT] = ACTIONS(3807), + [anon_sym_SLASH] = ACTIONS(3810), + [anon_sym_COLON] = ACTIONS(3810), + [anon_sym_SEMI] = ACTIONS(3810), + [anon_sym_EQ] = ACTIONS(3810), + [anon_sym_QMARK] = ACTIONS(3810), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_BSLASH] = ACTIONS(3816), + [anon_sym_CARET] = ACTIONS(3807), + [anon_sym_BQUOTE] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(3819), + [anon_sym_PIPE] = ACTIONS(3810), + [anon_sym_TILDE] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(3810), + [anon_sym_RPAREN] = ACTIONS(3810), + [sym__newline_token] = ACTIONS(3822), + [aux_sym_insert_token1] = ACTIONS(3825), + [aux_sym_delete_token1] = ACTIONS(3828), + [aux_sym_highlight_token1] = ACTIONS(3831), + [aux_sym_edit_comment_token1] = ACTIONS(3834), + [anon_sym_CARET_LBRACK] = ACTIONS(3837), + [anon_sym_LBRACK_CARET] = ACTIONS(3840), + [sym_uri_autolink] = ACTIONS(3804), + [sym_email_autolink] = ACTIONS(3804), + [sym__whitespace_ge_2] = ACTIONS(3843), + [aux_sym__whitespace_token1] = ACTIONS(3846), + [sym__word_no_digit] = ACTIONS(3849), + [sym__digits] = ACTIONS(3849), + [anon_sym_DASH_DASH] = ACTIONS(3852), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3849), + [sym__code_span_start] = ACTIONS(3855), + [sym__emphasis_open_star] = ACTIONS(3092), + [sym__emphasis_open_underscore] = ACTIONS(3092), + [sym__strikeout_open] = ACTIONS(3858), + [sym__latex_span_start] = ACTIONS(3861), + [sym__single_quote_open] = ACTIONS(3864), + [sym__single_quote_close] = ACTIONS(3092), + [sym__double_quote_open] = ACTIONS(3867), + [sym__superscript_open] = ACTIONS(3870), + [sym__subscript_open] = ACTIONS(3873), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3876), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3879), + [sym__cite_author_in_text] = ACTIONS(3882), + [sym__cite_suppress_author] = ACTIONS(3885), + [sym__shortcode_open_escaped] = ACTIONS(3888), + [sym__shortcode_open] = ACTIONS(3891), + [sym__unclosed_span] = ACTIONS(3804), + [sym__strong_emphasis_open_star] = ACTIONS(3092), + [sym__strong_emphasis_open_underscore] = ACTIONS(3092), }, [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(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(470), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__text_base] = STATE(470), - [aux_sym__inline_base_repeat1] = STATE(470), - [sym__backslash_escape] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(4338), - [sym_numeric_character_reference] = ACTIONS(4338), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1207), - [anon_sym_DOLLAR] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_COMMA] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_DOT] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(1213), - [anon_sym_CARET] = ACTIONS(1205), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(1219), - [aux_sym_delete_token1] = ACTIONS(1221), - [aux_sym_highlight_token1] = ACTIONS(1223), - [aux_sym_edit_comment_token1] = ACTIONS(1225), - [anon_sym_CARET_LBRACK] = ACTIONS(1227), - [anon_sym_LBRACK_CARET] = ACTIONS(1229), - [sym_uri_autolink] = ACTIONS(4338), - [sym_email_autolink] = ACTIONS(4338), - [sym__whitespace_ge_2] = ACTIONS(1231), - [aux_sym__whitespace_token1] = ACTIONS(1233), - [sym__word_no_digit] = ACTIONS(1235), - [sym__digits] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1235), - [sym__code_span_start] = ACTIONS(1239), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(1245), - [sym__latex_span_start] = ACTIONS(1247), - [sym__single_quote_open] = ACTIONS(1249), - [sym__double_quote_open] = ACTIONS(1251), - [sym__superscript_open] = ACTIONS(1253), - [sym__subscript_open] = ACTIONS(1255), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1257), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1259), - [sym__cite_author_in_text] = ACTIONS(1261), - [sym__cite_suppress_author] = ACTIONS(1263), - [sym__shortcode_open_escaped] = ACTIONS(1265), - [sym__shortcode_open] = ACTIONS(1267), - [sym__unclosed_span] = ACTIONS(4338), - [sym__strong_emphasis_open_star] = ACTIONS(3671), - [sym__strong_emphasis_open_underscore] = ACTIONS(3671), - [sym__strong_emphasis_close_underscore] = ACTIONS(3671), + [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_image] = STATE(465), + [sym__image_inline_link] = STATE(1449), + [sym__image_description] = STATE(2655), + [sym__image_description_non_empty] = STATE(2655), + [sym_hard_line_break] = STATE(465), + [sym__whitespace] = STATE(1262), + [sym__word] = STATE(1262), + [sym__soft_line_break] = STATE(1453), + [sym__text_base] = STATE(465), + [aux_sym__inline_base_repeat1] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(3134), + [sym__backslash_escape] = ACTIONS(3), + [sym_entity_reference] = ACTIONS(3894), + [sym_numeric_character_reference] = ACTIONS(3894), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(9), + [anon_sym_BANG] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_DOLLAR] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_PLUS] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_EQ] = ACTIONS(9), + [anon_sym_QMARK] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_PIPE] = ACTIONS(9), + [anon_sym_TILDE] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(9), + [sym__newline_token] = ACTIONS(19), + [aux_sym_insert_token1] = ACTIONS(21), + [aux_sym_delete_token1] = ACTIONS(23), + [aux_sym_highlight_token1] = ACTIONS(25), + [aux_sym_edit_comment_token1] = ACTIONS(27), + [anon_sym_CARET_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_CARET] = ACTIONS(31), + [sym_uri_autolink] = ACTIONS(3894), + [sym_email_autolink] = ACTIONS(3894), + [sym__whitespace_ge_2] = ACTIONS(33), + [aux_sym__whitespace_token1] = ACTIONS(35), + [sym__word_no_digit] = ACTIONS(37), + [sym__digits] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym__code_span_start] = ACTIONS(41), + [sym__emphasis_open_star] = ACTIONS(3134), + [sym__emphasis_open_underscore] = ACTIONS(3134), + [sym__strikeout_open] = ACTIONS(49), + [sym__latex_span_start] = ACTIONS(51), + [sym__single_quote_open] = ACTIONS(53), + [sym__double_quote_open] = ACTIONS(55), + [sym__superscript_open] = ACTIONS(57), + [sym__subscript_open] = ACTIONS(59), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(61), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(63), + [sym__cite_author_in_text] = ACTIONS(65), + [sym__cite_suppress_author] = ACTIONS(67), + [sym__shortcode_open_escaped] = ACTIONS(69), + [sym__shortcode_open] = ACTIONS(71), + [sym__unclosed_span] = ACTIONS(3894), + [sym__strong_emphasis_open_star] = ACTIONS(3134), + [sym__strong_emphasis_open_underscore] = ACTIONS(3134), }, [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(1117), - [sym__image_description] = STATE(2709), - [sym__image_description_non_empty] = STATE(2709), - [sym_hard_line_break] = STATE(470), - [sym__whitespace] = STATE(1115), - [sym__word] = STATE(1115), - [sym__soft_line_break] = STATE(1118), - [sym__text_base] = STATE(470), - [aux_sym__inline_base_repeat1] = STATE(470), - [sym__backslash_escape] = ACTIONS(4340), - [sym_entity_reference] = ACTIONS(4343), - [sym_numeric_character_reference] = ACTIONS(4343), - [anon_sym_LT] = ACTIONS(4346), - [anon_sym_GT] = ACTIONS(4349), - [anon_sym_BANG] = ACTIONS(4352), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_POUND] = ACTIONS(4349), - [anon_sym_DOLLAR] = ACTIONS(4349), - [anon_sym_PERCENT] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4346), - [anon_sym_SQUOTE] = ACTIONS(4349), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_PLUS] = ACTIONS(4349), - [anon_sym_COMMA] = ACTIONS(4349), - [anon_sym_DASH] = ACTIONS(4346), - [anon_sym_DOT] = ACTIONS(4346), - [anon_sym_SLASH] = ACTIONS(4349), - [anon_sym_COLON] = ACTIONS(4349), - [anon_sym_SEMI] = ACTIONS(4349), - [anon_sym_EQ] = ACTIONS(4349), - [anon_sym_QMARK] = ACTIONS(4349), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_BSLASH] = ACTIONS(4355), - [anon_sym_CARET] = ACTIONS(4346), - [anon_sym_BQUOTE] = ACTIONS(4349), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_PIPE] = ACTIONS(4349), - [anon_sym_TILDE] = ACTIONS(4349), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_RPAREN] = ACTIONS(4349), - [sym__newline_token] = ACTIONS(4361), - [aux_sym_insert_token1] = ACTIONS(4364), - [aux_sym_delete_token1] = ACTIONS(4367), - [aux_sym_highlight_token1] = ACTIONS(4370), - [aux_sym_edit_comment_token1] = ACTIONS(4373), - [anon_sym_CARET_LBRACK] = ACTIONS(4376), - [anon_sym_LBRACK_CARET] = ACTIONS(4379), - [sym_uri_autolink] = ACTIONS(4343), - [sym_email_autolink] = ACTIONS(4343), - [sym__whitespace_ge_2] = ACTIONS(4382), - [aux_sym__whitespace_token1] = ACTIONS(4385), - [sym__word_no_digit] = ACTIONS(4388), - [sym__digits] = ACTIONS(4388), - [anon_sym_DASH_DASH] = ACTIONS(4391), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4388), - [sym__code_span_start] = ACTIONS(4394), - [sym__emphasis_open_star] = ACTIONS(3506), - [sym__emphasis_open_underscore] = ACTIONS(3506), - [sym__strikeout_open] = ACTIONS(4397), - [sym__latex_span_start] = ACTIONS(4400), - [sym__single_quote_open] = ACTIONS(4403), - [sym__double_quote_open] = ACTIONS(4406), - [sym__superscript_open] = ACTIONS(4409), - [sym__subscript_open] = ACTIONS(4412), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4415), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4418), - [sym__cite_author_in_text] = ACTIONS(4421), - [sym__cite_suppress_author] = ACTIONS(4424), - [sym__shortcode_open_escaped] = ACTIONS(4427), - [sym__shortcode_open] = ACTIONS(4430), - [sym__unclosed_span] = ACTIONS(4343), - [sym__strong_emphasis_open_star] = ACTIONS(3506), - [sym__strong_emphasis_open_underscore] = ACTIONS(3506), - [sym__strong_emphasis_close_underscore] = ACTIONS(3506), + [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(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(471), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__text_base] = STATE(471), + [aux_sym__inline_base_repeat1] = STATE(471), + [sym__backslash_escape] = ACTIONS(345), + [sym_entity_reference] = ACTIONS(3896), + [sym_numeric_character_reference] = ACTIONS(3896), + [anon_sym_LT] = ACTIONS(349), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(351), + [anon_sym_POUND] = ACTIONS(351), + [anon_sym_DOLLAR] = ACTIONS(351), + [anon_sym_PERCENT] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_BSLASH] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(363), + [aux_sym_delete_token1] = ACTIONS(365), + [aux_sym_highlight_token1] = ACTIONS(367), + [aux_sym_edit_comment_token1] = ACTIONS(369), + [anon_sym_CARET_LBRACK] = ACTIONS(371), + [anon_sym_LBRACK_CARET] = ACTIONS(373), + [sym_uri_autolink] = ACTIONS(3896), + [sym_email_autolink] = ACTIONS(3896), + [sym__whitespace_ge_2] = ACTIONS(375), + [aux_sym__whitespace_token1] = ACTIONS(377), + [sym__word_no_digit] = ACTIONS(379), + [sym__digits] = ACTIONS(379), + [anon_sym_DASH_DASH] = ACTIONS(381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [sym__code_span_start] = ACTIONS(383), + [sym__emphasis_open_star] = ACTIONS(3134), + [sym__emphasis_open_underscore] = ACTIONS(3134), + [sym__emphasis_close_underscore] = ACTIONS(3134), + [sym__strikeout_open] = ACTIONS(391), + [sym__latex_span_start] = ACTIONS(393), + [sym__single_quote_open] = ACTIONS(395), + [sym__double_quote_open] = ACTIONS(397), + [sym__superscript_open] = ACTIONS(399), + [sym__subscript_open] = ACTIONS(401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(403), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(405), + [sym__cite_author_in_text] = ACTIONS(407), + [sym__cite_suppress_author] = ACTIONS(409), + [sym__shortcode_open_escaped] = ACTIONS(411), + [sym__shortcode_open] = ACTIONS(413), + [sym__unclosed_span] = ACTIONS(3896), + [sym__strong_emphasis_open_star] = ACTIONS(3134), + [sym__strong_emphasis_open_underscore] = ACTIONS(3134), }, [STATE(471)] = { - [sym_backslash_escape] = STATE(472), - [sym_commonmark_attribute] = STATE(472), - [sym_code_span] = STATE(472), - [sym_latex_span] = STATE(472), - [sym_insert] = STATE(472), - [sym_delete] = STATE(472), - [sym_highlight] = STATE(472), - [sym_edit_comment] = STATE(472), - [sym_superscript] = STATE(472), - [sym_subscript] = STATE(472), - [sym_strikeout] = STATE(472), - [sym_quoted_span] = STATE(472), - [sym_inline_note] = STATE(472), - [sym_citation] = STATE(472), - [sym_shortcode_escaped] = STATE(472), - [sym_shortcode] = STATE(472), - [sym_note_reference] = STATE(472), - [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__text_base] = STATE(472), - [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(561), - [sym_entity_reference] = ACTIONS(4433), - [sym_numeric_character_reference] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(3671), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(581), - [aux_sym_delete_token1] = ACTIONS(583), - [aux_sym_highlight_token1] = ACTIONS(585), - [aux_sym_edit_comment_token1] = ACTIONS(587), - [anon_sym_CARET_LBRACK] = ACTIONS(589), - [anon_sym_LBRACK_CARET] = ACTIONS(591), - [sym_uri_autolink] = ACTIONS(4433), - [sym_email_autolink] = ACTIONS(4433), - [sym__whitespace_ge_2] = ACTIONS(593), - [aux_sym__whitespace_token1] = ACTIONS(595), - [sym__word_no_digit] = ACTIONS(597), - [sym__digits] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_DASH_DASH_DASH] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [sym__code_span_start] = ACTIONS(601), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(609), - [sym__latex_span_start] = ACTIONS(611), - [sym__single_quote_open] = ACTIONS(613), - [sym__double_quote_open] = ACTIONS(615), - [sym__superscript_open] = ACTIONS(617), - [sym__subscript_open] = ACTIONS(619), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(623), - [sym__cite_author_in_text] = ACTIONS(625), - [sym__cite_suppress_author] = ACTIONS(627), - [sym__shortcode_open_escaped] = ACTIONS(629), - [sym__shortcode_open] = ACTIONS(631), - [sym__unclosed_span] = ACTIONS(4433), - [sym__strong_emphasis_open_star] = ACTIONS(3671), - [sym__strong_emphasis_open_underscore] = ACTIONS(3671), + [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(1358), + [sym__image_description] = STATE(2796), + [sym__image_description_non_empty] = STATE(2796), + [sym_hard_line_break] = STATE(471), + [sym__whitespace] = STATE(1355), + [sym__word] = STATE(1355), + [sym__soft_line_break] = STATE(1689), + [sym__text_base] = STATE(471), + [aux_sym__inline_base_repeat1] = STATE(471), + [sym__backslash_escape] = ACTIONS(3898), + [sym_entity_reference] = ACTIONS(3901), + [sym_numeric_character_reference] = ACTIONS(3901), + [anon_sym_LT] = ACTIONS(3904), + [anon_sym_GT] = ACTIONS(3907), + [anon_sym_BANG] = ACTIONS(3910), + [anon_sym_DQUOTE] = ACTIONS(3907), + [anon_sym_POUND] = ACTIONS(3907), + [anon_sym_DOLLAR] = ACTIONS(3907), + [anon_sym_PERCENT] = ACTIONS(3907), + [anon_sym_AMP] = ACTIONS(3904), + [anon_sym_SQUOTE] = ACTIONS(3907), + [anon_sym_PLUS] = ACTIONS(3907), + [anon_sym_COMMA] = ACTIONS(3907), + [anon_sym_DASH] = ACTIONS(3904), + [anon_sym_DOT] = ACTIONS(3904), + [anon_sym_SLASH] = ACTIONS(3907), + [anon_sym_COLON] = ACTIONS(3907), + [anon_sym_SEMI] = ACTIONS(3907), + [anon_sym_EQ] = ACTIONS(3907), + [anon_sym_QMARK] = ACTIONS(3907), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_BSLASH] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3904), + [anon_sym_BQUOTE] = ACTIONS(3907), + [anon_sym_LBRACE] = ACTIONS(3916), + [anon_sym_PIPE] = ACTIONS(3907), + [anon_sym_TILDE] = ACTIONS(3907), + [anon_sym_LPAREN] = ACTIONS(3907), + [anon_sym_RPAREN] = ACTIONS(3907), + [sym__newline_token] = ACTIONS(3919), + [aux_sym_insert_token1] = ACTIONS(3922), + [aux_sym_delete_token1] = ACTIONS(3925), + [aux_sym_highlight_token1] = ACTIONS(3928), + [aux_sym_edit_comment_token1] = ACTIONS(3931), + [anon_sym_CARET_LBRACK] = ACTIONS(3934), + [anon_sym_LBRACK_CARET] = ACTIONS(3937), + [sym_uri_autolink] = ACTIONS(3901), + [sym_email_autolink] = ACTIONS(3901), + [sym__whitespace_ge_2] = ACTIONS(3940), + [aux_sym__whitespace_token1] = ACTIONS(3943), + [sym__word_no_digit] = ACTIONS(3946), + [sym__digits] = ACTIONS(3946), + [anon_sym_DASH_DASH] = ACTIONS(3949), + [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(3092), + [sym__emphasis_open_underscore] = ACTIONS(3092), + [sym__emphasis_close_underscore] = ACTIONS(3092), + [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__subscript_open] = ACTIONS(3970), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3973), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3976), + [sym__cite_author_in_text] = ACTIONS(3979), + [sym__cite_suppress_author] = ACTIONS(3982), + [sym__shortcode_open_escaped] = ACTIONS(3985), + [sym__shortcode_open] = ACTIONS(3988), + [sym__unclosed_span] = ACTIONS(3901), + [sym__strong_emphasis_open_star] = ACTIONS(3092), + [sym__strong_emphasis_open_underscore] = ACTIONS(3092), }, [STATE(472)] = { - [sym_backslash_escape] = STATE(472), - [sym_commonmark_attribute] = STATE(472), - [sym_code_span] = STATE(472), - [sym_latex_span] = STATE(472), - [sym_insert] = STATE(472), - [sym_delete] = STATE(472), - [sym_highlight] = STATE(472), - [sym_edit_comment] = STATE(472), - [sym_superscript] = STATE(472), - [sym_subscript] = STATE(472), - [sym_strikeout] = STATE(472), - [sym_quoted_span] = STATE(472), - [sym_inline_note] = STATE(472), - [sym_citation] = STATE(472), - [sym_shortcode_escaped] = STATE(472), - [sym_shortcode] = STATE(472), - [sym_note_reference] = STATE(472), - [sym_image] = STATE(472), - [sym__image_inline_link] = STATE(1203), - [sym__image_description] = STATE(2725), - [sym__image_description_non_empty] = STATE(2725), - [sym_hard_line_break] = STATE(472), - [sym__whitespace] = STATE(1201), - [sym__word] = STATE(1201), - [sym__soft_line_break] = STATE(1204), - [sym__text_base] = STATE(472), - [aux_sym__inline_base_repeat1] = STATE(472), - [sym__backslash_escape] = ACTIONS(4435), - [sym_entity_reference] = ACTIONS(4438), - [sym_numeric_character_reference] = ACTIONS(4438), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_DQUOTE] = ACTIONS(4444), - [anon_sym_POUND] = ACTIONS(4444), - [anon_sym_DOLLAR] = ACTIONS(4444), - [anon_sym_PERCENT] = ACTIONS(4444), - [anon_sym_AMP] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4444), - [anon_sym_STAR] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_DOT] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4444), - [anon_sym_COLON] = ACTIONS(4444), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_EQ] = ACTIONS(4444), - [anon_sym_QMARK] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_BSLASH] = ACTIONS(4450), - [anon_sym_RBRACK] = ACTIONS(3506), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym_BQUOTE] = ACTIONS(4444), - [anon_sym_LBRACE] = ACTIONS(4453), - [anon_sym_PIPE] = ACTIONS(4444), - [anon_sym_TILDE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_RPAREN] = ACTIONS(4444), - [sym__newline_token] = ACTIONS(4456), - [aux_sym_insert_token1] = ACTIONS(4459), - [aux_sym_delete_token1] = ACTIONS(4462), - [aux_sym_highlight_token1] = ACTIONS(4465), - [aux_sym_edit_comment_token1] = ACTIONS(4468), - [anon_sym_CARET_LBRACK] = ACTIONS(4471), - [anon_sym_LBRACK_CARET] = ACTIONS(4474), - [sym_uri_autolink] = ACTIONS(4438), - [sym_email_autolink] = ACTIONS(4438), - [sym__whitespace_ge_2] = ACTIONS(4477), - [aux_sym__whitespace_token1] = ACTIONS(4480), - [sym__word_no_digit] = ACTIONS(4483), - [sym__digits] = ACTIONS(4483), - [anon_sym_DASH_DASH] = ACTIONS(4486), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4483), - [sym__code_span_start] = ACTIONS(4489), - [sym__emphasis_open_star] = ACTIONS(3506), - [sym__emphasis_open_underscore] = ACTIONS(3506), - [sym__strikeout_open] = ACTIONS(4492), - [sym__latex_span_start] = ACTIONS(4495), - [sym__single_quote_open] = ACTIONS(4498), - [sym__double_quote_open] = ACTIONS(4501), - [sym__superscript_open] = ACTIONS(4504), - [sym__subscript_open] = ACTIONS(4507), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4510), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4513), - [sym__cite_author_in_text] = ACTIONS(4516), - [sym__cite_suppress_author] = ACTIONS(4519), - [sym__shortcode_open_escaped] = ACTIONS(4522), - [sym__shortcode_open] = ACTIONS(4525), - [sym__unclosed_span] = ACTIONS(4438), - [sym__strong_emphasis_open_star] = ACTIONS(3506), - [sym__strong_emphasis_open_underscore] = ACTIONS(3506), + [sym_backslash_escape] = STATE(473), + [sym_commonmark_attribute] = STATE(473), + [sym_code_span] = STATE(473), + [sym_latex_span] = STATE(473), + [sym_insert] = STATE(473), + [sym_delete] = STATE(473), + [sym_highlight] = STATE(473), + [sym_edit_comment] = STATE(473), + [sym_superscript] = STATE(473), + [sym_subscript] = STATE(473), + [sym_strikeout] = STATE(473), + [sym_quoted_span] = STATE(473), + [sym_inline_note] = STATE(473), + [sym_citation] = STATE(473), + [sym_shortcode_escaped] = STATE(473), + [sym_shortcode] = STATE(473), + [sym_note_reference] = STATE(473), + [sym_image] = STATE(473), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(473), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__text_base] = STATE(473), + [aux_sym__inline_base_repeat1] = STATE(473), + [sym__backslash_escape] = ACTIONS(499), + [sym_entity_reference] = ACTIONS(3991), + [sym_numeric_character_reference] = ACTIONS(3991), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(505), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_SQUOTE] = ACTIONS(505), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_COMMA] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_COLON] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_EQ] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_BSLASH] = ACTIONS(511), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(505), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(517), + [aux_sym_delete_token1] = ACTIONS(519), + [aux_sym_highlight_token1] = ACTIONS(521), + [aux_sym_edit_comment_token1] = ACTIONS(523), + [anon_sym_CARET_LBRACK] = ACTIONS(525), + [anon_sym_LBRACK_CARET] = ACTIONS(527), + [sym_uri_autolink] = ACTIONS(3991), + [sym_email_autolink] = ACTIONS(3991), + [sym__whitespace_ge_2] = ACTIONS(529), + [aux_sym__whitespace_token1] = ACTIONS(531), + [sym__word_no_digit] = ACTIONS(533), + [sym__digits] = ACTIONS(533), + [anon_sym_DASH_DASH] = ACTIONS(535), + [anon_sym_DASH_DASH_DASH] = ACTIONS(533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(533), + [sym__code_span_start] = ACTIONS(537), + [sym__emphasis_open_star] = ACTIONS(3134), + [sym__emphasis_open_underscore] = ACTIONS(3134), + [sym__strikeout_open] = ACTIONS(543), + [sym__strikeout_close] = ACTIONS(3134), + [sym__latex_span_start] = ACTIONS(547), + [sym__single_quote_open] = ACTIONS(549), + [sym__double_quote_open] = ACTIONS(551), + [sym__superscript_open] = ACTIONS(553), + [sym__subscript_open] = ACTIONS(555), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(557), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(559), + [sym__cite_author_in_text] = ACTIONS(561), + [sym__cite_suppress_author] = ACTIONS(563), + [sym__shortcode_open_escaped] = ACTIONS(565), + [sym__shortcode_open] = ACTIONS(567), + [sym__unclosed_span] = ACTIONS(3991), + [sym__strong_emphasis_open_star] = ACTIONS(3134), + [sym__strong_emphasis_open_underscore] = ACTIONS(3134), }, [STATE(473)] = { - [sym_backslash_escape] = STATE(452), - [sym_commonmark_attribute] = STATE(452), - [sym_code_span] = STATE(452), - [sym_latex_span] = STATE(452), - [sym_insert] = STATE(452), - [sym_delete] = STATE(452), - [sym_highlight] = STATE(452), - [sym_edit_comment] = STATE(452), - [sym_superscript] = STATE(452), - [sym_subscript] = STATE(452), - [sym_strikeout] = STATE(452), - [sym_quoted_span] = STATE(452), - [sym_inline_note] = STATE(452), - [sym_citation] = STATE(452), - [sym_shortcode_escaped] = STATE(452), - [sym_shortcode] = STATE(452), - [sym_note_reference] = STATE(452), - [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(1300), - [sym__image_description] = STATE(2741), - [sym__image_description_non_empty] = STATE(2741), - [sym_hard_line_break] = STATE(452), - [sym__whitespace] = STATE(1297), - [sym__word] = STATE(1297), - [sym__soft_line_break] = STATE(1301), - [sym__text_base] = STATE(452), - [aux_sym__inline_base_repeat1] = STATE(452), - [sym__backslash_escape] = ACTIONS(1279), - [sym_entity_reference] = ACTIONS(4528), - [sym_numeric_character_reference] = ACTIONS(4528), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(1297), - [aux_sym_insert_token2] = ACTIONS(3671), - [aux_sym_delete_token1] = ACTIONS(1301), - [aux_sym_highlight_token1] = ACTIONS(1303), - [aux_sym_edit_comment_token1] = ACTIONS(1305), - [anon_sym_CARET_LBRACK] = ACTIONS(1307), - [anon_sym_LBRACK_CARET] = ACTIONS(1309), - [sym_uri_autolink] = ACTIONS(4528), - [sym_email_autolink] = ACTIONS(4528), - [sym__whitespace_ge_2] = ACTIONS(1311), - [aux_sym__whitespace_token1] = ACTIONS(1313), - [sym__word_no_digit] = ACTIONS(1315), - [sym__digits] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1315), - [sym__code_span_start] = ACTIONS(1319), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(1325), - [sym__latex_span_start] = ACTIONS(1327), - [sym__single_quote_open] = ACTIONS(1329), - [sym__double_quote_open] = ACTIONS(1331), - [sym__superscript_open] = ACTIONS(1333), - [sym__subscript_open] = ACTIONS(1335), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1339), - [sym__cite_author_in_text] = ACTIONS(1341), - [sym__cite_suppress_author] = ACTIONS(1343), - [sym__shortcode_open_escaped] = ACTIONS(1345), - [sym__shortcode_open] = ACTIONS(1347), - [sym__unclosed_span] = ACTIONS(4528), - [sym__strong_emphasis_open_star] = ACTIONS(3671), - [sym__strong_emphasis_open_underscore] = ACTIONS(3671), + [sym_backslash_escape] = STATE(473), + [sym_commonmark_attribute] = STATE(473), + [sym_code_span] = STATE(473), + [sym_latex_span] = STATE(473), + [sym_insert] = STATE(473), + [sym_delete] = STATE(473), + [sym_highlight] = STATE(473), + [sym_edit_comment] = STATE(473), + [sym_superscript] = STATE(473), + [sym_subscript] = STATE(473), + [sym_strikeout] = STATE(473), + [sym_quoted_span] = STATE(473), + [sym_inline_note] = STATE(473), + [sym_citation] = STATE(473), + [sym_shortcode_escaped] = STATE(473), + [sym_shortcode] = STATE(473), + [sym_note_reference] = STATE(473), + [sym_image] = STATE(473), + [sym__image_inline_link] = STATE(1454), + [sym__image_description] = STATE(2690), + [sym__image_description_non_empty] = STATE(2690), + [sym_hard_line_break] = STATE(473), + [sym__whitespace] = STATE(1452), + [sym__word] = STATE(1452), + [sym__soft_line_break] = STATE(1455), + [sym__text_base] = STATE(473), + [aux_sym__inline_base_repeat1] = STATE(473), + [sym__backslash_escape] = ACTIONS(3993), + [sym_entity_reference] = ACTIONS(3996), + [sym_numeric_character_reference] = ACTIONS(3996), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4002), + [anon_sym_DOLLAR] = ACTIONS(4002), + [anon_sym_PERCENT] = ACTIONS(4002), + [anon_sym_AMP] = ACTIONS(3999), + [anon_sym_SQUOTE] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(3999), + [anon_sym_DOT] = ACTIONS(3999), + [anon_sym_SLASH] = ACTIONS(4002), + [anon_sym_COLON] = ACTIONS(4002), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_BSLASH] = ACTIONS(4008), + [anon_sym_CARET] = ACTIONS(3999), + [anon_sym_BQUOTE] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4011), + [anon_sym_PIPE] = ACTIONS(4002), + [anon_sym_TILDE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [sym__newline_token] = ACTIONS(4014), + [aux_sym_insert_token1] = ACTIONS(4017), + [aux_sym_delete_token1] = ACTIONS(4020), + [aux_sym_highlight_token1] = ACTIONS(4023), + [aux_sym_edit_comment_token1] = ACTIONS(4026), + [anon_sym_CARET_LBRACK] = ACTIONS(4029), + [anon_sym_LBRACK_CARET] = ACTIONS(4032), + [sym_uri_autolink] = ACTIONS(3996), + [sym_email_autolink] = ACTIONS(3996), + [sym__whitespace_ge_2] = ACTIONS(4035), + [aux_sym__whitespace_token1] = ACTIONS(4038), + [sym__word_no_digit] = ACTIONS(4041), + [sym__digits] = ACTIONS(4041), + [anon_sym_DASH_DASH] = ACTIONS(4044), + [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(3092), + [sym__emphasis_open_underscore] = ACTIONS(3092), + [sym__strikeout_open] = ACTIONS(4050), + [sym__strikeout_close] = ACTIONS(3092), + [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__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), + [sym__cite_suppress_author] = ACTIONS(4077), + [sym__shortcode_open_escaped] = ACTIONS(4080), + [sym__shortcode_open] = ACTIONS(4083), + [sym__unclosed_span] = ACTIONS(3996), + [sym__strong_emphasis_open_star] = ACTIONS(3092), + [sym__strong_emphasis_open_underscore] = ACTIONS(3092), }, [STATE(474)] = { [sym_backslash_escape] = STATE(475), [sym_commonmark_attribute] = STATE(475), [sym_code_span] = STATE(475), - [sym_latex_span] = STATE(475), - [sym_insert] = STATE(475), - [sym_delete] = STATE(475), - [sym_highlight] = STATE(475), - [sym_edit_comment] = STATE(475), - [sym_superscript] = STATE(475), - [sym_subscript] = STATE(475), - [sym_strikeout] = STATE(475), - [sym_quoted_span] = STATE(475), - [sym_inline_note] = STATE(475), - [sym_citation] = STATE(475), - [sym_shortcode_escaped] = STATE(475), - [sym_shortcode] = STATE(475), - [sym_note_reference] = STATE(475), - [sym_image] = STATE(475), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(475), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__text_base] = STATE(475), - [aux_sym__inline_base_repeat1] = STATE(475), - [sym__backslash_escape] = ACTIONS(1473), - [sym_entity_reference] = ACTIONS(4530), - [sym_numeric_character_reference] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_DOLLAR] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1479), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(1491), - [aux_sym_delete_token1] = ACTIONS(1493), - [aux_sym_highlight_token1] = ACTIONS(1495), - [aux_sym_edit_comment_token1] = ACTIONS(1497), - [anon_sym_CARET_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACK_CARET] = ACTIONS(1501), - [sym_uri_autolink] = ACTIONS(4530), - [sym_email_autolink] = ACTIONS(4530), - [sym__whitespace_ge_2] = ACTIONS(1503), - [aux_sym__whitespace_token1] = ACTIONS(1505), - [sym__word_no_digit] = ACTIONS(1507), - [sym__digits] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym__code_span_start] = ACTIONS(1511), - [sym__emphasis_open_star] = ACTIONS(3671), - [sym__emphasis_open_underscore] = ACTIONS(3671), - [sym__emphasis_close_star] = ACTIONS(3671), - [sym__strikeout_open] = ACTIONS(1519), - [sym__latex_span_start] = ACTIONS(1521), - [sym__single_quote_open] = ACTIONS(1523), - [sym__double_quote_open] = ACTIONS(1525), - [sym__superscript_open] = ACTIONS(1527), - [sym__subscript_open] = ACTIONS(1529), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1531), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1533), - [sym__cite_author_in_text] = ACTIONS(1535), - [sym__cite_suppress_author] = ACTIONS(1537), - [sym__shortcode_open_escaped] = ACTIONS(1539), - [sym__shortcode_open] = ACTIONS(1541), - [sym__unclosed_span] = ACTIONS(4530), - [sym__strong_emphasis_open_star] = ACTIONS(3671), - [sym__strong_emphasis_open_underscore] = ACTIONS(3671), - }, - [STATE(475)] = { - [sym_backslash_escape] = STATE(475), - [sym_commonmark_attribute] = STATE(475), - [sym_code_span] = STATE(475), - [sym_latex_span] = STATE(475), - [sym_insert] = STATE(475), - [sym_delete] = STATE(475), - [sym_highlight] = STATE(475), - [sym_edit_comment] = STATE(475), - [sym_superscript] = STATE(475), - [sym_subscript] = STATE(475), - [sym_strikeout] = STATE(475), - [sym_quoted_span] = STATE(475), - [sym_inline_note] = STATE(475), - [sym_citation] = STATE(475), - [sym_shortcode_escaped] = STATE(475), - [sym_shortcode] = STATE(475), - [sym_note_reference] = STATE(475), - [sym_image] = STATE(475), - [sym__image_inline_link] = STATE(1199), - [sym__image_description] = STATE(2698), - [sym__image_description_non_empty] = STATE(2698), - [sym_hard_line_break] = STATE(475), - [sym__whitespace] = STATE(1198), - [sym__word] = STATE(1198), - [sym__soft_line_break] = STATE(1200), - [sym__text_base] = STATE(475), - [aux_sym__inline_base_repeat1] = STATE(475), - [sym__backslash_escape] = ACTIONS(4532), - [sym_entity_reference] = ACTIONS(4535), - [sym_numeric_character_reference] = ACTIONS(4535), - [anon_sym_LT] = ACTIONS(4538), - [anon_sym_GT] = ACTIONS(4541), - [anon_sym_BANG] = ACTIONS(4544), - [anon_sym_DQUOTE] = ACTIONS(4541), - [anon_sym_POUND] = ACTIONS(4541), - [anon_sym_DOLLAR] = ACTIONS(4541), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_AMP] = ACTIONS(4538), - [anon_sym_SQUOTE] = ACTIONS(4541), - [anon_sym_STAR] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(4541), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_DOT] = ACTIONS(4538), - [anon_sym_SLASH] = ACTIONS(4541), - [anon_sym_COLON] = ACTIONS(4541), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_EQ] = ACTIONS(4541), - [anon_sym_QMARK] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_BSLASH] = ACTIONS(4547), - [anon_sym_CARET] = ACTIONS(4538), - [anon_sym_BQUOTE] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(4550), - [anon_sym_PIPE] = ACTIONS(4541), - [anon_sym_TILDE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_RPAREN] = ACTIONS(4541), - [sym__newline_token] = ACTIONS(4553), - [aux_sym_insert_token1] = ACTIONS(4556), - [aux_sym_delete_token1] = ACTIONS(4559), - [aux_sym_highlight_token1] = ACTIONS(4562), - [aux_sym_edit_comment_token1] = ACTIONS(4565), - [anon_sym_CARET_LBRACK] = ACTIONS(4568), - [anon_sym_LBRACK_CARET] = ACTIONS(4571), - [sym_uri_autolink] = ACTIONS(4535), - [sym_email_autolink] = ACTIONS(4535), - [sym__whitespace_ge_2] = ACTIONS(4574), - [aux_sym__whitespace_token1] = ACTIONS(4577), - [sym__word_no_digit] = ACTIONS(4580), - [sym__digits] = ACTIONS(4580), - [anon_sym_DASH_DASH] = ACTIONS(4583), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4580), - [sym__code_span_start] = ACTIONS(4586), - [sym__emphasis_open_star] = ACTIONS(3506), - [sym__emphasis_open_underscore] = ACTIONS(3506), - [sym__emphasis_close_star] = ACTIONS(3506), - [sym__strikeout_open] = ACTIONS(4589), - [sym__latex_span_start] = ACTIONS(4592), - [sym__single_quote_open] = ACTIONS(4595), - [sym__double_quote_open] = ACTIONS(4598), - [sym__superscript_open] = ACTIONS(4601), - [sym__subscript_open] = ACTIONS(4604), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4607), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4610), - [sym__cite_author_in_text] = ACTIONS(4613), - [sym__cite_suppress_author] = ACTIONS(4616), - [sym__shortcode_open_escaped] = ACTIONS(4619), - [sym__shortcode_open] = ACTIONS(4622), - [sym__unclosed_span] = ACTIONS(4535), - [sym__strong_emphasis_open_star] = ACTIONS(3506), - [sym__strong_emphasis_open_underscore] = ACTIONS(3506), - }, - [STATE(476)] = { - [sym__qmd_attribute] = STATE(954), - [sym_raw_attribute] = STATE(954), - [sym_commonmark_attribute] = STATE(954), - [sym_language_attribute] = STATE(954), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__superscript_close] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), - }, - [STATE(477)] = { - [sym__qmd_attribute] = STATE(1413), - [sym_raw_attribute] = STATE(1413), - [sym_commonmark_attribute] = STATE(1413), - [sym_language_attribute] = STATE(1413), - [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_STAR] = 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(4635), - [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(478)] = { - [sym__qmd_attribute] = STATE(1422), - [sym_raw_attribute] = STATE(1422), - [sym_commonmark_attribute] = STATE(1422), - [sym_language_attribute] = STATE(1422), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__emphasis_close_star] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), - }, - [STATE(479)] = { - [sym__qmd_attribute] = STATE(1490), - [sym_raw_attribute] = STATE(1490), - [sym_commonmark_attribute] = STATE(1490), - [sym_language_attribute] = STATE(1490), - [sym__backslash_escape] = ACTIONS(4641), - [sym_entity_reference] = ACTIONS(4641), - [sym_numeric_character_reference] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_BSLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [sym__newline_token] = ACTIONS(4641), - [aux_sym_insert_token1] = ACTIONS(4641), - [aux_sym_delete_token1] = ACTIONS(4641), - [aux_sym_highlight_token1] = ACTIONS(4641), - [aux_sym_edit_comment_token1] = ACTIONS(4641), - [anon_sym_CARET_LBRACK] = ACTIONS(4641), - [anon_sym_LBRACK_CARET] = ACTIONS(4641), - [sym_uri_autolink] = ACTIONS(4641), - [sym_email_autolink] = ACTIONS(4641), - [sym__whitespace_ge_2] = ACTIONS(4641), - [aux_sym__whitespace_token1] = ACTIONS(4643), - [sym__word_no_digit] = ACTIONS(4641), - [sym__digits] = ACTIONS(4641), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4641), - [sym__code_span_start] = ACTIONS(4641), - [sym__emphasis_open_star] = ACTIONS(4641), - [sym__emphasis_open_underscore] = ACTIONS(4641), - [sym__emphasis_close_underscore] = ACTIONS(4641), - [sym__strikeout_open] = ACTIONS(4641), - [sym__latex_span_start] = ACTIONS(4641), - [sym__single_quote_open] = ACTIONS(4641), - [sym__double_quote_open] = ACTIONS(4641), - [sym__superscript_open] = ACTIONS(4641), - [sym__subscript_open] = ACTIONS(4641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4641), - [sym__cite_author_in_text] = ACTIONS(4641), - [sym__cite_suppress_author] = ACTIONS(4641), - [sym__shortcode_open_escaped] = ACTIONS(4641), - [sym__shortcode_open] = ACTIONS(4641), - [sym__unclosed_span] = ACTIONS(4641), - [sym__strong_emphasis_open_star] = ACTIONS(4641), - [sym__strong_emphasis_open_underscore] = ACTIONS(4641), - }, - [STATE(480)] = { - [sym__qmd_attribute] = STATE(842), - [sym_raw_attribute] = STATE(842), - [sym_commonmark_attribute] = STATE(842), - [sym_language_attribute] = STATE(842), - [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_STAR] = 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(4651), - [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_latex_span] = STATE(475), + [sym_insert] = STATE(475), + [sym_delete] = STATE(475), + [sym_highlight] = STATE(475), + [sym_edit_comment] = STATE(475), + [sym_superscript] = STATE(475), + [sym_subscript] = STATE(475), + [sym_strikeout] = STATE(475), + [sym_quoted_span] = STATE(475), + [sym_inline_note] = STATE(475), + [sym_citation] = STATE(475), + [sym_shortcode_escaped] = STATE(475), + [sym_shortcode] = STATE(475), + [sym_note_reference] = STATE(475), + [sym_image] = STATE(475), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), + [sym_hard_line_break] = STATE(475), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__text_base] = STATE(475), + [aux_sym__inline_base_repeat1] = STATE(475), + [sym__backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(4086), + [sym_numeric_character_reference] = ACTIONS(4086), + [anon_sym_LT] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_BSLASH] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(739), + [aux_sym_delete_token1] = ACTIONS(741), + [aux_sym_highlight_token1] = ACTIONS(743), + [aux_sym_edit_comment_token1] = ACTIONS(745), + [anon_sym_CARET_LBRACK] = ACTIONS(747), + [anon_sym_LBRACK_CARET] = ACTIONS(749), + [sym_uri_autolink] = ACTIONS(4086), + [sym_email_autolink] = ACTIONS(4086), + [sym__whitespace_ge_2] = ACTIONS(751), + [aux_sym__whitespace_token1] = ACTIONS(753), + [sym__word_no_digit] = ACTIONS(755), + [sym__digits] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_DASH_DASH_DASH] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(3134), + [sym__emphasis_open_underscore] = ACTIONS(3134), + [sym__strikeout_open] = ACTIONS(765), + [sym__latex_span_start] = ACTIONS(767), + [sym__single_quote_open] = ACTIONS(769), + [sym__double_quote_open] = ACTIONS(771), + [sym__superscript_open] = ACTIONS(773), + [sym__subscript_open] = ACTIONS(775), + [sym__subscript_close] = ACTIONS(3134), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(779), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(781), + [sym__cite_author_in_text] = ACTIONS(783), + [sym__cite_suppress_author] = ACTIONS(785), + [sym__shortcode_open_escaped] = ACTIONS(787), + [sym__shortcode_open] = ACTIONS(789), + [sym__unclosed_span] = ACTIONS(4086), + [sym__strong_emphasis_open_star] = ACTIONS(3134), + [sym__strong_emphasis_open_underscore] = ACTIONS(3134), + }, + [STATE(475)] = { + [sym_backslash_escape] = STATE(475), + [sym_commonmark_attribute] = STATE(475), + [sym_code_span] = STATE(475), + [sym_latex_span] = STATE(475), + [sym_insert] = STATE(475), + [sym_delete] = STATE(475), + [sym_highlight] = STATE(475), + [sym_edit_comment] = STATE(475), + [sym_superscript] = STATE(475), + [sym_subscript] = STATE(475), + [sym_strikeout] = STATE(475), + [sym_quoted_span] = STATE(475), + [sym_inline_note] = STATE(475), + [sym_citation] = STATE(475), + [sym_shortcode_escaped] = STATE(475), + [sym_shortcode] = STATE(475), + [sym_note_reference] = STATE(475), + [sym_image] = STATE(475), + [sym__image_inline_link] = STATE(842), + [sym__image_description] = STATE(2669), + [sym__image_description_non_empty] = STATE(2669), + [sym_hard_line_break] = STATE(475), + [sym__whitespace] = STATE(839), + [sym__word] = STATE(839), + [sym__soft_line_break] = STATE(843), + [sym__text_base] = STATE(475), + [aux_sym__inline_base_repeat1] = STATE(475), + [sym__backslash_escape] = ACTIONS(4088), + [sym_entity_reference] = ACTIONS(4091), + [sym_numeric_character_reference] = ACTIONS(4091), + [anon_sym_LT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_BANG] = ACTIONS(4100), + [anon_sym_DQUOTE] = ACTIONS(4097), + [anon_sym_POUND] = ACTIONS(4097), + [anon_sym_DOLLAR] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_AMP] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4097), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_COMMA] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4094), + [anon_sym_DOT] = ACTIONS(4094), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_COLON] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(4097), + [anon_sym_QMARK] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_BSLASH] = ACTIONS(4103), + [anon_sym_CARET] = ACTIONS(4094), + [anon_sym_BQUOTE] = ACTIONS(4097), + [anon_sym_LBRACE] = ACTIONS(4106), + [anon_sym_PIPE] = ACTIONS(4097), + [anon_sym_TILDE] = ACTIONS(4097), + [anon_sym_LPAREN] = ACTIONS(4097), + [anon_sym_RPAREN] = ACTIONS(4097), + [sym__newline_token] = ACTIONS(4109), + [aux_sym_insert_token1] = ACTIONS(4112), + [aux_sym_delete_token1] = ACTIONS(4115), + [aux_sym_highlight_token1] = ACTIONS(4118), + [aux_sym_edit_comment_token1] = ACTIONS(4121), + [anon_sym_CARET_LBRACK] = ACTIONS(4124), + [anon_sym_LBRACK_CARET] = ACTIONS(4127), + [sym_uri_autolink] = ACTIONS(4091), + [sym_email_autolink] = ACTIONS(4091), + [sym__whitespace_ge_2] = ACTIONS(4130), + [aux_sym__whitespace_token1] = ACTIONS(4133), + [sym__word_no_digit] = ACTIONS(4136), + [sym__digits] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4139), + [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(3092), + [sym__emphasis_open_underscore] = ACTIONS(3092), + [sym__strikeout_open] = ACTIONS(4145), + [sym__latex_span_start] = ACTIONS(4148), + [sym__single_quote_open] = ACTIONS(4151), + [sym__double_quote_open] = ACTIONS(4154), + [sym__superscript_open] = ACTIONS(4157), + [sym__subscript_open] = ACTIONS(4160), + [sym__subscript_close] = ACTIONS(3092), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4163), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4166), + [sym__cite_author_in_text] = ACTIONS(4169), + [sym__cite_suppress_author] = ACTIONS(4172), + [sym__shortcode_open_escaped] = ACTIONS(4175), + [sym__shortcode_open] = ACTIONS(4178), + [sym__unclosed_span] = ACTIONS(4091), + [sym__strong_emphasis_open_star] = ACTIONS(3092), + [sym__strong_emphasis_open_underscore] = ACTIONS(3092), + }, + [STATE(476)] = { + [sym__qmd_attribute] = STATE(1610), + [sym_raw_attribute] = STATE(1610), + [sym_commonmark_attribute] = STATE(1610), + [sym_language_attribute] = STATE(1610), + [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(4185), + [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(477)] = { + [sym__qmd_attribute] = STATE(925), + [sym_raw_attribute] = STATE(925), + [sym_commonmark_attribute] = STATE(925), + [sym_language_attribute] = STATE(925), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__subscript_close] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), + }, + [STATE(478)] = { + [sym__qmd_attribute] = STATE(927), + [sym_raw_attribute] = STATE(927), + [sym_commonmark_attribute] = STATE(927), + [sym_language_attribute] = STATE(927), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__subscript_close] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), + }, + [STATE(479)] = { + [sym__qmd_attribute] = STATE(929), + [sym_raw_attribute] = STATE(929), + [sym_commonmark_attribute] = STATE(929), + [sym_language_attribute] = STATE(929), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__subscript_close] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), + }, + [STATE(480)] = { + [sym__qmd_attribute] = STATE(930), + [sym_raw_attribute] = STATE(930), + [sym_commonmark_attribute] = STATE(930), + [sym_language_attribute] = STATE(930), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__subscript_close] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(481)] = { - [sym__qmd_attribute] = STATE(1498), - [sym_raw_attribute] = STATE(1498), - [sym_commonmark_attribute] = STATE(1498), - [sym_language_attribute] = STATE(1498), - [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_STAR] = 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(4645), - [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), + [sym__qmd_attribute] = STATE(961), + [sym_raw_attribute] = STATE(961), + [sym_commonmark_attribute] = STATE(961), + [sym_language_attribute] = STATE(961), + [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(4209), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4211), + [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_close_star] = ACTIONS(4205), + [sym__strong_emphasis_open_underscore] = ACTIONS(4205), }, [STATE(482)] = { - [sym__qmd_attribute] = STATE(1499), - [sym_raw_attribute] = STATE(1499), - [sym_commonmark_attribute] = STATE(1499), - [sym_language_attribute] = STATE(1499), - [sym__backslash_escape] = ACTIONS(4653), - [sym_entity_reference] = ACTIONS(4653), - [sym_numeric_character_reference] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4655), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4655), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4655), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_BSLASH] = ACTIONS(4655), - [anon_sym_CARET] = ACTIONS(4655), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym_RPAREN] = ACTIONS(4653), - [sym__newline_token] = ACTIONS(4653), - [aux_sym_insert_token1] = ACTIONS(4653), - [aux_sym_delete_token1] = ACTIONS(4653), - [aux_sym_highlight_token1] = ACTIONS(4653), - [aux_sym_edit_comment_token1] = ACTIONS(4653), - [anon_sym_CARET_LBRACK] = ACTIONS(4653), - [anon_sym_LBRACK_CARET] = ACTIONS(4653), - [sym_uri_autolink] = ACTIONS(4653), - [sym_email_autolink] = ACTIONS(4653), - [sym__whitespace_ge_2] = ACTIONS(4653), - [aux_sym__whitespace_token1] = ACTIONS(4655), - [sym__word_no_digit] = ACTIONS(4653), - [sym__digits] = ACTIONS(4653), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [sym__code_span_start] = ACTIONS(4653), - [sym__emphasis_open_star] = ACTIONS(4653), - [sym__emphasis_open_underscore] = ACTIONS(4653), - [sym__emphasis_close_underscore] = ACTIONS(4653), - [sym__strikeout_open] = ACTIONS(4653), - [sym__latex_span_start] = ACTIONS(4653), - [sym__single_quote_open] = ACTIONS(4653), - [sym__double_quote_open] = ACTIONS(4653), - [sym__superscript_open] = ACTIONS(4653), - [sym__subscript_open] = ACTIONS(4653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4653), - [sym__cite_author_in_text] = ACTIONS(4653), - [sym__cite_suppress_author] = ACTIONS(4653), - [sym__shortcode_open_escaped] = ACTIONS(4653), - [sym__shortcode_open] = ACTIONS(4653), - [sym__unclosed_span] = ACTIONS(4653), - [sym__strong_emphasis_open_star] = ACTIONS(4653), - [sym__strong_emphasis_open_underscore] = ACTIONS(4653), + [sym__qmd_attribute] = STATE(962), + [sym_raw_attribute] = STATE(962), + [sym_commonmark_attribute] = STATE(962), + [sym_language_attribute] = STATE(962), + [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(4209), + [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__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_close_star] = ACTIONS(4213), + [sym__strong_emphasis_open_underscore] = ACTIONS(4213), }, [STATE(483)] = { - [sym__qmd_attribute] = STATE(1506), - [sym_raw_attribute] = STATE(1506), - [sym_commonmark_attribute] = STATE(1506), - [sym_language_attribute] = STATE(1506), - [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_STAR] = 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(4645), - [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), + [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), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__single_quote_close] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(484)] = { - [sym__qmd_attribute] = STATE(1508), - [sym_raw_attribute] = STATE(1508), - [sym_commonmark_attribute] = STATE(1508), - [sym_language_attribute] = STATE(1508), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__emphasis_close_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [sym__qmd_attribute] = STATE(964), + [sym_raw_attribute] = STATE(964), + [sym_commonmark_attribute] = STATE(964), + [sym_language_attribute] = STATE(964), + [sym__backslash_escape] = ACTIONS(4219), + [sym_entity_reference] = ACTIONS(4219), + [sym_numeric_character_reference] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4221), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_POUND] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_COLON] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_BSLASH] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [sym__newline_token] = ACTIONS(4219), + [aux_sym_insert_token1] = ACTIONS(4219), + [aux_sym_delete_token1] = ACTIONS(4219), + [aux_sym_highlight_token1] = ACTIONS(4219), + [aux_sym_edit_comment_token1] = ACTIONS(4219), + [anon_sym_CARET_LBRACK] = ACTIONS(4219), + [anon_sym_LBRACK_CARET] = ACTIONS(4219), + [sym_uri_autolink] = ACTIONS(4219), + [sym_email_autolink] = ACTIONS(4219), + [sym__whitespace_ge_2] = ACTIONS(4219), + [aux_sym__whitespace_token1] = ACTIONS(4221), + [sym__word_no_digit] = ACTIONS(4219), + [sym__digits] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [sym__code_span_start] = ACTIONS(4219), + [sym__emphasis_open_star] = ACTIONS(4219), + [sym__emphasis_open_underscore] = ACTIONS(4219), + [sym__strikeout_open] = ACTIONS(4219), + [sym__latex_span_start] = ACTIONS(4219), + [sym__single_quote_open] = ACTIONS(4219), + [sym__double_quote_open] = ACTIONS(4219), + [sym__superscript_open] = ACTIONS(4219), + [sym__subscript_open] = ACTIONS(4219), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4219), + [sym__cite_author_in_text] = ACTIONS(4219), + [sym__cite_suppress_author] = ACTIONS(4219), + [sym__shortcode_open_escaped] = ACTIONS(4219), + [sym__shortcode_open] = ACTIONS(4219), + [sym__unclosed_span] = ACTIONS(4219), + [sym__strong_emphasis_open_star] = ACTIONS(4219), + [sym__strong_emphasis_close_star] = ACTIONS(4219), + [sym__strong_emphasis_open_underscore] = ACTIONS(4219), }, [STATE(485)] = { - [sym__qmd_attribute] = STATE(1514), - [sym_raw_attribute] = STATE(1514), - [sym_commonmark_attribute] = STATE(1514), - [sym_language_attribute] = STATE(1514), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__emphasis_close_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [sym__qmd_attribute] = STATE(977), + [sym_raw_attribute] = STATE(977), + [sym_commonmark_attribute] = STATE(977), + [sym_language_attribute] = STATE(977), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_close_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(486)] = { - [sym__qmd_attribute] = STATE(1515), - [sym_raw_attribute] = STATE(1515), - [sym_commonmark_attribute] = STATE(1515), - [sym_language_attribute] = STATE(1515), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__emphasis_close_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [sym__qmd_attribute] = STATE(989), + [sym_raw_attribute] = STATE(989), + [sym_commonmark_attribute] = STATE(989), + [sym_language_attribute] = STATE(989), + [sym__backslash_escape] = ACTIONS(4227), + [sym_entity_reference] = ACTIONS(4227), + [sym_numeric_character_reference] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_BSLASH] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_BQUOTE] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [sym__newline_token] = ACTIONS(4227), + [aux_sym_insert_token1] = ACTIONS(4227), + [aux_sym_delete_token1] = ACTIONS(4227), + [aux_sym_highlight_token1] = ACTIONS(4227), + [aux_sym_edit_comment_token1] = ACTIONS(4227), + [anon_sym_CARET_LBRACK] = ACTIONS(4227), + [anon_sym_LBRACK_CARET] = ACTIONS(4227), + [sym_uri_autolink] = ACTIONS(4227), + [sym_email_autolink] = ACTIONS(4227), + [sym__whitespace_ge_2] = ACTIONS(4227), + [aux_sym__whitespace_token1] = ACTIONS(4229), + [sym__word_no_digit] = ACTIONS(4227), + [sym__digits] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [sym__code_span_start] = ACTIONS(4227), + [sym__emphasis_open_star] = ACTIONS(4227), + [sym__emphasis_open_underscore] = ACTIONS(4227), + [sym__strikeout_open] = ACTIONS(4227), + [sym__latex_span_start] = ACTIONS(4227), + [sym__single_quote_open] = ACTIONS(4227), + [sym__double_quote_open] = ACTIONS(4227), + [sym__superscript_open] = ACTIONS(4227), + [sym__subscript_open] = ACTIONS(4227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4227), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4227), + [sym__cite_author_in_text] = ACTIONS(4227), + [sym__cite_suppress_author] = ACTIONS(4227), + [sym__shortcode_open_escaped] = ACTIONS(4227), + [sym__shortcode_open] = ACTIONS(4227), + [sym__unclosed_span] = ACTIONS(4227), + [sym__strong_emphasis_open_star] = ACTIONS(4227), + [sym__strong_emphasis_close_star] = ACTIONS(4227), + [sym__strong_emphasis_open_underscore] = ACTIONS(4227), }, [STATE(487)] = { - [sym__qmd_attribute] = STATE(1518), - [sym_raw_attribute] = STATE(1518), - [sym_commonmark_attribute] = STATE(1518), - [sym_language_attribute] = STATE(1518), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__emphasis_close_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__qmd_attribute] = STATE(998), + [sym_raw_attribute] = STATE(998), + [sym_commonmark_attribute] = STATE(998), + [sym_language_attribute] = STATE(998), + [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(4209), + [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_close_star] = ACTIONS(4181), + [sym__strong_emphasis_open_underscore] = ACTIONS(4181), }, [STATE(488)] = { - [sym__qmd_attribute] = STATE(1519), - [sym_raw_attribute] = STATE(1519), - [sym_commonmark_attribute] = STATE(1519), - [sym_language_attribute] = STATE(1519), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__emphasis_close_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [sym__qmd_attribute] = STATE(1000), + [sym_raw_attribute] = STATE(1000), + [sym_commonmark_attribute] = STATE(1000), + [sym_language_attribute] = STATE(1000), + [sym__backslash_escape] = ACTIONS(4231), + [sym_entity_reference] = ACTIONS(4231), + [sym_numeric_character_reference] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4233), + [anon_sym_GT] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_BSLASH] = ACTIONS(4233), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [sym__newline_token] = ACTIONS(4231), + [aux_sym_insert_token1] = ACTIONS(4231), + [aux_sym_delete_token1] = ACTIONS(4231), + [aux_sym_highlight_token1] = ACTIONS(4231), + [aux_sym_edit_comment_token1] = ACTIONS(4231), + [anon_sym_CARET_LBRACK] = ACTIONS(4231), + [anon_sym_LBRACK_CARET] = ACTIONS(4231), + [sym_uri_autolink] = ACTIONS(4231), + [sym_email_autolink] = ACTIONS(4231), + [sym__whitespace_ge_2] = ACTIONS(4231), + [aux_sym__whitespace_token1] = ACTIONS(4233), + [sym__word_no_digit] = ACTIONS(4231), + [sym__digits] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [sym__code_span_start] = ACTIONS(4231), + [sym__emphasis_open_star] = ACTIONS(4231), + [sym__emphasis_open_underscore] = ACTIONS(4231), + [sym__strikeout_open] = ACTIONS(4231), + [sym__latex_span_start] = ACTIONS(4231), + [sym__single_quote_open] = ACTIONS(4231), + [sym__double_quote_open] = ACTIONS(4231), + [sym__superscript_open] = ACTIONS(4231), + [sym__subscript_open] = ACTIONS(4231), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4231), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4231), + [sym__cite_author_in_text] = ACTIONS(4231), + [sym__cite_suppress_author] = ACTIONS(4231), + [sym__shortcode_open_escaped] = ACTIONS(4231), + [sym__shortcode_open] = ACTIONS(4231), + [sym__unclosed_span] = ACTIONS(4231), + [sym__strong_emphasis_open_star] = ACTIONS(4231), + [sym__strong_emphasis_close_star] = ACTIONS(4231), + [sym__strong_emphasis_open_underscore] = ACTIONS(4231), }, [STATE(489)] = { - [sym__qmd_attribute] = STATE(1520), - [sym_raw_attribute] = STATE(1520), - [sym_commonmark_attribute] = STATE(1520), - [sym_language_attribute] = STATE(1520), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__emphasis_close_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__qmd_attribute] = STATE(1007), + [sym_raw_attribute] = STATE(1007), + [sym_commonmark_attribute] = STATE(1007), + [sym_language_attribute] = STATE(1007), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_close_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(490)] = { - [sym__qmd_attribute] = STATE(1521), - [sym_raw_attribute] = STATE(1521), - [sym_commonmark_attribute] = STATE(1521), - [sym_language_attribute] = STATE(1521), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__emphasis_close_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__qmd_attribute] = STATE(1009), + [sym_raw_attribute] = STATE(1009), + [sym_commonmark_attribute] = STATE(1009), + [sym_language_attribute] = STATE(1009), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_close_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(491)] = { - [sym__qmd_attribute] = STATE(1522), - [sym_raw_attribute] = STATE(1522), - [sym_commonmark_attribute] = STATE(1522), - [sym_language_attribute] = STATE(1522), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__emphasis_close_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [sym__qmd_attribute] = STATE(1015), + [sym_raw_attribute] = STATE(1015), + [sym_commonmark_attribute] = STATE(1015), + [sym_language_attribute] = STATE(1015), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_close_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(492)] = { - [sym__qmd_attribute] = STATE(1523), - [sym_raw_attribute] = STATE(1523), - [sym_commonmark_attribute] = STATE(1523), - [sym_language_attribute] = STATE(1523), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__emphasis_close_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [sym__qmd_attribute] = STATE(1017), + [sym_raw_attribute] = STATE(1017), + [sym_commonmark_attribute] = STATE(1017), + [sym_language_attribute] = STATE(1017), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_close_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(493)] = { - [sym__qmd_attribute] = STATE(1414), - [sym_raw_attribute] = STATE(1414), - [sym_commonmark_attribute] = STATE(1414), - [sym_language_attribute] = STATE(1414), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__emphasis_close_star] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [sym__qmd_attribute] = STATE(1021), + [sym_raw_attribute] = STATE(1021), + [sym_commonmark_attribute] = STATE(1021), + [sym_language_attribute] = STATE(1021), + [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(4209), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(494)] = { - [sym__qmd_attribute] = STATE(1553), - [sym_raw_attribute] = STATE(1553), - [sym_commonmark_attribute] = STATE(1553), - [sym_language_attribute] = STATE(1553), - [sym__backslash_escape] = ACTIONS(4685), - [sym_entity_reference] = ACTIONS(4685), - [sym_numeric_character_reference] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_BSLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4691), - [anon_sym_RPAREN] = ACTIONS(4685), - [sym__newline_token] = ACTIONS(4685), - [aux_sym_insert_token1] = ACTIONS(4685), - [aux_sym_delete_token1] = ACTIONS(4685), - [aux_sym_highlight_token1] = ACTIONS(4685), - [aux_sym_edit_comment_token1] = ACTIONS(4685), - [anon_sym_CARET_LBRACK] = ACTIONS(4685), - [anon_sym_LBRACK_CARET] = ACTIONS(4685), - [sym_uri_autolink] = ACTIONS(4685), - [sym_email_autolink] = ACTIONS(4685), - [sym__whitespace_ge_2] = ACTIONS(4685), - [aux_sym__whitespace_token1] = ACTIONS(4687), - [sym__word_no_digit] = ACTIONS(4685), - [sym__digits] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4685), - [sym__code_span_start] = ACTIONS(4685), - [sym__emphasis_open_star] = ACTIONS(4685), - [sym__emphasis_open_underscore] = ACTIONS(4685), - [sym__strikeout_open] = ACTIONS(4685), - [sym__strikeout_close] = ACTIONS(4685), - [sym__latex_span_start] = ACTIONS(4685), - [sym__single_quote_open] = ACTIONS(4685), - [sym__double_quote_open] = ACTIONS(4685), - [sym__superscript_open] = ACTIONS(4685), - [sym__subscript_open] = ACTIONS(4685), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4685), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4685), - [sym__cite_author_in_text] = ACTIONS(4685), - [sym__cite_suppress_author] = ACTIONS(4685), - [sym__shortcode_open_escaped] = ACTIONS(4685), - [sym__shortcode_open] = ACTIONS(4685), - [sym__unclosed_span] = ACTIONS(4685), - [sym__strong_emphasis_open_star] = ACTIONS(4685), - [sym__strong_emphasis_open_underscore] = ACTIONS(4685), + [sym__qmd_attribute] = STATE(1023), + [sym_raw_attribute] = STATE(1023), + [sym_commonmark_attribute] = STATE(1023), + [sym_language_attribute] = STATE(1023), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_close_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(495)] = { - [sym__qmd_attribute] = STATE(1554), - [sym_raw_attribute] = STATE(1554), - [sym_commonmark_attribute] = STATE(1554), - [sym_language_attribute] = STATE(1554), - [sym__backslash_escape] = ACTIONS(4693), - [sym_entity_reference] = ACTIONS(4693), - [sym_numeric_character_reference] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [sym__newline_token] = ACTIONS(4693), - [aux_sym_insert_token1] = ACTIONS(4693), - [aux_sym_delete_token1] = ACTIONS(4693), - [aux_sym_highlight_token1] = ACTIONS(4693), - [aux_sym_edit_comment_token1] = ACTIONS(4693), - [anon_sym_CARET_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACK_CARET] = ACTIONS(4693), - [sym_uri_autolink] = ACTIONS(4693), - [sym_email_autolink] = ACTIONS(4693), - [sym__whitespace_ge_2] = ACTIONS(4693), - [aux_sym__whitespace_token1] = ACTIONS(4695), - [sym__word_no_digit] = ACTIONS(4693), - [sym__digits] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [sym__code_span_start] = ACTIONS(4693), - [sym__emphasis_open_star] = ACTIONS(4693), - [sym__emphasis_open_underscore] = ACTIONS(4693), - [sym__strikeout_open] = ACTIONS(4693), - [sym__strikeout_close] = ACTIONS(4693), - [sym__latex_span_start] = ACTIONS(4693), - [sym__single_quote_open] = ACTIONS(4693), - [sym__double_quote_open] = ACTIONS(4693), - [sym__superscript_open] = ACTIONS(4693), - [sym__subscript_open] = ACTIONS(4693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4693), - [sym__cite_author_in_text] = ACTIONS(4693), - [sym__cite_suppress_author] = ACTIONS(4693), - [sym__shortcode_open_escaped] = ACTIONS(4693), - [sym__shortcode_open] = ACTIONS(4693), - [sym__unclosed_span] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4693), - [sym__strong_emphasis_open_underscore] = ACTIONS(4693), + [sym__qmd_attribute] = STATE(1025), + [sym_raw_attribute] = STATE(1025), + [sym_commonmark_attribute] = STATE(1025), + [sym_language_attribute] = STATE(1025), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_close_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(496)] = { - [sym__qmd_attribute] = STATE(1425), - [sym_raw_attribute] = STATE(1425), - [sym_commonmark_attribute] = STATE(1425), - [sym_language_attribute] = STATE(1425), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__emphasis_close_star] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__qmd_attribute] = STATE(1027), + [sym_raw_attribute] = STATE(1027), + [sym_commonmark_attribute] = STATE(1027), + [sym_language_attribute] = STATE(1027), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_close_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(497)] = { - [sym__qmd_attribute] = STATE(1555), - [sym_raw_attribute] = STATE(1555), - [sym_commonmark_attribute] = STATE(1555), - [sym_language_attribute] = STATE(1555), - [sym__backslash_escape] = ACTIONS(4697), - [sym_entity_reference] = ACTIONS(4697), - [sym_numeric_character_reference] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_PERCENT] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_BSLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [sym__newline_token] = ACTIONS(4697), - [aux_sym_insert_token1] = ACTIONS(4697), - [aux_sym_delete_token1] = ACTIONS(4697), - [aux_sym_highlight_token1] = ACTIONS(4697), - [aux_sym_edit_comment_token1] = ACTIONS(4697), - [anon_sym_CARET_LBRACK] = ACTIONS(4697), - [anon_sym_LBRACK_CARET] = ACTIONS(4697), - [sym_uri_autolink] = ACTIONS(4697), - [sym_email_autolink] = ACTIONS(4697), - [sym__whitespace_ge_2] = ACTIONS(4697), - [aux_sym__whitespace_token1] = ACTIONS(4699), - [sym__word_no_digit] = ACTIONS(4697), - [sym__digits] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4697), - [sym__code_span_start] = ACTIONS(4697), - [sym__emphasis_open_star] = ACTIONS(4697), - [sym__emphasis_open_underscore] = ACTIONS(4697), - [sym__strikeout_open] = ACTIONS(4697), - [sym__strikeout_close] = ACTIONS(4697), - [sym__latex_span_start] = ACTIONS(4697), - [sym__single_quote_open] = ACTIONS(4697), - [sym__double_quote_open] = ACTIONS(4697), - [sym__superscript_open] = ACTIONS(4697), - [sym__subscript_open] = ACTIONS(4697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4697), - [sym__cite_author_in_text] = ACTIONS(4697), - [sym__cite_suppress_author] = ACTIONS(4697), - [sym__shortcode_open_escaped] = ACTIONS(4697), - [sym__shortcode_open] = ACTIONS(4697), - [sym__unclosed_span] = ACTIONS(4697), - [sym__strong_emphasis_open_star] = ACTIONS(4697), - [sym__strong_emphasis_open_underscore] = ACTIONS(4697), + [sym__qmd_attribute] = STATE(1029), + [sym_raw_attribute] = STATE(1029), + [sym_commonmark_attribute] = STATE(1029), + [sym_language_attribute] = STATE(1029), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_close_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(498)] = { - [sym__qmd_attribute] = STATE(1567), - [sym_raw_attribute] = STATE(1567), - [sym_commonmark_attribute] = STATE(1567), - [sym_language_attribute] = STATE(1567), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__strikeout_close] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), - }, - [STATE(499)] = { - [sym__qmd_attribute] = STATE(1426), - [sym_raw_attribute] = STATE(1426), - [sym_commonmark_attribute] = STATE(1426), - [sym_language_attribute] = STATE(1426), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__emphasis_close_star] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), - }, - [STATE(500)] = { - [sym__qmd_attribute] = STATE(1576), - [sym_raw_attribute] = STATE(1576), - [sym_commonmark_attribute] = STATE(1576), - [sym_language_attribute] = STATE(1576), - [sym__backslash_escape] = ACTIONS(4641), - [sym_entity_reference] = ACTIONS(4641), - [sym_numeric_character_reference] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_BSLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [sym__newline_token] = ACTIONS(4641), - [aux_sym_insert_token1] = ACTIONS(4641), - [aux_sym_delete_token1] = ACTIONS(4641), - [aux_sym_highlight_token1] = ACTIONS(4641), - [aux_sym_edit_comment_token1] = ACTIONS(4641), - [anon_sym_CARET_LBRACK] = ACTIONS(4641), - [anon_sym_LBRACK_CARET] = ACTIONS(4641), - [sym_uri_autolink] = ACTIONS(4641), - [sym_email_autolink] = ACTIONS(4641), - [sym__whitespace_ge_2] = ACTIONS(4641), - [aux_sym__whitespace_token1] = ACTIONS(4643), - [sym__word_no_digit] = ACTIONS(4641), - [sym__digits] = ACTIONS(4641), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4641), - [sym__code_span_start] = ACTIONS(4641), - [sym__emphasis_open_star] = ACTIONS(4641), - [sym__emphasis_open_underscore] = ACTIONS(4641), - [sym__strikeout_open] = ACTIONS(4641), - [sym__strikeout_close] = ACTIONS(4641), - [sym__latex_span_start] = ACTIONS(4641), - [sym__single_quote_open] = ACTIONS(4641), - [sym__double_quote_open] = ACTIONS(4641), - [sym__superscript_open] = ACTIONS(4641), - [sym__subscript_open] = ACTIONS(4641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4641), - [sym__cite_author_in_text] = ACTIONS(4641), - [sym__cite_suppress_author] = ACTIONS(4641), - [sym__shortcode_open_escaped] = ACTIONS(4641), - [sym__shortcode_open] = ACTIONS(4641), - [sym__unclosed_span] = ACTIONS(4641), - [sym__strong_emphasis_open_star] = ACTIONS(4641), - [sym__strong_emphasis_open_underscore] = ACTIONS(4641), - }, - [STATE(501)] = { - [sym__qmd_attribute] = STATE(1584), - [sym_raw_attribute] = STATE(1584), - [sym_commonmark_attribute] = STATE(1584), - [sym_language_attribute] = STATE(1584), - [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_STAR] = 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(4689), - [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__strikeout_close] = 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(502)] = { - [sym__qmd_attribute] = STATE(1585), - [sym_raw_attribute] = STATE(1585), - [sym_commonmark_attribute] = STATE(1585), - [sym_language_attribute] = STATE(1585), - [sym__backslash_escape] = ACTIONS(4653), - [sym_entity_reference] = ACTIONS(4653), - [sym_numeric_character_reference] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4655), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4655), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4655), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_BSLASH] = ACTIONS(4655), - [anon_sym_CARET] = ACTIONS(4655), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym_RPAREN] = ACTIONS(4653), - [sym__newline_token] = ACTIONS(4653), - [aux_sym_insert_token1] = ACTIONS(4653), - [aux_sym_delete_token1] = ACTIONS(4653), - [aux_sym_highlight_token1] = ACTIONS(4653), - [aux_sym_edit_comment_token1] = ACTIONS(4653), - [anon_sym_CARET_LBRACK] = ACTIONS(4653), - [anon_sym_LBRACK_CARET] = ACTIONS(4653), - [sym_uri_autolink] = ACTIONS(4653), - [sym_email_autolink] = ACTIONS(4653), - [sym__whitespace_ge_2] = ACTIONS(4653), - [aux_sym__whitespace_token1] = ACTIONS(4655), - [sym__word_no_digit] = ACTIONS(4653), - [sym__digits] = ACTIONS(4653), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [sym__code_span_start] = ACTIONS(4653), - [sym__emphasis_open_star] = ACTIONS(4653), - [sym__emphasis_open_underscore] = ACTIONS(4653), - [sym__strikeout_open] = ACTIONS(4653), - [sym__strikeout_close] = ACTIONS(4653), - [sym__latex_span_start] = ACTIONS(4653), - [sym__single_quote_open] = ACTIONS(4653), - [sym__double_quote_open] = ACTIONS(4653), - [sym__superscript_open] = ACTIONS(4653), - [sym__subscript_open] = ACTIONS(4653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4653), - [sym__cite_author_in_text] = ACTIONS(4653), - [sym__cite_suppress_author] = ACTIONS(4653), - [sym__shortcode_open_escaped] = ACTIONS(4653), - [sym__shortcode_open] = ACTIONS(4653), - [sym__unclosed_span] = ACTIONS(4653), - [sym__strong_emphasis_open_star] = ACTIONS(4653), - [sym__strong_emphasis_open_underscore] = ACTIONS(4653), - }, - [STATE(503)] = { - [sym__qmd_attribute] = STATE(1592), - [sym_raw_attribute] = STATE(1592), - [sym_commonmark_attribute] = STATE(1592), - [sym_language_attribute] = STATE(1592), - [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_STAR] = 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(4689), - [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__strikeout_close] = 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(504)] = { - [sym__qmd_attribute] = STATE(1593), - [sym_raw_attribute] = STATE(1593), - [sym_commonmark_attribute] = STATE(1593), - [sym_language_attribute] = STATE(1593), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__strikeout_close] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), - }, - [STATE(505)] = { - [sym__qmd_attribute] = STATE(1598), - [sym_raw_attribute] = STATE(1598), - [sym_commonmark_attribute] = STATE(1598), - [sym_language_attribute] = STATE(1598), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__strikeout_close] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), - }, - [STATE(506)] = { - [sym__qmd_attribute] = STATE(1599), - [sym_raw_attribute] = STATE(1599), - [sym_commonmark_attribute] = STATE(1599), - [sym_language_attribute] = STATE(1599), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__strikeout_close] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), - }, - [STATE(507)] = { - [sym__qmd_attribute] = STATE(1602), - [sym_raw_attribute] = STATE(1602), - [sym_commonmark_attribute] = STATE(1602), - [sym_language_attribute] = STATE(1602), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__strikeout_close] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), - }, - [STATE(508)] = { - [sym__qmd_attribute] = STATE(1427), - [sym_raw_attribute] = STATE(1427), - [sym_commonmark_attribute] = STATE(1427), - [sym_language_attribute] = STATE(1427), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__emphasis_close_star] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), - }, - [STATE(509)] = { - [sym__qmd_attribute] = STATE(1603), - [sym_raw_attribute] = STATE(1603), - [sym_commonmark_attribute] = STATE(1603), - [sym_language_attribute] = STATE(1603), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__strikeout_close] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), - }, - [STATE(510)] = { - [sym__qmd_attribute] = STATE(1604), - [sym_raw_attribute] = STATE(1604), - [sym_commonmark_attribute] = STATE(1604), - [sym_language_attribute] = STATE(1604), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__strikeout_close] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), - }, - [STATE(511)] = { - [sym__qmd_attribute] = STATE(1605), - [sym_raw_attribute] = STATE(1605), - [sym_commonmark_attribute] = STATE(1605), - [sym_language_attribute] = STATE(1605), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__strikeout_close] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), - }, - [STATE(512)] = { - [sym__qmd_attribute] = STATE(1607), - [sym_raw_attribute] = STATE(1607), - [sym_commonmark_attribute] = STATE(1607), - [sym_language_attribute] = STATE(1607), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__strikeout_close] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), - }, - [STATE(513)] = { - [sym__qmd_attribute] = STATE(1608), - [sym_raw_attribute] = STATE(1608), - [sym_commonmark_attribute] = STATE(1608), - [sym_language_attribute] = STATE(1608), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4689), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__strikeout_close] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), - }, - [STATE(514)] = { - [sym__qmd_attribute] = STATE(997), - [sym_raw_attribute] = STATE(997), - [sym_commonmark_attribute] = STATE(997), - [sym_language_attribute] = STATE(997), - [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_STAR] = 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(4651), - [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), + [sym__qmd_attribute] = STATE(1030), + [sym_raw_attribute] = STATE(1030), + [sym_commonmark_attribute] = STATE(1030), + [sym_language_attribute] = STATE(1030), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_close_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), + }, + [STATE(499)] = { + [sym__qmd_attribute] = STATE(1058), + [sym_raw_attribute] = STATE(1058), + [sym_commonmark_attribute] = STATE(1058), + [sym_language_attribute] = STATE(1058), + [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(4259), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4261), + [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(500)] = { + [sym__qmd_attribute] = STATE(1059), + [sym_raw_attribute] = STATE(1059), + [sym_commonmark_attribute] = STATE(1059), + [sym_language_attribute] = STATE(1059), + [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(4259), + [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__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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4213), + }, + [STATE(501)] = { + [sym__qmd_attribute] = STATE(1061), + [sym_raw_attribute] = STATE(1061), + [sym_commonmark_attribute] = STATE(1061), + [sym_language_attribute] = STATE(1061), + [sym__backslash_escape] = ACTIONS(4219), + [sym_entity_reference] = ACTIONS(4219), + [sym_numeric_character_reference] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4221), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_POUND] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_COLON] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_BSLASH] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [sym__newline_token] = ACTIONS(4219), + [aux_sym_insert_token1] = ACTIONS(4219), + [aux_sym_delete_token1] = ACTIONS(4219), + [aux_sym_highlight_token1] = ACTIONS(4219), + [aux_sym_edit_comment_token1] = ACTIONS(4219), + [anon_sym_CARET_LBRACK] = ACTIONS(4219), + [anon_sym_LBRACK_CARET] = ACTIONS(4219), + [sym_uri_autolink] = ACTIONS(4219), + [sym_email_autolink] = ACTIONS(4219), + [sym__whitespace_ge_2] = ACTIONS(4219), + [aux_sym__whitespace_token1] = ACTIONS(4221), + [sym__word_no_digit] = ACTIONS(4219), + [sym__digits] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [sym__code_span_start] = ACTIONS(4219), + [sym__emphasis_open_star] = ACTIONS(4219), + [sym__emphasis_open_underscore] = ACTIONS(4219), + [sym__strikeout_open] = ACTIONS(4219), + [sym__latex_span_start] = ACTIONS(4219), + [sym__single_quote_open] = ACTIONS(4219), + [sym__double_quote_open] = ACTIONS(4219), + [sym__superscript_open] = ACTIONS(4219), + [sym__subscript_open] = ACTIONS(4219), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4219), + [sym__cite_author_in_text] = ACTIONS(4219), + [sym__cite_suppress_author] = ACTIONS(4219), + [sym__shortcode_open_escaped] = ACTIONS(4219), + [sym__shortcode_open] = ACTIONS(4219), + [sym__unclosed_span] = ACTIONS(4219), + [sym__strong_emphasis_open_star] = ACTIONS(4219), + [sym__strong_emphasis_open_underscore] = ACTIONS(4219), + [sym__strong_emphasis_close_underscore] = ACTIONS(4219), + }, + [STATE(502)] = { + [sym__qmd_attribute] = STATE(1073), + [sym_raw_attribute] = STATE(1073), + [sym_commonmark_attribute] = STATE(1073), + [sym_language_attribute] = STATE(1073), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), + [sym__strong_emphasis_close_underscore] = ACTIONS(4223), + }, + [STATE(503)] = { + [sym__qmd_attribute] = STATE(1650), + [sym_raw_attribute] = STATE(1650), + [sym_commonmark_attribute] = STATE(1650), + [sym_language_attribute] = STATE(1650), + [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(4263), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4265), + [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__double_quote_close] = 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), + }, + [STATE(504)] = { + [sym__qmd_attribute] = STATE(1084), + [sym_raw_attribute] = STATE(1084), + [sym_commonmark_attribute] = STATE(1084), + [sym_language_attribute] = STATE(1084), + [sym__backslash_escape] = ACTIONS(4227), + [sym_entity_reference] = ACTIONS(4227), + [sym_numeric_character_reference] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_BSLASH] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_BQUOTE] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [sym__newline_token] = ACTIONS(4227), + [aux_sym_insert_token1] = ACTIONS(4227), + [aux_sym_delete_token1] = ACTIONS(4227), + [aux_sym_highlight_token1] = ACTIONS(4227), + [aux_sym_edit_comment_token1] = ACTIONS(4227), + [anon_sym_CARET_LBRACK] = ACTIONS(4227), + [anon_sym_LBRACK_CARET] = ACTIONS(4227), + [sym_uri_autolink] = ACTIONS(4227), + [sym_email_autolink] = ACTIONS(4227), + [sym__whitespace_ge_2] = ACTIONS(4227), + [aux_sym__whitespace_token1] = ACTIONS(4229), + [sym__word_no_digit] = ACTIONS(4227), + [sym__digits] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [sym__code_span_start] = ACTIONS(4227), + [sym__emphasis_open_star] = ACTIONS(4227), + [sym__emphasis_open_underscore] = ACTIONS(4227), + [sym__strikeout_open] = ACTIONS(4227), + [sym__latex_span_start] = ACTIONS(4227), + [sym__single_quote_open] = ACTIONS(4227), + [sym__double_quote_open] = ACTIONS(4227), + [sym__superscript_open] = ACTIONS(4227), + [sym__subscript_open] = ACTIONS(4227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4227), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4227), + [sym__cite_author_in_text] = ACTIONS(4227), + [sym__cite_suppress_author] = ACTIONS(4227), + [sym__shortcode_open_escaped] = ACTIONS(4227), + [sym__shortcode_open] = ACTIONS(4227), + [sym__unclosed_span] = ACTIONS(4227), + [sym__strong_emphasis_open_star] = ACTIONS(4227), + [sym__strong_emphasis_open_underscore] = ACTIONS(4227), + [sym__strong_emphasis_close_underscore] = ACTIONS(4227), + }, + [STATE(505)] = { + [sym__qmd_attribute] = STATE(1093), + [sym_raw_attribute] = STATE(1093), + [sym_commonmark_attribute] = STATE(1093), + [sym_language_attribute] = STATE(1093), + [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(4259), + [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__strong_emphasis_close_underscore] = ACTIONS(4181), + }, + [STATE(506)] = { + [sym__qmd_attribute] = STATE(1095), + [sym_raw_attribute] = STATE(1095), + [sym_commonmark_attribute] = STATE(1095), + [sym_language_attribute] = STATE(1095), + [sym__backslash_escape] = ACTIONS(4231), + [sym_entity_reference] = ACTIONS(4231), + [sym_numeric_character_reference] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4233), + [anon_sym_GT] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_BSLASH] = ACTIONS(4233), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [sym__newline_token] = ACTIONS(4231), + [aux_sym_insert_token1] = ACTIONS(4231), + [aux_sym_delete_token1] = ACTIONS(4231), + [aux_sym_highlight_token1] = ACTIONS(4231), + [aux_sym_edit_comment_token1] = ACTIONS(4231), + [anon_sym_CARET_LBRACK] = ACTIONS(4231), + [anon_sym_LBRACK_CARET] = ACTIONS(4231), + [sym_uri_autolink] = ACTIONS(4231), + [sym_email_autolink] = ACTIONS(4231), + [sym__whitespace_ge_2] = ACTIONS(4231), + [aux_sym__whitespace_token1] = ACTIONS(4233), + [sym__word_no_digit] = ACTIONS(4231), + [sym__digits] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [sym__code_span_start] = ACTIONS(4231), + [sym__emphasis_open_star] = ACTIONS(4231), + [sym__emphasis_open_underscore] = ACTIONS(4231), + [sym__strikeout_open] = ACTIONS(4231), + [sym__latex_span_start] = ACTIONS(4231), + [sym__single_quote_open] = ACTIONS(4231), + [sym__double_quote_open] = ACTIONS(4231), + [sym__superscript_open] = ACTIONS(4231), + [sym__subscript_open] = ACTIONS(4231), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4231), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4231), + [sym__cite_author_in_text] = ACTIONS(4231), + [sym__cite_suppress_author] = ACTIONS(4231), + [sym__shortcode_open_escaped] = ACTIONS(4231), + [sym__shortcode_open] = ACTIONS(4231), + [sym__unclosed_span] = ACTIONS(4231), + [sym__strong_emphasis_open_star] = ACTIONS(4231), + [sym__strong_emphasis_open_underscore] = ACTIONS(4231), + [sym__strong_emphasis_close_underscore] = ACTIONS(4231), + }, + [STATE(507)] = { + [sym__qmd_attribute] = STATE(1102), + [sym_raw_attribute] = STATE(1102), + [sym_commonmark_attribute] = STATE(1102), + [sym_language_attribute] = STATE(1102), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), + [sym__strong_emphasis_close_underscore] = ACTIONS(4235), + }, + [STATE(508)] = { + [sym__qmd_attribute] = STATE(1104), + [sym_raw_attribute] = STATE(1104), + [sym_commonmark_attribute] = STATE(1104), + [sym_language_attribute] = STATE(1104), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), + [sym__strong_emphasis_close_underscore] = ACTIONS(4239), + }, + [STATE(509)] = { + [sym__qmd_attribute] = STATE(1110), + [sym_raw_attribute] = STATE(1110), + [sym_commonmark_attribute] = STATE(1110), + [sym_language_attribute] = STATE(1110), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), + [sym__strong_emphasis_close_underscore] = ACTIONS(4243), + }, + [STATE(510)] = { + [sym__qmd_attribute] = STATE(1112), + [sym_raw_attribute] = STATE(1112), + [sym_commonmark_attribute] = STATE(1112), + [sym_language_attribute] = STATE(1112), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), + [sym__strong_emphasis_close_underscore] = ACTIONS(4247), + }, + [STATE(511)] = { + [sym__qmd_attribute] = STATE(1116), + [sym_raw_attribute] = STATE(1116), + [sym_commonmark_attribute] = STATE(1116), + [sym_language_attribute] = STATE(1116), + [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(4259), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(512)] = { + [sym__qmd_attribute] = STATE(1118), + [sym_raw_attribute] = STATE(1118), + [sym_commonmark_attribute] = STATE(1118), + [sym_language_attribute] = STATE(1118), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), + [sym__strong_emphasis_close_underscore] = ACTIONS(4255), + }, + [STATE(513)] = { + [sym__qmd_attribute] = STATE(1120), + [sym_raw_attribute] = STATE(1120), + [sym_commonmark_attribute] = STATE(1120), + [sym_language_attribute] = STATE(1120), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), + [sym__strong_emphasis_close_underscore] = ACTIONS(4187), + }, + [STATE(514)] = { + [sym__qmd_attribute] = STATE(1122), + [sym_raw_attribute] = STATE(1122), + [sym_commonmark_attribute] = STATE(1122), + [sym_language_attribute] = STATE(1122), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), + [sym__strong_emphasis_close_underscore] = ACTIONS(4193), }, [STATE(515)] = { - [sym__qmd_attribute] = STATE(1631), - [sym_raw_attribute] = STATE(1631), - [sym_commonmark_attribute] = STATE(1631), - [sym_language_attribute] = STATE(1631), - [sym__backslash_escape] = ACTIONS(4685), - [sym_entity_reference] = ACTIONS(4685), - [sym_numeric_character_reference] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_BSLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4707), - [anon_sym_RPAREN] = ACTIONS(4685), - [sym__newline_token] = ACTIONS(4685), - [aux_sym_insert_token1] = ACTIONS(4685), - [aux_sym_delete_token1] = ACTIONS(4685), - [aux_sym_highlight_token1] = ACTIONS(4685), - [aux_sym_edit_comment_token1] = ACTIONS(4685), - [anon_sym_CARET_LBRACK] = ACTIONS(4685), - [anon_sym_LBRACK_CARET] = ACTIONS(4685), - [sym_uri_autolink] = ACTIONS(4685), - [sym_email_autolink] = ACTIONS(4685), - [sym__whitespace_ge_2] = ACTIONS(4685), - [aux_sym__whitespace_token1] = ACTIONS(4687), - [sym__word_no_digit] = ACTIONS(4685), - [sym__digits] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4685), - [sym__code_span_start] = ACTIONS(4685), - [sym__emphasis_open_star] = ACTIONS(4685), - [sym__emphasis_open_underscore] = ACTIONS(4685), - [sym__strikeout_open] = ACTIONS(4685), - [sym__latex_span_start] = ACTIONS(4685), - [sym__single_quote_open] = ACTIONS(4685), - [sym__single_quote_close] = ACTIONS(4685), - [sym__double_quote_open] = ACTIONS(4685), - [sym__superscript_open] = ACTIONS(4685), - [sym__subscript_open] = ACTIONS(4685), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4685), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4685), - [sym__cite_author_in_text] = ACTIONS(4685), - [sym__cite_suppress_author] = ACTIONS(4685), - [sym__shortcode_open_escaped] = ACTIONS(4685), - [sym__shortcode_open] = ACTIONS(4685), - [sym__unclosed_span] = ACTIONS(4685), - [sym__strong_emphasis_open_star] = ACTIONS(4685), - [sym__strong_emphasis_open_underscore] = ACTIONS(4685), + [sym__qmd_attribute] = STATE(1124), + [sym_raw_attribute] = STATE(1124), + [sym_commonmark_attribute] = STATE(1124), + [sym_language_attribute] = STATE(1124), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), + [sym__strong_emphasis_close_underscore] = ACTIONS(4197), }, [STATE(516)] = { - [sym__qmd_attribute] = STATE(1632), - [sym_raw_attribute] = STATE(1632), - [sym_commonmark_attribute] = STATE(1632), - [sym_language_attribute] = STATE(1632), - [sym__backslash_escape] = ACTIONS(4693), - [sym_entity_reference] = ACTIONS(4693), - [sym_numeric_character_reference] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [sym__newline_token] = ACTIONS(4693), - [aux_sym_insert_token1] = ACTIONS(4693), - [aux_sym_delete_token1] = ACTIONS(4693), - [aux_sym_highlight_token1] = ACTIONS(4693), - [aux_sym_edit_comment_token1] = ACTIONS(4693), - [anon_sym_CARET_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACK_CARET] = ACTIONS(4693), - [sym_uri_autolink] = ACTIONS(4693), - [sym_email_autolink] = ACTIONS(4693), - [sym__whitespace_ge_2] = ACTIONS(4693), - [aux_sym__whitespace_token1] = ACTIONS(4695), - [sym__word_no_digit] = ACTIONS(4693), - [sym__digits] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [sym__code_span_start] = ACTIONS(4693), - [sym__emphasis_open_star] = ACTIONS(4693), - [sym__emphasis_open_underscore] = ACTIONS(4693), - [sym__strikeout_open] = ACTIONS(4693), - [sym__latex_span_start] = ACTIONS(4693), - [sym__single_quote_open] = ACTIONS(4693), - [sym__single_quote_close] = ACTIONS(4693), - [sym__double_quote_open] = ACTIONS(4693), - [sym__superscript_open] = ACTIONS(4693), - [sym__subscript_open] = ACTIONS(4693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4693), - [sym__cite_author_in_text] = ACTIONS(4693), - [sym__cite_suppress_author] = ACTIONS(4693), - [sym__shortcode_open_escaped] = ACTIONS(4693), - [sym__shortcode_open] = ACTIONS(4693), - [sym__unclosed_span] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4693), - [sym__strong_emphasis_open_underscore] = ACTIONS(4693), + [sym__qmd_attribute] = STATE(1125), + [sym_raw_attribute] = STATE(1125), + [sym_commonmark_attribute] = STATE(1125), + [sym_language_attribute] = STATE(1125), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), + [sym__strong_emphasis_close_underscore] = ACTIONS(4201), }, [STATE(517)] = { - [sym__qmd_attribute] = STATE(1429), - [sym_raw_attribute] = STATE(1429), - [sym_commonmark_attribute] = STATE(1429), - [sym_language_attribute] = STATE(1429), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__emphasis_close_star] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__qmd_attribute] = STATE(1158), + [sym_raw_attribute] = STATE(1158), + [sym_commonmark_attribute] = STATE(1158), + [sym_language_attribute] = STATE(1158), + [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_RBRACK] = ACTIONS(4205), + [anon_sym_CARET] = ACTIONS(4207), + [anon_sym_BQUOTE] = ACTIONS(4205), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4269), + [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), }, [STATE(518)] = { - [sym__qmd_attribute] = STATE(1633), - [sym_raw_attribute] = STATE(1633), - [sym_commonmark_attribute] = STATE(1633), - [sym_language_attribute] = STATE(1633), - [sym__backslash_escape] = ACTIONS(4697), - [sym_entity_reference] = ACTIONS(4697), - [sym_numeric_character_reference] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_PERCENT] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_BSLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [sym__newline_token] = ACTIONS(4697), - [aux_sym_insert_token1] = ACTIONS(4697), - [aux_sym_delete_token1] = ACTIONS(4697), - [aux_sym_highlight_token1] = ACTIONS(4697), - [aux_sym_edit_comment_token1] = ACTIONS(4697), - [anon_sym_CARET_LBRACK] = ACTIONS(4697), - [anon_sym_LBRACK_CARET] = ACTIONS(4697), - [sym_uri_autolink] = ACTIONS(4697), - [sym_email_autolink] = ACTIONS(4697), - [sym__whitespace_ge_2] = ACTIONS(4697), - [aux_sym__whitespace_token1] = ACTIONS(4699), - [sym__word_no_digit] = ACTIONS(4697), - [sym__digits] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4697), - [sym__code_span_start] = ACTIONS(4697), - [sym__emphasis_open_star] = ACTIONS(4697), - [sym__emphasis_open_underscore] = ACTIONS(4697), - [sym__strikeout_open] = ACTIONS(4697), - [sym__latex_span_start] = ACTIONS(4697), - [sym__single_quote_open] = ACTIONS(4697), - [sym__single_quote_close] = ACTIONS(4697), - [sym__double_quote_open] = ACTIONS(4697), - [sym__superscript_open] = ACTIONS(4697), - [sym__subscript_open] = ACTIONS(4697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4697), - [sym__cite_author_in_text] = ACTIONS(4697), - [sym__cite_suppress_author] = ACTIONS(4697), - [sym__shortcode_open_escaped] = ACTIONS(4697), - [sym__shortcode_open] = ACTIONS(4697), - [sym__unclosed_span] = ACTIONS(4697), - [sym__strong_emphasis_open_star] = ACTIONS(4697), - [sym__strong_emphasis_open_underscore] = ACTIONS(4697), + [sym__qmd_attribute] = STATE(1159), + [sym_raw_attribute] = STATE(1159), + [sym_commonmark_attribute] = STATE(1159), + [sym_language_attribute] = STATE(1159), + [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_RBRACK] = ACTIONS(4213), + [anon_sym_CARET] = ACTIONS(4215), + [anon_sym_BQUOTE] = ACTIONS(4213), + [anon_sym_LBRACE] = ACTIONS(4267), + [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__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(519)] = { - [sym__qmd_attribute] = STATE(1645), - [sym_raw_attribute] = STATE(1645), - [sym_commonmark_attribute] = STATE(1645), - [sym_language_attribute] = STATE(1645), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__single_quote_close] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [sym__qmd_attribute] = STATE(1651), + [sym_raw_attribute] = STATE(1651), + [sym_commonmark_attribute] = STATE(1651), + [sym_language_attribute] = STATE(1651), + [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(4263), + [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(520)] = { - [sym__qmd_attribute] = STATE(1430), - [sym_raw_attribute] = STATE(1430), - [sym_commonmark_attribute] = STATE(1430), - [sym_language_attribute] = STATE(1430), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__emphasis_close_star] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [sym__qmd_attribute] = STATE(1161), + [sym_raw_attribute] = STATE(1161), + [sym_commonmark_attribute] = STATE(1161), + [sym_language_attribute] = STATE(1161), + [sym__backslash_escape] = ACTIONS(4219), + [sym_entity_reference] = ACTIONS(4219), + [sym_numeric_character_reference] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4221), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_POUND] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_COLON] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_BSLASH] = ACTIONS(4221), + [anon_sym_RBRACK] = ACTIONS(4219), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [sym__newline_token] = ACTIONS(4219), + [aux_sym_insert_token1] = ACTIONS(4219), + [aux_sym_delete_token1] = ACTIONS(4219), + [aux_sym_highlight_token1] = ACTIONS(4219), + [aux_sym_edit_comment_token1] = ACTIONS(4219), + [anon_sym_CARET_LBRACK] = ACTIONS(4219), + [anon_sym_LBRACK_CARET] = ACTIONS(4219), + [sym_uri_autolink] = ACTIONS(4219), + [sym_email_autolink] = ACTIONS(4219), + [sym__whitespace_ge_2] = ACTIONS(4219), + [aux_sym__whitespace_token1] = ACTIONS(4221), + [sym__word_no_digit] = ACTIONS(4219), + [sym__digits] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [sym__code_span_start] = ACTIONS(4219), + [sym__emphasis_open_star] = ACTIONS(4219), + [sym__emphasis_open_underscore] = ACTIONS(4219), + [sym__strikeout_open] = ACTIONS(4219), + [sym__latex_span_start] = ACTIONS(4219), + [sym__single_quote_open] = ACTIONS(4219), + [sym__double_quote_open] = ACTIONS(4219), + [sym__superscript_open] = ACTIONS(4219), + [sym__subscript_open] = ACTIONS(4219), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4219), + [sym__cite_author_in_text] = ACTIONS(4219), + [sym__cite_suppress_author] = ACTIONS(4219), + [sym__shortcode_open_escaped] = ACTIONS(4219), + [sym__shortcode_open] = ACTIONS(4219), + [sym__unclosed_span] = ACTIONS(4219), + [sym__strong_emphasis_open_star] = ACTIONS(4219), + [sym__strong_emphasis_open_underscore] = ACTIONS(4219), }, [STATE(521)] = { - [sym__qmd_attribute] = STATE(1656), - [sym_raw_attribute] = STATE(1656), - [sym_commonmark_attribute] = STATE(1656), - [sym_language_attribute] = STATE(1656), - [sym__backslash_escape] = ACTIONS(4641), - [sym_entity_reference] = ACTIONS(4641), - [sym_numeric_character_reference] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_BSLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [sym__newline_token] = ACTIONS(4641), - [aux_sym_insert_token1] = ACTIONS(4641), - [aux_sym_delete_token1] = ACTIONS(4641), - [aux_sym_highlight_token1] = ACTIONS(4641), - [aux_sym_edit_comment_token1] = ACTIONS(4641), - [anon_sym_CARET_LBRACK] = ACTIONS(4641), - [anon_sym_LBRACK_CARET] = ACTIONS(4641), - [sym_uri_autolink] = ACTIONS(4641), - [sym_email_autolink] = ACTIONS(4641), - [sym__whitespace_ge_2] = ACTIONS(4641), - [aux_sym__whitespace_token1] = ACTIONS(4643), - [sym__word_no_digit] = ACTIONS(4641), - [sym__digits] = ACTIONS(4641), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4641), - [sym__code_span_start] = ACTIONS(4641), - [sym__emphasis_open_star] = ACTIONS(4641), - [sym__emphasis_open_underscore] = ACTIONS(4641), - [sym__strikeout_open] = ACTIONS(4641), - [sym__latex_span_start] = ACTIONS(4641), - [sym__single_quote_open] = ACTIONS(4641), - [sym__single_quote_close] = ACTIONS(4641), - [sym__double_quote_open] = ACTIONS(4641), - [sym__superscript_open] = ACTIONS(4641), - [sym__subscript_open] = ACTIONS(4641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4641), - [sym__cite_author_in_text] = ACTIONS(4641), - [sym__cite_suppress_author] = ACTIONS(4641), - [sym__shortcode_open_escaped] = ACTIONS(4641), - [sym__shortcode_open] = ACTIONS(4641), - [sym__unclosed_span] = ACTIONS(4641), - [sym__strong_emphasis_open_star] = ACTIONS(4641), - [sym__strong_emphasis_open_underscore] = ACTIONS(4641), + [sym__qmd_attribute] = STATE(1174), + [sym_raw_attribute] = STATE(1174), + [sym_commonmark_attribute] = STATE(1174), + [sym_language_attribute] = STATE(1174), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_RBRACK] = ACTIONS(4223), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(522)] = { - [sym__qmd_attribute] = STATE(1022), - [sym_raw_attribute] = STATE(1022), - [sym_commonmark_attribute] = STATE(1022), - [sym_language_attribute] = STATE(1022), - [ts_builtin_sym_end] = ACTIONS(4657), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [sym__qmd_attribute] = STATE(1602), + [sym_raw_attribute] = STATE(1602), + [sym_commonmark_attribute] = STATE(1602), + [sym_language_attribute] = STATE(1602), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__single_quote_close] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(523)] = { - [sym__qmd_attribute] = STATE(1665), - [sym_raw_attribute] = STATE(1665), - [sym_commonmark_attribute] = STATE(1665), - [sym_language_attribute] = STATE(1665), - [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_STAR] = 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(4705), - [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__single_quote_close] = 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__qmd_attribute] = STATE(1187), + [sym_raw_attribute] = STATE(1187), + [sym_commonmark_attribute] = STATE(1187), + [sym_language_attribute] = STATE(1187), + [sym__backslash_escape] = ACTIONS(4227), + [sym_entity_reference] = ACTIONS(4227), + [sym_numeric_character_reference] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_BSLASH] = ACTIONS(4229), + [anon_sym_RBRACK] = ACTIONS(4227), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_BQUOTE] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [sym__newline_token] = ACTIONS(4227), + [aux_sym_insert_token1] = ACTIONS(4227), + [aux_sym_delete_token1] = ACTIONS(4227), + [aux_sym_highlight_token1] = ACTIONS(4227), + [aux_sym_edit_comment_token1] = ACTIONS(4227), + [anon_sym_CARET_LBRACK] = ACTIONS(4227), + [anon_sym_LBRACK_CARET] = ACTIONS(4227), + [sym_uri_autolink] = ACTIONS(4227), + [sym_email_autolink] = ACTIONS(4227), + [sym__whitespace_ge_2] = ACTIONS(4227), + [aux_sym__whitespace_token1] = ACTIONS(4229), + [sym__word_no_digit] = ACTIONS(4227), + [sym__digits] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [sym__code_span_start] = ACTIONS(4227), + [sym__emphasis_open_star] = ACTIONS(4227), + [sym__emphasis_open_underscore] = ACTIONS(4227), + [sym__strikeout_open] = ACTIONS(4227), + [sym__latex_span_start] = ACTIONS(4227), + [sym__single_quote_open] = ACTIONS(4227), + [sym__double_quote_open] = ACTIONS(4227), + [sym__superscript_open] = ACTIONS(4227), + [sym__subscript_open] = ACTIONS(4227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4227), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4227), + [sym__cite_author_in_text] = ACTIONS(4227), + [sym__cite_suppress_author] = ACTIONS(4227), + [sym__shortcode_open_escaped] = ACTIONS(4227), + [sym__shortcode_open] = ACTIONS(4227), + [sym__unclosed_span] = ACTIONS(4227), + [sym__strong_emphasis_open_star] = ACTIONS(4227), + [sym__strong_emphasis_open_underscore] = ACTIONS(4227), }, [STATE(524)] = { - [sym__qmd_attribute] = STATE(1666), - [sym_raw_attribute] = STATE(1666), - [sym_commonmark_attribute] = STATE(1666), - [sym_language_attribute] = STATE(1666), - [sym__backslash_escape] = ACTIONS(4653), - [sym_entity_reference] = ACTIONS(4653), - [sym_numeric_character_reference] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4655), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4655), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4655), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_BSLASH] = ACTIONS(4655), - [anon_sym_CARET] = ACTIONS(4655), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym_RPAREN] = ACTIONS(4653), - [sym__newline_token] = ACTIONS(4653), - [aux_sym_insert_token1] = ACTIONS(4653), - [aux_sym_delete_token1] = ACTIONS(4653), - [aux_sym_highlight_token1] = ACTIONS(4653), - [aux_sym_edit_comment_token1] = ACTIONS(4653), - [anon_sym_CARET_LBRACK] = ACTIONS(4653), - [anon_sym_LBRACK_CARET] = ACTIONS(4653), - [sym_uri_autolink] = ACTIONS(4653), - [sym_email_autolink] = ACTIONS(4653), - [sym__whitespace_ge_2] = ACTIONS(4653), - [aux_sym__whitespace_token1] = ACTIONS(4655), - [sym__word_no_digit] = ACTIONS(4653), - [sym__digits] = ACTIONS(4653), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [sym__code_span_start] = ACTIONS(4653), - [sym__emphasis_open_star] = ACTIONS(4653), - [sym__emphasis_open_underscore] = ACTIONS(4653), - [sym__strikeout_open] = ACTIONS(4653), - [sym__latex_span_start] = ACTIONS(4653), - [sym__single_quote_open] = ACTIONS(4653), - [sym__single_quote_close] = ACTIONS(4653), - [sym__double_quote_open] = ACTIONS(4653), - [sym__superscript_open] = ACTIONS(4653), - [sym__subscript_open] = ACTIONS(4653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4653), - [sym__cite_author_in_text] = ACTIONS(4653), - [sym__cite_suppress_author] = ACTIONS(4653), - [sym__shortcode_open_escaped] = ACTIONS(4653), - [sym__shortcode_open] = ACTIONS(4653), - [sym__unclosed_span] = ACTIONS(4653), - [sym__strong_emphasis_open_star] = ACTIONS(4653), - [sym__strong_emphasis_open_underscore] = ACTIONS(4653), + [sym__qmd_attribute] = STATE(1196), + [sym_raw_attribute] = STATE(1196), + [sym_commonmark_attribute] = STATE(1196), + [sym_language_attribute] = STATE(1196), + [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_RBRACK] = ACTIONS(4181), + [anon_sym_CARET] = ACTIONS(4183), + [anon_sym_BQUOTE] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4267), + [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(525)] = { - [sym__qmd_attribute] = STATE(1672), - [sym_raw_attribute] = STATE(1672), - [sym_commonmark_attribute] = STATE(1672), - [sym_language_attribute] = STATE(1672), - [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_STAR] = 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(4705), - [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__single_quote_close] = 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), + [sym__qmd_attribute] = STATE(1198), + [sym_raw_attribute] = STATE(1198), + [sym_commonmark_attribute] = STATE(1198), + [sym_language_attribute] = STATE(1198), + [sym__backslash_escape] = ACTIONS(4231), + [sym_entity_reference] = ACTIONS(4231), + [sym_numeric_character_reference] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4233), + [anon_sym_GT] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_BSLASH] = ACTIONS(4233), + [anon_sym_RBRACK] = ACTIONS(4231), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [sym__newline_token] = ACTIONS(4231), + [aux_sym_insert_token1] = ACTIONS(4231), + [aux_sym_delete_token1] = ACTIONS(4231), + [aux_sym_highlight_token1] = ACTIONS(4231), + [aux_sym_edit_comment_token1] = ACTIONS(4231), + [anon_sym_CARET_LBRACK] = ACTIONS(4231), + [anon_sym_LBRACK_CARET] = ACTIONS(4231), + [sym_uri_autolink] = ACTIONS(4231), + [sym_email_autolink] = ACTIONS(4231), + [sym__whitespace_ge_2] = ACTIONS(4231), + [aux_sym__whitespace_token1] = ACTIONS(4233), + [sym__word_no_digit] = ACTIONS(4231), + [sym__digits] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [sym__code_span_start] = ACTIONS(4231), + [sym__emphasis_open_star] = ACTIONS(4231), + [sym__emphasis_open_underscore] = ACTIONS(4231), + [sym__strikeout_open] = ACTIONS(4231), + [sym__latex_span_start] = ACTIONS(4231), + [sym__single_quote_open] = ACTIONS(4231), + [sym__double_quote_open] = ACTIONS(4231), + [sym__superscript_open] = ACTIONS(4231), + [sym__subscript_open] = ACTIONS(4231), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4231), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4231), + [sym__cite_author_in_text] = ACTIONS(4231), + [sym__cite_suppress_author] = ACTIONS(4231), + [sym__shortcode_open_escaped] = ACTIONS(4231), + [sym__shortcode_open] = ACTIONS(4231), + [sym__unclosed_span] = ACTIONS(4231), + [sym__strong_emphasis_open_star] = ACTIONS(4231), + [sym__strong_emphasis_open_underscore] = ACTIONS(4231), }, [STATE(526)] = { - [sym__qmd_attribute] = STATE(1674), - [sym_raw_attribute] = STATE(1674), - [sym_commonmark_attribute] = STATE(1674), - [sym_language_attribute] = STATE(1674), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__single_quote_close] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [sym__qmd_attribute] = STATE(1205), + [sym_raw_attribute] = STATE(1205), + [sym_commonmark_attribute] = STATE(1205), + [sym_language_attribute] = STATE(1205), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_RBRACK] = ACTIONS(4235), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(527)] = { - [sym__qmd_attribute] = STATE(1428), - [sym_raw_attribute] = STATE(1428), - [sym_commonmark_attribute] = STATE(1428), - [sym_language_attribute] = STATE(1428), - [ts_builtin_sym_end] = ACTIONS(4697), - [sym__backslash_escape] = ACTIONS(4697), - [sym_entity_reference] = ACTIONS(4697), - [sym_numeric_character_reference] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_PERCENT] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_BSLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [sym__newline_token] = ACTIONS(4697), - [aux_sym_insert_token1] = ACTIONS(4697), - [aux_sym_delete_token1] = ACTIONS(4697), - [aux_sym_highlight_token1] = ACTIONS(4697), - [aux_sym_edit_comment_token1] = ACTIONS(4697), - [anon_sym_CARET_LBRACK] = ACTIONS(4697), - [anon_sym_LBRACK_CARET] = ACTIONS(4697), - [sym_uri_autolink] = ACTIONS(4697), - [sym_email_autolink] = ACTIONS(4697), - [sym__whitespace_ge_2] = ACTIONS(4697), - [aux_sym__whitespace_token1] = ACTIONS(4699), - [sym__word_no_digit] = ACTIONS(4697), - [sym__digits] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4697), - [sym__code_span_start] = ACTIONS(4697), - [sym__emphasis_open_star] = ACTIONS(4697), - [sym__emphasis_open_underscore] = ACTIONS(4697), - [sym__strikeout_open] = ACTIONS(4697), - [sym__latex_span_start] = ACTIONS(4697), - [sym__single_quote_open] = ACTIONS(4697), - [sym__double_quote_open] = ACTIONS(4697), - [sym__superscript_open] = ACTIONS(4697), - [sym__subscript_open] = ACTIONS(4697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4697), - [sym__cite_author_in_text] = ACTIONS(4697), - [sym__cite_suppress_author] = ACTIONS(4697), - [sym__shortcode_open_escaped] = ACTIONS(4697), - [sym__shortcode_open] = ACTIONS(4697), - [sym__unclosed_span] = ACTIONS(4697), - [sym__strong_emphasis_open_star] = ACTIONS(4697), - [sym__strong_emphasis_open_underscore] = ACTIONS(4697), + [sym__qmd_attribute] = STATE(1207), + [sym_raw_attribute] = STATE(1207), + [sym_commonmark_attribute] = STATE(1207), + [sym_language_attribute] = STATE(1207), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_RBRACK] = ACTIONS(4239), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(528)] = { - [sym__qmd_attribute] = STATE(1679), - [sym_raw_attribute] = STATE(1679), - [sym_commonmark_attribute] = STATE(1679), - [sym_language_attribute] = STATE(1679), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__single_quote_close] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [sym__qmd_attribute] = STATE(1213), + [sym_raw_attribute] = STATE(1213), + [sym_commonmark_attribute] = STATE(1213), + [sym_language_attribute] = STATE(1213), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_RBRACK] = ACTIONS(4243), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(529)] = { - [sym__qmd_attribute] = STATE(1680), - [sym_raw_attribute] = STATE(1680), - [sym_commonmark_attribute] = STATE(1680), - [sym_language_attribute] = STATE(1680), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__single_quote_close] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [sym__qmd_attribute] = STATE(1215), + [sym_raw_attribute] = STATE(1215), + [sym_commonmark_attribute] = STATE(1215), + [sym_language_attribute] = STATE(1215), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_RBRACK] = ACTIONS(4247), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(530)] = { - [sym__qmd_attribute] = STATE(1683), - [sym_raw_attribute] = STATE(1683), - [sym_commonmark_attribute] = STATE(1683), - [sym_language_attribute] = STATE(1683), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__single_quote_close] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__qmd_attribute] = STATE(1219), + [sym_raw_attribute] = STATE(1219), + [sym_commonmark_attribute] = STATE(1219), + [sym_language_attribute] = STATE(1219), + [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(4267), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(531)] = { - [sym__qmd_attribute] = STATE(1684), - [sym_raw_attribute] = STATE(1684), - [sym_commonmark_attribute] = STATE(1684), - [sym_language_attribute] = STATE(1684), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__single_quote_close] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [sym__qmd_attribute] = STATE(1221), + [sym_raw_attribute] = STATE(1221), + [sym_commonmark_attribute] = STATE(1221), + [sym_language_attribute] = STATE(1221), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_RBRACK] = ACTIONS(4255), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(532)] = { - [sym__qmd_attribute] = STATE(1685), - [sym_raw_attribute] = STATE(1685), - [sym_commonmark_attribute] = STATE(1685), - [sym_language_attribute] = STATE(1685), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__single_quote_close] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__qmd_attribute] = STATE(1223), + [sym_raw_attribute] = STATE(1223), + [sym_commonmark_attribute] = STATE(1223), + [sym_language_attribute] = STATE(1223), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_RBRACK] = ACTIONS(4187), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(533)] = { - [sym__qmd_attribute] = STATE(1686), - [sym_raw_attribute] = STATE(1686), - [sym_commonmark_attribute] = STATE(1686), - [sym_language_attribute] = STATE(1686), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__single_quote_close] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__qmd_attribute] = STATE(1225), + [sym_raw_attribute] = STATE(1225), + [sym_commonmark_attribute] = STATE(1225), + [sym_language_attribute] = STATE(1225), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_RBRACK] = ACTIONS(4193), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(534)] = { - [sym__qmd_attribute] = STATE(1687), - [sym_raw_attribute] = STATE(1687), - [sym_commonmark_attribute] = STATE(1687), - [sym_language_attribute] = STATE(1687), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__single_quote_close] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [sym__qmd_attribute] = STATE(1227), + [sym_raw_attribute] = STATE(1227), + [sym_commonmark_attribute] = STATE(1227), + [sym_language_attribute] = STATE(1227), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_RBRACK] = ACTIONS(4197), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(535)] = { - [sym__qmd_attribute] = STATE(1688), - [sym_raw_attribute] = STATE(1688), - [sym_commonmark_attribute] = STATE(1688), - [sym_language_attribute] = STATE(1688), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4705), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__single_quote_close] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [sym__qmd_attribute] = STATE(1228), + [sym_raw_attribute] = STATE(1228), + [sym_commonmark_attribute] = STATE(1228), + [sym_language_attribute] = STATE(1228), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_RBRACK] = ACTIONS(4201), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(536)] = { - [sym__qmd_attribute] = STATE(1095), - [sym_raw_attribute] = STATE(1095), - [sym_commonmark_attribute] = STATE(1095), - [sym_language_attribute] = STATE(1095), - [ts_builtin_sym_end] = ACTIONS(4661), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [sym__qmd_attribute] = STATE(1260), + [sym_raw_attribute] = STATE(1260), + [sym_commonmark_attribute] = STATE(1260), + [sym_language_attribute] = STATE(1260), + [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(4271), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4273), + [anon_sym_RPAREN] = ACTIONS(4205), + [sym__newline_token] = ACTIONS(4205), + [aux_sym_insert_token1] = ACTIONS(4205), + [aux_sym_insert_token2] = 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(4207), + [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), }, [STATE(537)] = { - [sym__qmd_attribute] = STATE(1106), - [sym_raw_attribute] = STATE(1106), - [sym_commonmark_attribute] = STATE(1106), - [sym_language_attribute] = STATE(1106), - [ts_builtin_sym_end] = ACTIONS(4637), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [sym__qmd_attribute] = STATE(1261), + [sym_raw_attribute] = STATE(1261), + [sym_commonmark_attribute] = STATE(1261), + [sym_language_attribute] = STATE(1261), + [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(4271), + [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_insert_token2] = 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(4215), + [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__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(538)] = { - [sym__qmd_attribute] = STATE(819), - [sym_raw_attribute] = STATE(819), - [sym_commonmark_attribute] = STATE(819), - [sym_language_attribute] = STATE(819), - [sym__backslash_escape] = ACTIONS(4685), - [sym_entity_reference] = ACTIONS(4685), - [sym_numeric_character_reference] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_BSLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4711), - [anon_sym_RPAREN] = ACTIONS(4685), - [sym__newline_token] = ACTIONS(4685), - [aux_sym_insert_token1] = ACTIONS(4685), - [aux_sym_delete_token1] = ACTIONS(4685), - [aux_sym_highlight_token1] = ACTIONS(4685), - [aux_sym_edit_comment_token1] = ACTIONS(4685), - [anon_sym_CARET_LBRACK] = ACTIONS(4685), - [anon_sym_LBRACK_CARET] = ACTIONS(4685), - [sym_uri_autolink] = ACTIONS(4685), - [sym_email_autolink] = ACTIONS(4685), - [sym__whitespace_ge_2] = ACTIONS(4685), - [aux_sym__whitespace_token1] = ACTIONS(4687), - [sym__word_no_digit] = ACTIONS(4685), - [sym__digits] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4685), - [sym__code_span_start] = ACTIONS(4685), - [sym__emphasis_open_star] = ACTIONS(4685), - [sym__emphasis_open_underscore] = ACTIONS(4685), - [sym__strikeout_open] = ACTIONS(4685), - [sym__latex_span_start] = ACTIONS(4685), - [sym__single_quote_open] = ACTIONS(4685), - [sym__double_quote_open] = ACTIONS(4685), - [sym__double_quote_close] = ACTIONS(4685), - [sym__superscript_open] = ACTIONS(4685), - [sym__subscript_open] = ACTIONS(4685), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4685), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4685), - [sym__cite_author_in_text] = ACTIONS(4685), - [sym__cite_suppress_author] = ACTIONS(4685), - [sym__shortcode_open_escaped] = ACTIONS(4685), - [sym__shortcode_open] = ACTIONS(4685), - [sym__unclosed_span] = ACTIONS(4685), - [sym__strong_emphasis_open_star] = ACTIONS(4685), - [sym__strong_emphasis_open_underscore] = ACTIONS(4685), + [sym__qmd_attribute] = STATE(1652), + [sym_raw_attribute] = STATE(1652), + [sym_commonmark_attribute] = STATE(1652), + [sym_language_attribute] = STATE(1652), + [sym__backslash_escape] = ACTIONS(4219), + [sym_entity_reference] = ACTIONS(4219), + [sym_numeric_character_reference] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4221), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_POUND] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_COLON] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_BSLASH] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [sym__newline_token] = ACTIONS(4219), + [aux_sym_insert_token1] = ACTIONS(4219), + [aux_sym_delete_token1] = ACTIONS(4219), + [aux_sym_highlight_token1] = ACTIONS(4219), + [aux_sym_edit_comment_token1] = ACTIONS(4219), + [anon_sym_CARET_LBRACK] = ACTIONS(4219), + [anon_sym_LBRACK_CARET] = ACTIONS(4219), + [sym_uri_autolink] = ACTIONS(4219), + [sym_email_autolink] = ACTIONS(4219), + [sym__whitespace_ge_2] = ACTIONS(4219), + [aux_sym__whitespace_token1] = ACTIONS(4221), + [sym__word_no_digit] = ACTIONS(4219), + [sym__digits] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [sym__code_span_start] = ACTIONS(4219), + [sym__emphasis_open_star] = ACTIONS(4219), + [sym__emphasis_open_underscore] = ACTIONS(4219), + [sym__strikeout_open] = ACTIONS(4219), + [sym__latex_span_start] = ACTIONS(4219), + [sym__single_quote_open] = ACTIONS(4219), + [sym__double_quote_open] = ACTIONS(4219), + [sym__double_quote_close] = ACTIONS(4219), + [sym__superscript_open] = ACTIONS(4219), + [sym__subscript_open] = ACTIONS(4219), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4219), + [sym__cite_author_in_text] = ACTIONS(4219), + [sym__cite_suppress_author] = ACTIONS(4219), + [sym__shortcode_open_escaped] = ACTIONS(4219), + [sym__shortcode_open] = ACTIONS(4219), + [sym__unclosed_span] = ACTIONS(4219), + [sym__strong_emphasis_open_star] = ACTIONS(4219), + [sym__strong_emphasis_open_underscore] = ACTIONS(4219), }, [STATE(539)] = { - [sym__qmd_attribute] = STATE(820), - [sym_raw_attribute] = STATE(820), - [sym_commonmark_attribute] = STATE(820), - [sym_language_attribute] = STATE(820), - [sym__backslash_escape] = ACTIONS(4693), - [sym_entity_reference] = ACTIONS(4693), - [sym_numeric_character_reference] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [sym__newline_token] = ACTIONS(4693), - [aux_sym_insert_token1] = ACTIONS(4693), - [aux_sym_delete_token1] = ACTIONS(4693), - [aux_sym_highlight_token1] = ACTIONS(4693), - [aux_sym_edit_comment_token1] = ACTIONS(4693), - [anon_sym_CARET_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACK_CARET] = ACTIONS(4693), - [sym_uri_autolink] = ACTIONS(4693), - [sym_email_autolink] = ACTIONS(4693), - [sym__whitespace_ge_2] = ACTIONS(4693), - [aux_sym__whitespace_token1] = ACTIONS(4695), - [sym__word_no_digit] = ACTIONS(4693), - [sym__digits] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [sym__code_span_start] = ACTIONS(4693), - [sym__emphasis_open_star] = ACTIONS(4693), - [sym__emphasis_open_underscore] = ACTIONS(4693), - [sym__strikeout_open] = ACTIONS(4693), - [sym__latex_span_start] = ACTIONS(4693), - [sym__single_quote_open] = ACTIONS(4693), - [sym__double_quote_open] = ACTIONS(4693), - [sym__double_quote_close] = ACTIONS(4693), - [sym__superscript_open] = ACTIONS(4693), - [sym__subscript_open] = ACTIONS(4693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4693), - [sym__cite_author_in_text] = ACTIONS(4693), - [sym__cite_suppress_author] = ACTIONS(4693), - [sym__shortcode_open_escaped] = ACTIONS(4693), - [sym__shortcode_open] = ACTIONS(4693), - [sym__unclosed_span] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4693), - [sym__strong_emphasis_open_underscore] = ACTIONS(4693), + [sym__qmd_attribute] = STATE(1263), + [sym_raw_attribute] = STATE(1263), + [sym_commonmark_attribute] = STATE(1263), + [sym_language_attribute] = STATE(1263), + [sym__backslash_escape] = ACTIONS(4219), + [sym_entity_reference] = ACTIONS(4219), + [sym_numeric_character_reference] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4221), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_POUND] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_COLON] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_BSLASH] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [sym__newline_token] = ACTIONS(4219), + [aux_sym_insert_token1] = ACTIONS(4219), + [aux_sym_insert_token2] = ACTIONS(4219), + [aux_sym_delete_token1] = ACTIONS(4219), + [aux_sym_highlight_token1] = ACTIONS(4219), + [aux_sym_edit_comment_token1] = ACTIONS(4219), + [anon_sym_CARET_LBRACK] = ACTIONS(4219), + [anon_sym_LBRACK_CARET] = ACTIONS(4219), + [sym_uri_autolink] = ACTIONS(4219), + [sym_email_autolink] = ACTIONS(4219), + [sym__whitespace_ge_2] = ACTIONS(4221), + [aux_sym__whitespace_token1] = ACTIONS(4221), + [sym__word_no_digit] = ACTIONS(4219), + [sym__digits] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [sym__code_span_start] = ACTIONS(4219), + [sym__emphasis_open_star] = ACTIONS(4219), + [sym__emphasis_open_underscore] = ACTIONS(4219), + [sym__strikeout_open] = ACTIONS(4219), + [sym__latex_span_start] = ACTIONS(4219), + [sym__single_quote_open] = ACTIONS(4219), + [sym__double_quote_open] = ACTIONS(4219), + [sym__superscript_open] = ACTIONS(4219), + [sym__subscript_open] = ACTIONS(4219), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4219), + [sym__cite_author_in_text] = ACTIONS(4219), + [sym__cite_suppress_author] = ACTIONS(4219), + [sym__shortcode_open_escaped] = ACTIONS(4219), + [sym__shortcode_open] = ACTIONS(4219), + [sym__unclosed_span] = ACTIONS(4219), + [sym__strong_emphasis_open_star] = ACTIONS(4219), + [sym__strong_emphasis_open_underscore] = ACTIONS(4219), }, [STATE(540)] = { - [sym__qmd_attribute] = STATE(1431), - [sym_raw_attribute] = STATE(1431), - [sym_commonmark_attribute] = STATE(1431), - [sym_language_attribute] = STATE(1431), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__emphasis_close_star] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [sym__qmd_attribute] = STATE(1276), + [sym_raw_attribute] = STATE(1276), + [sym_commonmark_attribute] = STATE(1276), + [sym_language_attribute] = STATE(1276), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_insert_token2] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4225), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(541)] = { - [sym__qmd_attribute] = STATE(821), - [sym_raw_attribute] = STATE(821), - [sym_commonmark_attribute] = STATE(821), - [sym_language_attribute] = STATE(821), - [sym__backslash_escape] = ACTIONS(4697), - [sym_entity_reference] = ACTIONS(4697), - [sym_numeric_character_reference] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_PERCENT] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_BSLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [sym__newline_token] = ACTIONS(4697), - [aux_sym_insert_token1] = ACTIONS(4697), - [aux_sym_delete_token1] = ACTIONS(4697), - [aux_sym_highlight_token1] = ACTIONS(4697), - [aux_sym_edit_comment_token1] = ACTIONS(4697), - [anon_sym_CARET_LBRACK] = ACTIONS(4697), - [anon_sym_LBRACK_CARET] = ACTIONS(4697), - [sym_uri_autolink] = ACTIONS(4697), - [sym_email_autolink] = ACTIONS(4697), - [sym__whitespace_ge_2] = ACTIONS(4697), - [aux_sym__whitespace_token1] = ACTIONS(4699), - [sym__word_no_digit] = ACTIONS(4697), - [sym__digits] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4697), - [sym__code_span_start] = ACTIONS(4697), - [sym__emphasis_open_star] = ACTIONS(4697), - [sym__emphasis_open_underscore] = ACTIONS(4697), - [sym__strikeout_open] = ACTIONS(4697), - [sym__latex_span_start] = ACTIONS(4697), - [sym__single_quote_open] = ACTIONS(4697), - [sym__double_quote_open] = ACTIONS(4697), - [sym__double_quote_close] = ACTIONS(4697), - [sym__superscript_open] = ACTIONS(4697), - [sym__subscript_open] = ACTIONS(4697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4697), - [sym__cite_author_in_text] = ACTIONS(4697), - [sym__cite_suppress_author] = ACTIONS(4697), - [sym__shortcode_open_escaped] = ACTIONS(4697), - [sym__shortcode_open] = ACTIONS(4697), - [sym__unclosed_span] = ACTIONS(4697), - [sym__strong_emphasis_open_star] = ACTIONS(4697), - [sym__strong_emphasis_open_underscore] = ACTIONS(4697), + [sym__qmd_attribute] = STATE(1664), + [sym_raw_attribute] = STATE(1664), + [sym_commonmark_attribute] = STATE(1664), + [sym_language_attribute] = STATE(1664), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__double_quote_close] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(542)] = { - [sym__qmd_attribute] = STATE(833), - [sym_raw_attribute] = STATE(833), - [sym_commonmark_attribute] = STATE(833), - [sym_language_attribute] = STATE(833), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__double_quote_close] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [sym__qmd_attribute] = STATE(1289), + [sym_raw_attribute] = STATE(1289), + [sym_commonmark_attribute] = STATE(1289), + [sym_language_attribute] = STATE(1289), + [sym__backslash_escape] = ACTIONS(4227), + [sym_entity_reference] = ACTIONS(4227), + [sym_numeric_character_reference] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_BSLASH] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_BQUOTE] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [sym__newline_token] = ACTIONS(4227), + [aux_sym_insert_token1] = ACTIONS(4227), + [aux_sym_insert_token2] = ACTIONS(4227), + [aux_sym_delete_token1] = ACTIONS(4227), + [aux_sym_highlight_token1] = ACTIONS(4227), + [aux_sym_edit_comment_token1] = ACTIONS(4227), + [anon_sym_CARET_LBRACK] = ACTIONS(4227), + [anon_sym_LBRACK_CARET] = ACTIONS(4227), + [sym_uri_autolink] = ACTIONS(4227), + [sym_email_autolink] = ACTIONS(4227), + [sym__whitespace_ge_2] = ACTIONS(4229), + [aux_sym__whitespace_token1] = ACTIONS(4229), + [sym__word_no_digit] = ACTIONS(4227), + [sym__digits] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [sym__code_span_start] = ACTIONS(4227), + [sym__emphasis_open_star] = ACTIONS(4227), + [sym__emphasis_open_underscore] = ACTIONS(4227), + [sym__strikeout_open] = ACTIONS(4227), + [sym__latex_span_start] = ACTIONS(4227), + [sym__single_quote_open] = ACTIONS(4227), + [sym__double_quote_open] = ACTIONS(4227), + [sym__superscript_open] = ACTIONS(4227), + [sym__subscript_open] = ACTIONS(4227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4227), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4227), + [sym__cite_author_in_text] = ACTIONS(4227), + [sym__cite_suppress_author] = ACTIONS(4227), + [sym__shortcode_open_escaped] = ACTIONS(4227), + [sym__shortcode_open] = ACTIONS(4227), + [sym__unclosed_span] = ACTIONS(4227), + [sym__strong_emphasis_open_star] = ACTIONS(4227), + [sym__strong_emphasis_open_underscore] = ACTIONS(4227), }, [STATE(543)] = { - [sym__qmd_attribute] = STATE(1358), - [sym_raw_attribute] = STATE(1358), - [sym_commonmark_attribute] = STATE(1358), - [sym_language_attribute] = STATE(1358), - [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_STAR] = 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(4713), - [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), + [sym__qmd_attribute] = STATE(1298), + [sym_raw_attribute] = STATE(1298), + [sym_commonmark_attribute] = STATE(1298), + [sym_language_attribute] = STATE(1298), + [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(4271), + [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_insert_token2] = 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(4183), + [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(544)] = { - [sym__qmd_attribute] = STATE(843), - [sym_raw_attribute] = STATE(843), - [sym_commonmark_attribute] = STATE(843), - [sym_language_attribute] = STATE(843), - [sym__backslash_escape] = ACTIONS(4641), - [sym_entity_reference] = ACTIONS(4641), - [sym_numeric_character_reference] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_BSLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [sym__newline_token] = ACTIONS(4641), - [aux_sym_insert_token1] = ACTIONS(4641), - [aux_sym_delete_token1] = ACTIONS(4641), - [aux_sym_highlight_token1] = ACTIONS(4641), - [aux_sym_edit_comment_token1] = ACTIONS(4641), - [anon_sym_CARET_LBRACK] = ACTIONS(4641), - [anon_sym_LBRACK_CARET] = ACTIONS(4641), - [sym_uri_autolink] = ACTIONS(4641), - [sym_email_autolink] = ACTIONS(4641), - [sym__whitespace_ge_2] = ACTIONS(4641), - [aux_sym__whitespace_token1] = ACTIONS(4643), - [sym__word_no_digit] = ACTIONS(4641), - [sym__digits] = ACTIONS(4641), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4641), - [sym__code_span_start] = ACTIONS(4641), - [sym__emphasis_open_star] = ACTIONS(4641), - [sym__emphasis_open_underscore] = ACTIONS(4641), - [sym__strikeout_open] = ACTIONS(4641), - [sym__latex_span_start] = ACTIONS(4641), - [sym__single_quote_open] = ACTIONS(4641), - [sym__double_quote_open] = ACTIONS(4641), - [sym__double_quote_close] = ACTIONS(4641), - [sym__superscript_open] = ACTIONS(4641), - [sym__subscript_open] = ACTIONS(4641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4641), - [sym__cite_author_in_text] = ACTIONS(4641), - [sym__cite_suppress_author] = ACTIONS(4641), - [sym__shortcode_open_escaped] = ACTIONS(4641), - [sym__shortcode_open] = ACTIONS(4641), - [sym__unclosed_span] = ACTIONS(4641), - [sym__strong_emphasis_open_star] = ACTIONS(4641), - [sym__strong_emphasis_open_underscore] = ACTIONS(4641), + [sym__qmd_attribute] = STATE(1300), + [sym_raw_attribute] = STATE(1300), + [sym_commonmark_attribute] = STATE(1300), + [sym_language_attribute] = STATE(1300), + [sym__backslash_escape] = ACTIONS(4231), + [sym_entity_reference] = ACTIONS(4231), + [sym_numeric_character_reference] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4233), + [anon_sym_GT] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_BSLASH] = ACTIONS(4233), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [sym__newline_token] = ACTIONS(4231), + [aux_sym_insert_token1] = ACTIONS(4231), + [aux_sym_insert_token2] = ACTIONS(4231), + [aux_sym_delete_token1] = ACTIONS(4231), + [aux_sym_highlight_token1] = ACTIONS(4231), + [aux_sym_edit_comment_token1] = ACTIONS(4231), + [anon_sym_CARET_LBRACK] = ACTIONS(4231), + [anon_sym_LBRACK_CARET] = ACTIONS(4231), + [sym_uri_autolink] = ACTIONS(4231), + [sym_email_autolink] = ACTIONS(4231), + [sym__whitespace_ge_2] = ACTIONS(4233), + [aux_sym__whitespace_token1] = ACTIONS(4233), + [sym__word_no_digit] = ACTIONS(4231), + [sym__digits] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [sym__code_span_start] = ACTIONS(4231), + [sym__emphasis_open_star] = ACTIONS(4231), + [sym__emphasis_open_underscore] = ACTIONS(4231), + [sym__strikeout_open] = ACTIONS(4231), + [sym__latex_span_start] = ACTIONS(4231), + [sym__single_quote_open] = ACTIONS(4231), + [sym__double_quote_open] = ACTIONS(4231), + [sym__superscript_open] = ACTIONS(4231), + [sym__subscript_open] = ACTIONS(4231), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4231), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4231), + [sym__cite_author_in_text] = ACTIONS(4231), + [sym__cite_suppress_author] = ACTIONS(4231), + [sym__shortcode_open_escaped] = ACTIONS(4231), + [sym__shortcode_open] = ACTIONS(4231), + [sym__unclosed_span] = ACTIONS(4231), + [sym__strong_emphasis_open_star] = ACTIONS(4231), + [sym__strong_emphasis_open_underscore] = ACTIONS(4231), }, [STATE(545)] = { - [sym__qmd_attribute] = STATE(1116), - [sym_raw_attribute] = STATE(1116), - [sym_commonmark_attribute] = STATE(1116), - [sym_language_attribute] = STATE(1116), - [ts_builtin_sym_end] = ACTIONS(4665), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__qmd_attribute] = STATE(1307), + [sym_raw_attribute] = STATE(1307), + [sym_commonmark_attribute] = STATE(1307), + [sym_language_attribute] = STATE(1307), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_insert_token2] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4237), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(546)] = { - [sym__qmd_attribute] = STATE(851), - [sym_raw_attribute] = STATE(851), - [sym_commonmark_attribute] = STATE(851), - [sym_language_attribute] = STATE(851), - [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_STAR] = 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(4709), - [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), + [sym__qmd_attribute] = STATE(1309), + [sym_raw_attribute] = STATE(1309), + [sym_commonmark_attribute] = STATE(1309), + [sym_language_attribute] = STATE(1309), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_insert_token2] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4241), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(547)] = { - [sym__qmd_attribute] = STATE(852), - [sym_raw_attribute] = STATE(852), - [sym_commonmark_attribute] = STATE(852), - [sym_language_attribute] = STATE(852), - [sym__backslash_escape] = ACTIONS(4653), - [sym_entity_reference] = ACTIONS(4653), - [sym_numeric_character_reference] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4655), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4655), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4655), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_BSLASH] = ACTIONS(4655), - [anon_sym_CARET] = ACTIONS(4655), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym_RPAREN] = ACTIONS(4653), - [sym__newline_token] = ACTIONS(4653), - [aux_sym_insert_token1] = ACTIONS(4653), - [aux_sym_delete_token1] = ACTIONS(4653), - [aux_sym_highlight_token1] = ACTIONS(4653), - [aux_sym_edit_comment_token1] = ACTIONS(4653), - [anon_sym_CARET_LBRACK] = ACTIONS(4653), - [anon_sym_LBRACK_CARET] = ACTIONS(4653), - [sym_uri_autolink] = ACTIONS(4653), - [sym_email_autolink] = ACTIONS(4653), - [sym__whitespace_ge_2] = ACTIONS(4653), - [aux_sym__whitespace_token1] = ACTIONS(4655), - [sym__word_no_digit] = ACTIONS(4653), - [sym__digits] = ACTIONS(4653), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [sym__code_span_start] = ACTIONS(4653), - [sym__emphasis_open_star] = ACTIONS(4653), - [sym__emphasis_open_underscore] = ACTIONS(4653), - [sym__strikeout_open] = ACTIONS(4653), - [sym__latex_span_start] = ACTIONS(4653), - [sym__single_quote_open] = ACTIONS(4653), - [sym__double_quote_open] = ACTIONS(4653), - [sym__double_quote_close] = ACTIONS(4653), - [sym__superscript_open] = ACTIONS(4653), - [sym__subscript_open] = ACTIONS(4653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4653), - [sym__cite_author_in_text] = ACTIONS(4653), - [sym__cite_suppress_author] = ACTIONS(4653), - [sym__shortcode_open_escaped] = ACTIONS(4653), - [sym__shortcode_open] = ACTIONS(4653), - [sym__unclosed_span] = ACTIONS(4653), - [sym__strong_emphasis_open_star] = ACTIONS(4653), - [sym__strong_emphasis_open_underscore] = ACTIONS(4653), + [sym__qmd_attribute] = STATE(1315), + [sym_raw_attribute] = STATE(1315), + [sym_commonmark_attribute] = STATE(1315), + [sym_language_attribute] = STATE(1315), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_insert_token2] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4245), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(548)] = { - [sym__qmd_attribute] = STATE(858), - [sym_raw_attribute] = STATE(858), - [sym_commonmark_attribute] = STATE(858), - [sym_language_attribute] = STATE(858), - [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_STAR] = 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(4709), - [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__double_quote_close] = 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), + [sym__qmd_attribute] = STATE(1316), + [sym_raw_attribute] = STATE(1316), + [sym_commonmark_attribute] = STATE(1316), + [sym_language_attribute] = STATE(1316), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_insert_token2] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4249), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(549)] = { - [sym__qmd_attribute] = STATE(859), - [sym_raw_attribute] = STATE(859), - [sym_commonmark_attribute] = STATE(859), - [sym_language_attribute] = STATE(859), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__double_quote_close] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [sym__qmd_attribute] = STATE(1320), + [sym_raw_attribute] = STATE(1320), + [sym_commonmark_attribute] = STATE(1320), + [sym_language_attribute] = STATE(1320), + [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(4271), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(550)] = { - [sym__qmd_attribute] = STATE(864), - [sym_raw_attribute] = STATE(864), - [sym_commonmark_attribute] = STATE(864), - [sym_language_attribute] = STATE(864), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__double_quote_close] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [sym__qmd_attribute] = STATE(1322), + [sym_raw_attribute] = STATE(1322), + [sym_commonmark_attribute] = STATE(1322), + [sym_language_attribute] = STATE(1322), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_insert_token2] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4257), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(551)] = { - [sym__qmd_attribute] = STATE(865), - [sym_raw_attribute] = STATE(865), - [sym_commonmark_attribute] = STATE(865), - [sym_language_attribute] = STATE(865), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__double_quote_close] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [sym__qmd_attribute] = STATE(1324), + [sym_raw_attribute] = STATE(1324), + [sym_commonmark_attribute] = STATE(1324), + [sym_language_attribute] = STATE(1324), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_insert_token2] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4189), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(552)] = { - [sym__qmd_attribute] = STATE(869), - [sym_raw_attribute] = STATE(869), - [sym_commonmark_attribute] = STATE(869), - [sym_language_attribute] = STATE(869), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__double_quote_close] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__qmd_attribute] = STATE(1326), + [sym_raw_attribute] = STATE(1326), + [sym_commonmark_attribute] = STATE(1326), + [sym_language_attribute] = STATE(1326), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_insert_token2] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4195), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(553)] = { - [sym__qmd_attribute] = STATE(871), - [sym_raw_attribute] = STATE(871), - [sym_commonmark_attribute] = STATE(871), - [sym_language_attribute] = STATE(871), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__double_quote_close] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [sym__qmd_attribute] = STATE(1328), + [sym_raw_attribute] = STATE(1328), + [sym_commonmark_attribute] = STATE(1328), + [sym_language_attribute] = STATE(1328), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_insert_token2] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4199), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(554)] = { - [sym__qmd_attribute] = STATE(872), - [sym_raw_attribute] = STATE(872), - [sym_commonmark_attribute] = STATE(872), - [sym_language_attribute] = STATE(872), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__double_quote_close] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__qmd_attribute] = STATE(1329), + [sym_raw_attribute] = STATE(1329), + [sym_commonmark_attribute] = STATE(1329), + [sym_language_attribute] = STATE(1329), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_insert_token2] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4203), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(555)] = { - [sym__qmd_attribute] = STATE(873), - [sym_raw_attribute] = STATE(873), - [sym_commonmark_attribute] = STATE(873), - [sym_language_attribute] = STATE(873), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__double_quote_close] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__qmd_attribute] = STATE(1595), + [sym_raw_attribute] = STATE(1595), + [sym_commonmark_attribute] = STATE(1595), + [sym_language_attribute] = STATE(1595), + [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(4217), + [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(556)] = { - [sym__qmd_attribute] = STATE(874), - [sym_raw_attribute] = STATE(874), - [sym_commonmark_attribute] = STATE(874), - [sym_language_attribute] = STATE(874), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__double_quote_close] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [sym__qmd_attribute] = STATE(1617), + [sym_raw_attribute] = STATE(1617), + [sym_commonmark_attribute] = STATE(1617), + [sym_language_attribute] = STATE(1617), + [ts_builtin_sym_end] = ACTIONS(4231), + [sym__backslash_escape] = ACTIONS(4231), + [sym_entity_reference] = ACTIONS(4231), + [sym_numeric_character_reference] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4233), + [anon_sym_GT] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_BSLASH] = ACTIONS(4233), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [sym__newline_token] = ACTIONS(4231), + [aux_sym_insert_token1] = ACTIONS(4231), + [aux_sym_delete_token1] = ACTIONS(4231), + [aux_sym_highlight_token1] = ACTIONS(4231), + [aux_sym_edit_comment_token1] = ACTIONS(4231), + [anon_sym_CARET_LBRACK] = ACTIONS(4231), + [anon_sym_LBRACK_CARET] = ACTIONS(4231), + [sym_uri_autolink] = ACTIONS(4231), + [sym_email_autolink] = ACTIONS(4231), + [sym__whitespace_ge_2] = ACTIONS(4231), + [aux_sym__whitespace_token1] = ACTIONS(4233), + [sym__word_no_digit] = ACTIONS(4231), + [sym__digits] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [sym__code_span_start] = ACTIONS(4231), + [sym__emphasis_open_star] = ACTIONS(4231), + [sym__emphasis_open_underscore] = ACTIONS(4231), + [sym__strikeout_open] = ACTIONS(4231), + [sym__latex_span_start] = ACTIONS(4231), + [sym__single_quote_open] = ACTIONS(4231), + [sym__double_quote_open] = ACTIONS(4231), + [sym__superscript_open] = ACTIONS(4231), + [sym__subscript_open] = ACTIONS(4231), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4231), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4231), + [sym__cite_author_in_text] = ACTIONS(4231), + [sym__cite_suppress_author] = ACTIONS(4231), + [sym__shortcode_open_escaped] = ACTIONS(4231), + [sym__shortcode_open] = ACTIONS(4231), + [sym__unclosed_span] = ACTIONS(4231), + [sym__strong_emphasis_open_star] = ACTIONS(4231), + [sym__strong_emphasis_open_underscore] = ACTIONS(4231), }, [STATE(557)] = { - [sym__qmd_attribute] = STATE(875), - [sym_raw_attribute] = STATE(875), - [sym_commonmark_attribute] = STATE(875), - [sym_language_attribute] = STATE(875), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4709), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__double_quote_close] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [sym__qmd_attribute] = STATE(1032), + [sym_raw_attribute] = STATE(1032), + [sym_commonmark_attribute] = STATE(1032), + [sym_language_attribute] = STATE(1032), + [ts_builtin_sym_end] = ACTIONS(4235), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(558)] = { - [sym__qmd_attribute] = STATE(1119), - [sym_raw_attribute] = STATE(1119), - [sym_commonmark_attribute] = STATE(1119), - [sym_language_attribute] = STATE(1119), - [ts_builtin_sym_end] = ACTIONS(4669), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [sym__qmd_attribute] = STATE(1130), + [sym_raw_attribute] = STATE(1130), + [sym_commonmark_attribute] = STATE(1130), + [sym_language_attribute] = STATE(1130), + [ts_builtin_sym_end] = ACTIONS(4239), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(559)] = { - [sym__qmd_attribute] = STATE(1360), - [sym_raw_attribute] = STATE(1360), - [sym_commonmark_attribute] = STATE(1360), - [sym_language_attribute] = STATE(1360), - [sym__backslash_escape] = ACTIONS(4653), - [sym_entity_reference] = ACTIONS(4653), - [sym_numeric_character_reference] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4655), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4655), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4655), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_BSLASH] = ACTIONS(4655), - [anon_sym_CARET] = ACTIONS(4655), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym_RPAREN] = ACTIONS(4653), - [sym__newline_token] = ACTIONS(4653), - [aux_sym_insert_token1] = ACTIONS(4653), - [aux_sym_insert_token2] = ACTIONS(4653), - [aux_sym_delete_token1] = ACTIONS(4653), - [aux_sym_highlight_token1] = ACTIONS(4653), - [aux_sym_edit_comment_token1] = ACTIONS(4653), - [anon_sym_CARET_LBRACK] = ACTIONS(4653), - [anon_sym_LBRACK_CARET] = ACTIONS(4653), - [sym_uri_autolink] = ACTIONS(4653), - [sym_email_autolink] = ACTIONS(4653), - [sym__whitespace_ge_2] = ACTIONS(4655), - [aux_sym__whitespace_token1] = ACTIONS(4655), - [sym__word_no_digit] = ACTIONS(4653), - [sym__digits] = ACTIONS(4653), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [sym__code_span_start] = ACTIONS(4653), - [sym__emphasis_open_star] = ACTIONS(4653), - [sym__emphasis_open_underscore] = ACTIONS(4653), - [sym__strikeout_open] = ACTIONS(4653), - [sym__latex_span_start] = ACTIONS(4653), - [sym__single_quote_open] = ACTIONS(4653), - [sym__double_quote_open] = ACTIONS(4653), - [sym__superscript_open] = ACTIONS(4653), - [sym__subscript_open] = ACTIONS(4653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4653), - [sym__cite_author_in_text] = ACTIONS(4653), - [sym__cite_suppress_author] = ACTIONS(4653), - [sym__shortcode_open_escaped] = ACTIONS(4653), - [sym__shortcode_open] = ACTIONS(4653), - [sym__unclosed_span] = ACTIONS(4653), - [sym__strong_emphasis_open_star] = ACTIONS(4653), - [sym__strong_emphasis_open_underscore] = ACTIONS(4653), + [sym__qmd_attribute] = STATE(818), + [sym_raw_attribute] = STATE(818), + [sym_commonmark_attribute] = STATE(818), + [sym_language_attribute] = STATE(818), + [ts_builtin_sym_end] = ACTIONS(4243), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(560)] = { - [sym__qmd_attribute] = STATE(898), - [sym_raw_attribute] = STATE(898), - [sym_commonmark_attribute] = STATE(898), - [sym_language_attribute] = STATE(898), - [sym__backslash_escape] = ACTIONS(4685), - [sym_entity_reference] = ACTIONS(4685), - [sym_numeric_character_reference] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_BSLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4715), - [anon_sym_RPAREN] = ACTIONS(4685), - [sym__newline_token] = ACTIONS(4685), - [aux_sym_insert_token1] = ACTIONS(4685), - [aux_sym_delete_token1] = ACTIONS(4685), - [aux_sym_highlight_token1] = ACTIONS(4685), - [aux_sym_edit_comment_token1] = ACTIONS(4685), - [anon_sym_CARET_LBRACK] = ACTIONS(4685), - [anon_sym_LBRACK_CARET] = ACTIONS(4685), - [sym_uri_autolink] = ACTIONS(4685), - [sym_email_autolink] = ACTIONS(4685), - [sym__whitespace_ge_2] = ACTIONS(4685), - [aux_sym__whitespace_token1] = ACTIONS(4687), - [sym__word_no_digit] = ACTIONS(4685), - [sym__digits] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4685), - [sym__code_span_start] = ACTIONS(4685), - [sym__emphasis_open_star] = ACTIONS(4685), - [sym__emphasis_open_underscore] = ACTIONS(4685), - [sym__strikeout_open] = ACTIONS(4685), - [sym__latex_span_start] = ACTIONS(4685), - [sym__single_quote_open] = ACTIONS(4685), - [sym__double_quote_open] = ACTIONS(4685), - [sym__superscript_open] = ACTIONS(4685), - [sym__superscript_close] = ACTIONS(4685), - [sym__subscript_open] = ACTIONS(4685), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4685), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4685), - [sym__cite_author_in_text] = ACTIONS(4685), - [sym__cite_suppress_author] = ACTIONS(4685), - [sym__shortcode_open_escaped] = ACTIONS(4685), - [sym__shortcode_open] = ACTIONS(4685), - [sym__unclosed_span] = ACTIONS(4685), - [sym__strong_emphasis_open_star] = ACTIONS(4685), - [sym__strong_emphasis_open_underscore] = ACTIONS(4685), + [sym__qmd_attribute] = STATE(824), + [sym_raw_attribute] = STATE(824), + [sym_commonmark_attribute] = STATE(824), + [sym_language_attribute] = STATE(824), + [ts_builtin_sym_end] = ACTIONS(4247), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(561)] = { - [sym__qmd_attribute] = STATE(899), - [sym_raw_attribute] = STATE(899), - [sym_commonmark_attribute] = STATE(899), - [sym_language_attribute] = STATE(899), - [sym__backslash_escape] = ACTIONS(4693), - [sym_entity_reference] = ACTIONS(4693), - [sym_numeric_character_reference] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [sym__newline_token] = ACTIONS(4693), - [aux_sym_insert_token1] = ACTIONS(4693), - [aux_sym_delete_token1] = ACTIONS(4693), - [aux_sym_highlight_token1] = ACTIONS(4693), - [aux_sym_edit_comment_token1] = ACTIONS(4693), - [anon_sym_CARET_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACK_CARET] = ACTIONS(4693), - [sym_uri_autolink] = ACTIONS(4693), - [sym_email_autolink] = ACTIONS(4693), - [sym__whitespace_ge_2] = ACTIONS(4693), - [aux_sym__whitespace_token1] = ACTIONS(4695), - [sym__word_no_digit] = ACTIONS(4693), - [sym__digits] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [sym__code_span_start] = ACTIONS(4693), - [sym__emphasis_open_star] = ACTIONS(4693), - [sym__emphasis_open_underscore] = ACTIONS(4693), - [sym__strikeout_open] = ACTIONS(4693), - [sym__latex_span_start] = ACTIONS(4693), - [sym__single_quote_open] = ACTIONS(4693), - [sym__double_quote_open] = ACTIONS(4693), - [sym__superscript_open] = ACTIONS(4693), - [sym__superscript_close] = ACTIONS(4693), - [sym__subscript_open] = ACTIONS(4693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4693), - [sym__cite_author_in_text] = ACTIONS(4693), - [sym__cite_suppress_author] = ACTIONS(4693), - [sym__shortcode_open_escaped] = ACTIONS(4693), - [sym__shortcode_open] = ACTIONS(4693), - [sym__unclosed_span] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4693), - [sym__strong_emphasis_open_underscore] = ACTIONS(4693), + [sym__qmd_attribute] = STATE(1603), + [sym_raw_attribute] = STATE(1603), + [sym_commonmark_attribute] = STATE(1603), + [sym_language_attribute] = STATE(1603), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__single_quote_close] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(562)] = { - [sym__qmd_attribute] = STATE(1421), - [sym_raw_attribute] = STATE(1421), - [sym_commonmark_attribute] = STATE(1421), - [sym_language_attribute] = STATE(1421), - [ts_builtin_sym_end] = ACTIONS(4693), - [sym__backslash_escape] = ACTIONS(4693), - [sym_entity_reference] = ACTIONS(4693), - [sym_numeric_character_reference] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [sym__newline_token] = ACTIONS(4693), - [aux_sym_insert_token1] = ACTIONS(4693), - [aux_sym_delete_token1] = ACTIONS(4693), - [aux_sym_highlight_token1] = ACTIONS(4693), - [aux_sym_edit_comment_token1] = ACTIONS(4693), - [anon_sym_CARET_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACK_CARET] = ACTIONS(4693), - [sym_uri_autolink] = ACTIONS(4693), - [sym_email_autolink] = ACTIONS(4693), - [sym__whitespace_ge_2] = ACTIONS(4693), - [aux_sym__whitespace_token1] = ACTIONS(4695), - [sym__word_no_digit] = ACTIONS(4693), - [sym__digits] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [sym__code_span_start] = ACTIONS(4693), - [sym__emphasis_open_star] = ACTIONS(4693), - [sym__emphasis_open_underscore] = ACTIONS(4693), - [sym__strikeout_open] = ACTIONS(4693), - [sym__latex_span_start] = ACTIONS(4693), - [sym__single_quote_open] = ACTIONS(4693), - [sym__double_quote_open] = ACTIONS(4693), - [sym__superscript_open] = ACTIONS(4693), - [sym__subscript_open] = ACTIONS(4693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4693), - [sym__cite_author_in_text] = ACTIONS(4693), - [sym__cite_suppress_author] = ACTIONS(4693), - [sym__shortcode_open_escaped] = ACTIONS(4693), - [sym__shortcode_open] = ACTIONS(4693), - [sym__unclosed_span] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4693), - [sym__strong_emphasis_open_underscore] = ACTIONS(4693), + [sym__qmd_attribute] = STATE(836), + [sym_raw_attribute] = STATE(836), + [sym_commonmark_attribute] = STATE(836), + [sym_language_attribute] = STATE(836), + [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(4185), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(563)] = { - [sym__qmd_attribute] = STATE(900), - [sym_raw_attribute] = STATE(900), - [sym_commonmark_attribute] = STATE(900), - [sym_language_attribute] = STATE(900), - [sym__backslash_escape] = ACTIONS(4697), - [sym_entity_reference] = ACTIONS(4697), - [sym_numeric_character_reference] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_PERCENT] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_BSLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [sym__newline_token] = ACTIONS(4697), - [aux_sym_insert_token1] = ACTIONS(4697), - [aux_sym_delete_token1] = ACTIONS(4697), - [aux_sym_highlight_token1] = ACTIONS(4697), - [aux_sym_edit_comment_token1] = ACTIONS(4697), - [anon_sym_CARET_LBRACK] = ACTIONS(4697), - [anon_sym_LBRACK_CARET] = ACTIONS(4697), - [sym_uri_autolink] = ACTIONS(4697), - [sym_email_autolink] = ACTIONS(4697), - [sym__whitespace_ge_2] = ACTIONS(4697), - [aux_sym__whitespace_token1] = ACTIONS(4699), - [sym__word_no_digit] = ACTIONS(4697), - [sym__digits] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4697), - [sym__code_span_start] = ACTIONS(4697), - [sym__emphasis_open_star] = ACTIONS(4697), - [sym__emphasis_open_underscore] = ACTIONS(4697), - [sym__strikeout_open] = ACTIONS(4697), - [sym__latex_span_start] = ACTIONS(4697), - [sym__single_quote_open] = ACTIONS(4697), - [sym__double_quote_open] = ACTIONS(4697), - [sym__superscript_open] = ACTIONS(4697), - [sym__superscript_close] = ACTIONS(4697), - [sym__subscript_open] = ACTIONS(4697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4697), - [sym__cite_author_in_text] = ACTIONS(4697), - [sym__cite_suppress_author] = ACTIONS(4697), - [sym__shortcode_open_escaped] = ACTIONS(4697), - [sym__shortcode_open] = ACTIONS(4697), - [sym__unclosed_span] = ACTIONS(4697), - [sym__strong_emphasis_open_star] = ACTIONS(4697), - [sym__strong_emphasis_open_underscore] = ACTIONS(4697), + [sym__qmd_attribute] = STATE(840), + [sym_raw_attribute] = STATE(840), + [sym_commonmark_attribute] = STATE(840), + [sym_language_attribute] = STATE(840), + [ts_builtin_sym_end] = ACTIONS(4255), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(564)] = { - [sym__qmd_attribute] = STATE(913), - [sym_raw_attribute] = STATE(913), - [sym_commonmark_attribute] = STATE(913), - [sym_language_attribute] = STATE(913), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__superscript_close] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [sym__qmd_attribute] = STATE(844), + [sym_raw_attribute] = STATE(844), + [sym_commonmark_attribute] = STATE(844), + [sym_language_attribute] = STATE(844), + [ts_builtin_sym_end] = ACTIONS(4187), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(565)] = { - [sym__qmd_attribute] = STATE(922), - [sym_raw_attribute] = STATE(922), - [sym_commonmark_attribute] = STATE(922), - [sym_language_attribute] = STATE(922), - [sym__backslash_escape] = ACTIONS(4641), - [sym_entity_reference] = ACTIONS(4641), - [sym_numeric_character_reference] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_BSLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [sym__newline_token] = ACTIONS(4641), - [aux_sym_insert_token1] = ACTIONS(4641), - [aux_sym_delete_token1] = ACTIONS(4641), - [aux_sym_highlight_token1] = ACTIONS(4641), - [aux_sym_edit_comment_token1] = ACTIONS(4641), - [anon_sym_CARET_LBRACK] = ACTIONS(4641), - [anon_sym_LBRACK_CARET] = ACTIONS(4641), - [sym_uri_autolink] = ACTIONS(4641), - [sym_email_autolink] = ACTIONS(4641), - [sym__whitespace_ge_2] = ACTIONS(4641), - [aux_sym__whitespace_token1] = ACTIONS(4643), - [sym__word_no_digit] = ACTIONS(4641), - [sym__digits] = ACTIONS(4641), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4641), - [sym__code_span_start] = ACTIONS(4641), - [sym__emphasis_open_star] = ACTIONS(4641), - [sym__emphasis_open_underscore] = ACTIONS(4641), - [sym__strikeout_open] = ACTIONS(4641), - [sym__latex_span_start] = ACTIONS(4641), - [sym__single_quote_open] = ACTIONS(4641), - [sym__double_quote_open] = ACTIONS(4641), - [sym__superscript_open] = ACTIONS(4641), - [sym__superscript_close] = ACTIONS(4641), - [sym__subscript_open] = ACTIONS(4641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4641), - [sym__cite_author_in_text] = ACTIONS(4641), - [sym__cite_suppress_author] = ACTIONS(4641), - [sym__shortcode_open_escaped] = ACTIONS(4641), - [sym__shortcode_open] = ACTIONS(4641), - [sym__unclosed_span] = ACTIONS(4641), - [sym__strong_emphasis_open_star] = ACTIONS(4641), - [sym__strong_emphasis_open_underscore] = ACTIONS(4641), + [sym__qmd_attribute] = STATE(854), + [sym_raw_attribute] = STATE(854), + [sym_commonmark_attribute] = STATE(854), + [sym_language_attribute] = STATE(854), + [ts_builtin_sym_end] = ACTIONS(4193), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(566)] = { - [sym__qmd_attribute] = STATE(1157), - [sym_raw_attribute] = STATE(1157), - [sym_commonmark_attribute] = STATE(1157), - [sym_language_attribute] = STATE(1157), - [ts_builtin_sym_end] = ACTIONS(4673), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__qmd_attribute] = STATE(867), + [sym_raw_attribute] = STATE(867), + [sym_commonmark_attribute] = STATE(867), + [sym_language_attribute] = STATE(867), + [ts_builtin_sym_end] = ACTIONS(4197), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(567)] = { - [sym__qmd_attribute] = STATE(930), - [sym_raw_attribute] = STATE(930), - [sym_commonmark_attribute] = STATE(930), - [sym_language_attribute] = STATE(930), - [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_STAR] = 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(4629), - [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), + [sym__qmd_attribute] = STATE(890), + [sym_raw_attribute] = STATE(890), + [sym_commonmark_attribute] = STATE(890), + [sym_language_attribute] = STATE(890), + [ts_builtin_sym_end] = ACTIONS(4201), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(568)] = { - [sym__qmd_attribute] = STATE(931), - [sym_raw_attribute] = STATE(931), - [sym_commonmark_attribute] = STATE(931), - [sym_language_attribute] = STATE(931), - [sym__backslash_escape] = ACTIONS(4653), - [sym_entity_reference] = ACTIONS(4653), - [sym_numeric_character_reference] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4655), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4655), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4655), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_BSLASH] = ACTIONS(4655), - [anon_sym_CARET] = ACTIONS(4655), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym_RPAREN] = ACTIONS(4653), - [sym__newline_token] = ACTIONS(4653), - [aux_sym_insert_token1] = ACTIONS(4653), - [aux_sym_delete_token1] = ACTIONS(4653), - [aux_sym_highlight_token1] = ACTIONS(4653), - [aux_sym_edit_comment_token1] = ACTIONS(4653), - [anon_sym_CARET_LBRACK] = ACTIONS(4653), - [anon_sym_LBRACK_CARET] = ACTIONS(4653), - [sym_uri_autolink] = ACTIONS(4653), - [sym_email_autolink] = ACTIONS(4653), - [sym__whitespace_ge_2] = ACTIONS(4653), - [aux_sym__whitespace_token1] = ACTIONS(4655), - [sym__word_no_digit] = ACTIONS(4653), - [sym__digits] = ACTIONS(4653), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [sym__code_span_start] = ACTIONS(4653), - [sym__emphasis_open_star] = ACTIONS(4653), - [sym__emphasis_open_underscore] = ACTIONS(4653), - [sym__strikeout_open] = ACTIONS(4653), - [sym__latex_span_start] = ACTIONS(4653), - [sym__single_quote_open] = ACTIONS(4653), - [sym__double_quote_open] = ACTIONS(4653), - [sym__superscript_open] = ACTIONS(4653), - [sym__superscript_close] = ACTIONS(4653), - [sym__subscript_open] = ACTIONS(4653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4653), - [sym__cite_author_in_text] = ACTIONS(4653), - [sym__cite_suppress_author] = ACTIONS(4653), - [sym__shortcode_open_escaped] = ACTIONS(4653), - [sym__shortcode_open] = ACTIONS(4653), - [sym__unclosed_span] = ACTIONS(4653), - [sym__strong_emphasis_open_star] = ACTIONS(4653), - [sym__strong_emphasis_open_underscore] = ACTIONS(4653), + [sym__qmd_attribute] = STATE(1360), + [sym_raw_attribute] = STATE(1360), + [sym_commonmark_attribute] = STATE(1360), + [sym_language_attribute] = STATE(1360), + [ts_builtin_sym_end] = ACTIONS(4223), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(569)] = { - [sym__qmd_attribute] = STATE(937), - [sym_raw_attribute] = STATE(937), - [sym_commonmark_attribute] = STATE(937), - [sym_language_attribute] = STATE(937), - [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_STAR] = 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(4629), - [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__superscript_close] = 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), + [sym__qmd_attribute] = STATE(1024), + [sym_raw_attribute] = STATE(1024), + [sym_commonmark_attribute] = STATE(1024), + [sym_language_attribute] = STATE(1024), + [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(4275), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4277), + [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__emphasis_close_star] = 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), }, [STATE(570)] = { - [sym__qmd_attribute] = STATE(938), - [sym_raw_attribute] = STATE(938), - [sym_commonmark_attribute] = STATE(938), - [sym_language_attribute] = STATE(938), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__superscript_close] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [sym__qmd_attribute] = STATE(1026), + [sym_raw_attribute] = STATE(1026), + [sym_commonmark_attribute] = STATE(1026), + [sym_language_attribute] = STATE(1026), + [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(4275), + [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(571)] = { - [sym__qmd_attribute] = STATE(944), - [sym_raw_attribute] = STATE(944), - [sym_commonmark_attribute] = STATE(944), - [sym_language_attribute] = STATE(944), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__superscript_close] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [sym__qmd_attribute] = STATE(1675), + [sym_raw_attribute] = STATE(1675), + [sym_commonmark_attribute] = STATE(1675), + [sym_language_attribute] = STATE(1675), + [sym__backslash_escape] = ACTIONS(4227), + [sym_entity_reference] = ACTIONS(4227), + [sym_numeric_character_reference] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_BSLASH] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_BQUOTE] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [sym__newline_token] = ACTIONS(4227), + [aux_sym_insert_token1] = ACTIONS(4227), + [aux_sym_delete_token1] = ACTIONS(4227), + [aux_sym_highlight_token1] = ACTIONS(4227), + [aux_sym_edit_comment_token1] = ACTIONS(4227), + [anon_sym_CARET_LBRACK] = ACTIONS(4227), + [anon_sym_LBRACK_CARET] = ACTIONS(4227), + [sym_uri_autolink] = ACTIONS(4227), + [sym_email_autolink] = ACTIONS(4227), + [sym__whitespace_ge_2] = ACTIONS(4227), + [aux_sym__whitespace_token1] = ACTIONS(4229), + [sym__word_no_digit] = ACTIONS(4227), + [sym__digits] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [sym__code_span_start] = ACTIONS(4227), + [sym__emphasis_open_star] = ACTIONS(4227), + [sym__emphasis_open_underscore] = ACTIONS(4227), + [sym__strikeout_open] = ACTIONS(4227), + [sym__latex_span_start] = ACTIONS(4227), + [sym__single_quote_open] = ACTIONS(4227), + [sym__double_quote_open] = ACTIONS(4227), + [sym__double_quote_close] = ACTIONS(4227), + [sym__superscript_open] = ACTIONS(4227), + [sym__subscript_open] = ACTIONS(4227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4227), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4227), + [sym__cite_author_in_text] = ACTIONS(4227), + [sym__cite_suppress_author] = ACTIONS(4227), + [sym__shortcode_open_escaped] = ACTIONS(4227), + [sym__shortcode_open] = ACTIONS(4227), + [sym__unclosed_span] = ACTIONS(4227), + [sym__strong_emphasis_open_star] = ACTIONS(4227), + [sym__strong_emphasis_open_underscore] = ACTIONS(4227), }, [STATE(572)] = { - [sym__qmd_attribute] = STATE(946), - [sym_raw_attribute] = STATE(946), - [sym_commonmark_attribute] = STATE(946), - [sym_language_attribute] = STATE(946), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__superscript_close] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [sym__qmd_attribute] = STATE(1034), + [sym_raw_attribute] = STATE(1034), + [sym_commonmark_attribute] = STATE(1034), + [sym_language_attribute] = STATE(1034), + [sym__backslash_escape] = ACTIONS(4219), + [sym_entity_reference] = ACTIONS(4219), + [sym_numeric_character_reference] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4221), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_POUND] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_COLON] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_BSLASH] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [sym__newline_token] = ACTIONS(4219), + [aux_sym_insert_token1] = ACTIONS(4219), + [aux_sym_delete_token1] = ACTIONS(4219), + [aux_sym_highlight_token1] = ACTIONS(4219), + [aux_sym_edit_comment_token1] = ACTIONS(4219), + [anon_sym_CARET_LBRACK] = ACTIONS(4219), + [anon_sym_LBRACK_CARET] = ACTIONS(4219), + [sym_uri_autolink] = ACTIONS(4219), + [sym_email_autolink] = ACTIONS(4219), + [sym__whitespace_ge_2] = ACTIONS(4219), + [aux_sym__whitespace_token1] = ACTIONS(4221), + [sym__word_no_digit] = ACTIONS(4219), + [sym__digits] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [sym__code_span_start] = ACTIONS(4219), + [sym__emphasis_open_star] = ACTIONS(4219), + [sym__emphasis_open_underscore] = ACTIONS(4219), + [sym__emphasis_close_star] = ACTIONS(4219), + [sym__strikeout_open] = ACTIONS(4219), + [sym__latex_span_start] = ACTIONS(4219), + [sym__single_quote_open] = ACTIONS(4219), + [sym__double_quote_open] = ACTIONS(4219), + [sym__superscript_open] = ACTIONS(4219), + [sym__subscript_open] = ACTIONS(4219), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4219), + [sym__cite_author_in_text] = ACTIONS(4219), + [sym__cite_suppress_author] = ACTIONS(4219), + [sym__shortcode_open_escaped] = ACTIONS(4219), + [sym__shortcode_open] = ACTIONS(4219), + [sym__unclosed_span] = ACTIONS(4219), + [sym__strong_emphasis_open_star] = ACTIONS(4219), + [sym__strong_emphasis_open_underscore] = ACTIONS(4219), }, [STATE(573)] = { - [sym__qmd_attribute] = STATE(949), - [sym_raw_attribute] = STATE(949), - [sym_commonmark_attribute] = STATE(949), - [sym_language_attribute] = STATE(949), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__superscript_close] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__qmd_attribute] = STATE(1117), + [sym_raw_attribute] = STATE(1117), + [sym_commonmark_attribute] = STATE(1117), + [sym_language_attribute] = STATE(1117), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__emphasis_close_star] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(574)] = { - [sym__qmd_attribute] = STATE(950), - [sym_raw_attribute] = STATE(950), - [sym_commonmark_attribute] = STATE(950), - [sym_language_attribute] = STATE(950), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__superscript_close] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [sym__qmd_attribute] = STATE(1684), + [sym_raw_attribute] = STATE(1684), + [sym_commonmark_attribute] = STATE(1684), + [sym_language_attribute] = STATE(1684), + [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(4263), + [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(575)] = { - [sym__qmd_attribute] = STATE(951), - [sym_raw_attribute] = STATE(951), - [sym_commonmark_attribute] = STATE(951), - [sym_language_attribute] = STATE(951), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__superscript_close] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__qmd_attribute] = STATE(1185), + [sym_raw_attribute] = STATE(1185), + [sym_commonmark_attribute] = STATE(1185), + [sym_language_attribute] = STATE(1185), + [sym__backslash_escape] = ACTIONS(4227), + [sym_entity_reference] = ACTIONS(4227), + [sym_numeric_character_reference] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_BSLASH] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_BQUOTE] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [sym__newline_token] = ACTIONS(4227), + [aux_sym_insert_token1] = ACTIONS(4227), + [aux_sym_delete_token1] = ACTIONS(4227), + [aux_sym_highlight_token1] = ACTIONS(4227), + [aux_sym_edit_comment_token1] = ACTIONS(4227), + [anon_sym_CARET_LBRACK] = ACTIONS(4227), + [anon_sym_LBRACK_CARET] = ACTIONS(4227), + [sym_uri_autolink] = ACTIONS(4227), + [sym_email_autolink] = ACTIONS(4227), + [sym__whitespace_ge_2] = ACTIONS(4227), + [aux_sym__whitespace_token1] = ACTIONS(4229), + [sym__word_no_digit] = ACTIONS(4227), + [sym__digits] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [sym__code_span_start] = ACTIONS(4227), + [sym__emphasis_open_star] = ACTIONS(4227), + [sym__emphasis_open_underscore] = ACTIONS(4227), + [sym__emphasis_close_star] = ACTIONS(4227), + [sym__strikeout_open] = ACTIONS(4227), + [sym__latex_span_start] = ACTIONS(4227), + [sym__single_quote_open] = ACTIONS(4227), + [sym__double_quote_open] = ACTIONS(4227), + [sym__superscript_open] = ACTIONS(4227), + [sym__subscript_open] = ACTIONS(4227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4227), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4227), + [sym__cite_author_in_text] = ACTIONS(4227), + [sym__cite_suppress_author] = ACTIONS(4227), + [sym__shortcode_open_escaped] = ACTIONS(4227), + [sym__shortcode_open] = ACTIONS(4227), + [sym__unclosed_span] = ACTIONS(4227), + [sym__strong_emphasis_open_star] = ACTIONS(4227), + [sym__strong_emphasis_open_underscore] = ACTIONS(4227), }, [STATE(576)] = { - [sym__qmd_attribute] = STATE(952), - [sym_raw_attribute] = STATE(952), - [sym_commonmark_attribute] = STATE(952), - [sym_language_attribute] = STATE(952), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__superscript_close] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__qmd_attribute] = STATE(1456), + [sym_raw_attribute] = STATE(1456), + [sym_commonmark_attribute] = STATE(1456), + [sym_language_attribute] = STATE(1456), + [ts_builtin_sym_end] = ACTIONS(4227), + [sym__backslash_escape] = ACTIONS(4227), + [sym_entity_reference] = ACTIONS(4227), + [sym_numeric_character_reference] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_BSLASH] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_BQUOTE] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [sym__newline_token] = ACTIONS(4227), + [aux_sym_insert_token1] = ACTIONS(4227), + [aux_sym_delete_token1] = ACTIONS(4227), + [aux_sym_highlight_token1] = ACTIONS(4227), + [aux_sym_edit_comment_token1] = ACTIONS(4227), + [anon_sym_CARET_LBRACK] = ACTIONS(4227), + [anon_sym_LBRACK_CARET] = ACTIONS(4227), + [sym_uri_autolink] = ACTIONS(4227), + [sym_email_autolink] = ACTIONS(4227), + [sym__whitespace_ge_2] = ACTIONS(4227), + [aux_sym__whitespace_token1] = ACTIONS(4229), + [sym__word_no_digit] = ACTIONS(4227), + [sym__digits] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [sym__code_span_start] = ACTIONS(4227), + [sym__emphasis_open_star] = ACTIONS(4227), + [sym__emphasis_open_underscore] = ACTIONS(4227), + [sym__strikeout_open] = ACTIONS(4227), + [sym__latex_span_start] = ACTIONS(4227), + [sym__single_quote_open] = ACTIONS(4227), + [sym__double_quote_open] = ACTIONS(4227), + [sym__superscript_open] = ACTIONS(4227), + [sym__subscript_open] = ACTIONS(4227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4227), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4227), + [sym__cite_author_in_text] = ACTIONS(4227), + [sym__cite_suppress_author] = ACTIONS(4227), + [sym__shortcode_open_escaped] = ACTIONS(4227), + [sym__shortcode_open] = ACTIONS(4227), + [sym__unclosed_span] = ACTIONS(4227), + [sym__strong_emphasis_open_star] = ACTIONS(4227), + [sym__strong_emphasis_open_underscore] = ACTIONS(4227), }, [STATE(577)] = { - [sym__qmd_attribute] = STATE(953), - [sym_raw_attribute] = STATE(953), - [sym_commonmark_attribute] = STATE(953), - [sym_language_attribute] = STATE(953), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__superscript_close] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [sym__qmd_attribute] = STATE(1036), + [sym_raw_attribute] = STATE(1036), + [sym_commonmark_attribute] = STATE(1036), + [sym_language_attribute] = STATE(1036), + [ts_builtin_sym_end] = ACTIONS(4219), + [sym__backslash_escape] = ACTIONS(4219), + [sym_entity_reference] = ACTIONS(4219), + [sym_numeric_character_reference] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4221), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_POUND] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_COLON] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_BSLASH] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [sym__newline_token] = ACTIONS(4219), + [aux_sym_insert_token1] = ACTIONS(4219), + [aux_sym_delete_token1] = ACTIONS(4219), + [aux_sym_highlight_token1] = ACTIONS(4219), + [aux_sym_edit_comment_token1] = ACTIONS(4219), + [anon_sym_CARET_LBRACK] = ACTIONS(4219), + [anon_sym_LBRACK_CARET] = ACTIONS(4219), + [sym_uri_autolink] = ACTIONS(4219), + [sym_email_autolink] = ACTIONS(4219), + [sym__whitespace_ge_2] = ACTIONS(4219), + [aux_sym__whitespace_token1] = ACTIONS(4221), + [sym__word_no_digit] = ACTIONS(4219), + [sym__digits] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [sym__code_span_start] = ACTIONS(4219), + [sym__emphasis_open_star] = ACTIONS(4219), + [sym__emphasis_open_underscore] = ACTIONS(4219), + [sym__strikeout_open] = ACTIONS(4219), + [sym__latex_span_start] = ACTIONS(4219), + [sym__single_quote_open] = ACTIONS(4219), + [sym__double_quote_open] = ACTIONS(4219), + [sym__superscript_open] = ACTIONS(4219), + [sym__subscript_open] = ACTIONS(4219), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4219), + [sym__cite_author_in_text] = ACTIONS(4219), + [sym__cite_suppress_author] = ACTIONS(4219), + [sym__shortcode_open_escaped] = ACTIONS(4219), + [sym__shortcode_open] = ACTIONS(4219), + [sym__unclosed_span] = ACTIONS(4219), + [sym__strong_emphasis_open_star] = ACTIONS(4219), + [sym__strong_emphasis_open_underscore] = ACTIONS(4219), }, [STATE(578)] = { - [sym__qmd_attribute] = STATE(1349), - [sym_raw_attribute] = STATE(1349), - [sym_commonmark_attribute] = STATE(1349), - [sym_language_attribute] = STATE(1349), - [sym__backslash_escape] = ACTIONS(4641), - [sym_entity_reference] = ACTIONS(4641), - [sym_numeric_character_reference] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_BSLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [sym__newline_token] = ACTIONS(4641), - [aux_sym_insert_token1] = ACTIONS(4641), - [aux_sym_insert_token2] = ACTIONS(4641), - [aux_sym_delete_token1] = ACTIONS(4641), - [aux_sym_highlight_token1] = ACTIONS(4641), - [aux_sym_edit_comment_token1] = ACTIONS(4641), - [anon_sym_CARET_LBRACK] = ACTIONS(4641), - [anon_sym_LBRACK_CARET] = ACTIONS(4641), - [sym_uri_autolink] = ACTIONS(4641), - [sym_email_autolink] = ACTIONS(4641), - [sym__whitespace_ge_2] = ACTIONS(4643), - [aux_sym__whitespace_token1] = ACTIONS(4643), - [sym__word_no_digit] = ACTIONS(4641), - [sym__digits] = ACTIONS(4641), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4641), - [sym__code_span_start] = ACTIONS(4641), - [sym__emphasis_open_star] = ACTIONS(4641), - [sym__emphasis_open_underscore] = ACTIONS(4641), - [sym__strikeout_open] = ACTIONS(4641), - [sym__latex_span_start] = ACTIONS(4641), - [sym__single_quote_open] = ACTIONS(4641), - [sym__double_quote_open] = ACTIONS(4641), - [sym__superscript_open] = ACTIONS(4641), - [sym__subscript_open] = ACTIONS(4641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4641), - [sym__cite_author_in_text] = ACTIONS(4641), - [sym__cite_suppress_author] = ACTIONS(4641), - [sym__shortcode_open_escaped] = ACTIONS(4641), - [sym__shortcode_open] = ACTIONS(4641), - [sym__unclosed_span] = ACTIONS(4641), - [sym__strong_emphasis_open_star] = ACTIONS(4641), - [sym__strong_emphasis_open_underscore] = ACTIONS(4641), + [sym__qmd_attribute] = STATE(1685), + [sym_raw_attribute] = STATE(1685), + [sym_commonmark_attribute] = STATE(1685), + [sym_language_attribute] = STATE(1685), + [sym__backslash_escape] = ACTIONS(4231), + [sym_entity_reference] = ACTIONS(4231), + [sym_numeric_character_reference] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4233), + [anon_sym_GT] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_BSLASH] = ACTIONS(4233), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [sym__newline_token] = ACTIONS(4231), + [aux_sym_insert_token1] = ACTIONS(4231), + [aux_sym_delete_token1] = ACTIONS(4231), + [aux_sym_highlight_token1] = ACTIONS(4231), + [aux_sym_edit_comment_token1] = ACTIONS(4231), + [anon_sym_CARET_LBRACK] = ACTIONS(4231), + [anon_sym_LBRACK_CARET] = ACTIONS(4231), + [sym_uri_autolink] = ACTIONS(4231), + [sym_email_autolink] = ACTIONS(4231), + [sym__whitespace_ge_2] = ACTIONS(4231), + [aux_sym__whitespace_token1] = ACTIONS(4233), + [sym__word_no_digit] = ACTIONS(4231), + [sym__digits] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [sym__code_span_start] = ACTIONS(4231), + [sym__emphasis_open_star] = ACTIONS(4231), + [sym__emphasis_open_underscore] = ACTIONS(4231), + [sym__strikeout_open] = ACTIONS(4231), + [sym__latex_span_start] = ACTIONS(4231), + [sym__single_quote_open] = ACTIONS(4231), + [sym__double_quote_open] = ACTIONS(4231), + [sym__double_quote_close] = ACTIONS(4231), + [sym__superscript_open] = ACTIONS(4231), + [sym__subscript_open] = ACTIONS(4231), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4231), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4231), + [sym__cite_author_in_text] = ACTIONS(4231), + [sym__cite_suppress_author] = ACTIONS(4231), + [sym__shortcode_open_escaped] = ACTIONS(4231), + [sym__shortcode_open] = ACTIONS(4231), + [sym__unclosed_span] = ACTIONS(4231), + [sym__strong_emphasis_open_star] = ACTIONS(4231), + [sym__strong_emphasis_open_underscore] = ACTIONS(4231), }, [STATE(579)] = { - [sym__qmd_attribute] = STATE(975), - [sym_raw_attribute] = STATE(975), - [sym_commonmark_attribute] = STATE(975), - [sym_language_attribute] = STATE(975), - [sym__backslash_escape] = ACTIONS(4685), - [sym_entity_reference] = ACTIONS(4685), - [sym_numeric_character_reference] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_BSLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4685), - [sym__newline_token] = ACTIONS(4685), - [aux_sym_insert_token1] = ACTIONS(4685), - [aux_sym_delete_token1] = ACTIONS(4685), - [aux_sym_highlight_token1] = ACTIONS(4685), - [aux_sym_edit_comment_token1] = ACTIONS(4685), - [anon_sym_CARET_LBRACK] = ACTIONS(4685), - [anon_sym_LBRACK_CARET] = ACTIONS(4685), - [sym_uri_autolink] = ACTIONS(4685), - [sym_email_autolink] = ACTIONS(4685), - [sym__whitespace_ge_2] = ACTIONS(4685), - [aux_sym__whitespace_token1] = ACTIONS(4687), - [sym__word_no_digit] = ACTIONS(4685), - [sym__digits] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4685), - [sym__code_span_start] = ACTIONS(4685), - [sym__emphasis_open_star] = ACTIONS(4685), - [sym__emphasis_open_underscore] = ACTIONS(4685), - [sym__strikeout_open] = ACTIONS(4685), - [sym__latex_span_start] = ACTIONS(4685), - [sym__single_quote_open] = ACTIONS(4685), - [sym__double_quote_open] = ACTIONS(4685), - [sym__superscript_open] = ACTIONS(4685), - [sym__subscript_open] = ACTIONS(4685), - [sym__subscript_close] = ACTIONS(4685), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4685), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4685), - [sym__cite_author_in_text] = ACTIONS(4685), - [sym__cite_suppress_author] = ACTIONS(4685), - [sym__shortcode_open_escaped] = ACTIONS(4685), - [sym__shortcode_open] = ACTIONS(4685), - [sym__unclosed_span] = ACTIONS(4685), - [sym__strong_emphasis_open_star] = ACTIONS(4685), - [sym__strong_emphasis_open_underscore] = ACTIONS(4685), + [sym__qmd_attribute] = STATE(1222), + [sym_raw_attribute] = STATE(1222), + [sym_commonmark_attribute] = STATE(1222), + [sym_language_attribute] = STATE(1222), + [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(4275), + [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(580)] = { - [sym__qmd_attribute] = STATE(976), - [sym_raw_attribute] = STATE(976), - [sym_commonmark_attribute] = STATE(976), - [sym_language_attribute] = STATE(976), - [sym__backslash_escape] = ACTIONS(4693), - [sym_entity_reference] = ACTIONS(4693), - [sym_numeric_character_reference] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [sym__newline_token] = ACTIONS(4693), - [aux_sym_insert_token1] = ACTIONS(4693), - [aux_sym_delete_token1] = ACTIONS(4693), - [aux_sym_highlight_token1] = ACTIONS(4693), - [aux_sym_edit_comment_token1] = ACTIONS(4693), - [anon_sym_CARET_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACK_CARET] = ACTIONS(4693), - [sym_uri_autolink] = ACTIONS(4693), - [sym_email_autolink] = ACTIONS(4693), - [sym__whitespace_ge_2] = ACTIONS(4693), - [aux_sym__whitespace_token1] = ACTIONS(4695), - [sym__word_no_digit] = ACTIONS(4693), - [sym__digits] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [sym__code_span_start] = ACTIONS(4693), - [sym__emphasis_open_star] = ACTIONS(4693), - [sym__emphasis_open_underscore] = ACTIONS(4693), - [sym__strikeout_open] = ACTIONS(4693), - [sym__latex_span_start] = ACTIONS(4693), - [sym__single_quote_open] = ACTIONS(4693), - [sym__double_quote_open] = ACTIONS(4693), - [sym__superscript_open] = ACTIONS(4693), - [sym__subscript_open] = ACTIONS(4693), - [sym__subscript_close] = ACTIONS(4693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4693), - [sym__cite_author_in_text] = ACTIONS(4693), - [sym__cite_suppress_author] = ACTIONS(4693), - [sym__shortcode_open_escaped] = ACTIONS(4693), - [sym__shortcode_open] = ACTIONS(4693), - [sym__unclosed_span] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4693), - [sym__strong_emphasis_open_underscore] = ACTIONS(4693), + [sym__qmd_attribute] = STATE(1226), + [sym_raw_attribute] = STATE(1226), + [sym_commonmark_attribute] = STATE(1226), + [sym_language_attribute] = STATE(1226), + [sym__backslash_escape] = ACTIONS(4231), + [sym_entity_reference] = ACTIONS(4231), + [sym_numeric_character_reference] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4233), + [anon_sym_GT] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_BSLASH] = ACTIONS(4233), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [sym__newline_token] = ACTIONS(4231), + [aux_sym_insert_token1] = ACTIONS(4231), + [aux_sym_delete_token1] = ACTIONS(4231), + [aux_sym_highlight_token1] = ACTIONS(4231), + [aux_sym_edit_comment_token1] = ACTIONS(4231), + [anon_sym_CARET_LBRACK] = ACTIONS(4231), + [anon_sym_LBRACK_CARET] = ACTIONS(4231), + [sym_uri_autolink] = ACTIONS(4231), + [sym_email_autolink] = ACTIONS(4231), + [sym__whitespace_ge_2] = ACTIONS(4231), + [aux_sym__whitespace_token1] = ACTIONS(4233), + [sym__word_no_digit] = ACTIONS(4231), + [sym__digits] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [sym__code_span_start] = ACTIONS(4231), + [sym__emphasis_open_star] = ACTIONS(4231), + [sym__emphasis_open_underscore] = ACTIONS(4231), + [sym__emphasis_close_star] = ACTIONS(4231), + [sym__strikeout_open] = ACTIONS(4231), + [sym__latex_span_start] = ACTIONS(4231), + [sym__single_quote_open] = ACTIONS(4231), + [sym__double_quote_open] = ACTIONS(4231), + [sym__superscript_open] = ACTIONS(4231), + [sym__subscript_open] = ACTIONS(4231), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4231), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4231), + [sym__cite_author_in_text] = ACTIONS(4231), + [sym__cite_suppress_author] = ACTIONS(4231), + [sym__shortcode_open_escaped] = ACTIONS(4231), + [sym__shortcode_open] = ACTIONS(4231), + [sym__unclosed_span] = ACTIONS(4231), + [sym__strong_emphasis_open_star] = ACTIONS(4231), + [sym__strong_emphasis_open_underscore] = ACTIONS(4231), }, [STATE(581)] = { - [sym__qmd_attribute] = STATE(977), - [sym_raw_attribute] = STATE(977), - [sym_commonmark_attribute] = STATE(977), - [sym_language_attribute] = STATE(977), - [sym__backslash_escape] = ACTIONS(4697), - [sym_entity_reference] = ACTIONS(4697), - [sym_numeric_character_reference] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_PERCENT] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_BSLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [sym__newline_token] = ACTIONS(4697), - [aux_sym_insert_token1] = ACTIONS(4697), - [aux_sym_delete_token1] = ACTIONS(4697), - [aux_sym_highlight_token1] = ACTIONS(4697), - [aux_sym_edit_comment_token1] = ACTIONS(4697), - [anon_sym_CARET_LBRACK] = ACTIONS(4697), - [anon_sym_LBRACK_CARET] = ACTIONS(4697), - [sym_uri_autolink] = ACTIONS(4697), - [sym_email_autolink] = ACTIONS(4697), - [sym__whitespace_ge_2] = ACTIONS(4697), - [aux_sym__whitespace_token1] = ACTIONS(4699), - [sym__word_no_digit] = ACTIONS(4697), - [sym__digits] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4697), - [sym__code_span_start] = ACTIONS(4697), - [sym__emphasis_open_star] = ACTIONS(4697), - [sym__emphasis_open_underscore] = ACTIONS(4697), - [sym__strikeout_open] = ACTIONS(4697), - [sym__latex_span_start] = ACTIONS(4697), - [sym__single_quote_open] = ACTIONS(4697), - [sym__double_quote_open] = ACTIONS(4697), - [sym__superscript_open] = ACTIONS(4697), - [sym__subscript_open] = ACTIONS(4697), - [sym__subscript_close] = ACTIONS(4697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4697), - [sym__cite_author_in_text] = ACTIONS(4697), - [sym__cite_suppress_author] = ACTIONS(4697), - [sym__shortcode_open_escaped] = ACTIONS(4697), - [sym__shortcode_open] = ACTIONS(4697), - [sym__unclosed_span] = ACTIONS(4697), - [sym__strong_emphasis_open_star] = ACTIONS(4697), - [sym__strong_emphasis_open_underscore] = ACTIONS(4697), + [sym__qmd_attribute] = STATE(1251), + [sym_raw_attribute] = STATE(1251), + [sym_commonmark_attribute] = STATE(1251), + [sym_language_attribute] = STATE(1251), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__emphasis_close_star] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(582)] = { - [sym__qmd_attribute] = STATE(989), - [sym_raw_attribute] = STATE(989), - [sym_commonmark_attribute] = STATE(989), - [sym_language_attribute] = STATE(989), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__subscript_close] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [sym__qmd_attribute] = STATE(1264), + [sym_raw_attribute] = STATE(1264), + [sym_commonmark_attribute] = STATE(1264), + [sym_language_attribute] = STATE(1264), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__emphasis_close_star] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(583)] = { - [sym__qmd_attribute] = STATE(999), - [sym_raw_attribute] = STATE(999), - [sym_commonmark_attribute] = STATE(999), - [sym_language_attribute] = STATE(999), - [sym__backslash_escape] = ACTIONS(4641), - [sym_entity_reference] = ACTIONS(4641), - [sym_numeric_character_reference] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_BSLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [sym__newline_token] = ACTIONS(4641), - [aux_sym_insert_token1] = ACTIONS(4641), - [aux_sym_delete_token1] = ACTIONS(4641), - [aux_sym_highlight_token1] = ACTIONS(4641), - [aux_sym_edit_comment_token1] = ACTIONS(4641), - [anon_sym_CARET_LBRACK] = ACTIONS(4641), - [anon_sym_LBRACK_CARET] = ACTIONS(4641), - [sym_uri_autolink] = ACTIONS(4641), - [sym_email_autolink] = ACTIONS(4641), - [sym__whitespace_ge_2] = ACTIONS(4641), - [aux_sym__whitespace_token1] = ACTIONS(4643), - [sym__word_no_digit] = ACTIONS(4641), - [sym__digits] = ACTIONS(4641), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4641), - [sym__code_span_start] = ACTIONS(4641), - [sym__emphasis_open_star] = ACTIONS(4641), - [sym__emphasis_open_underscore] = ACTIONS(4641), - [sym__strikeout_open] = ACTIONS(4641), - [sym__latex_span_start] = ACTIONS(4641), - [sym__single_quote_open] = ACTIONS(4641), - [sym__double_quote_open] = ACTIONS(4641), - [sym__superscript_open] = ACTIONS(4641), - [sym__subscript_open] = ACTIONS(4641), - [sym__subscript_close] = ACTIONS(4641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4641), - [sym__cite_author_in_text] = ACTIONS(4641), - [sym__cite_suppress_author] = ACTIONS(4641), - [sym__shortcode_open_escaped] = ACTIONS(4641), - [sym__shortcode_open] = ACTIONS(4641), - [sym__unclosed_span] = ACTIONS(4641), - [sym__strong_emphasis_open_star] = ACTIONS(4641), - [sym__strong_emphasis_open_underscore] = ACTIONS(4641), + [sym__qmd_attribute] = STATE(1310), + [sym_raw_attribute] = STATE(1310), + [sym_commonmark_attribute] = STATE(1310), + [sym_language_attribute] = STATE(1310), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__emphasis_close_star] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(584)] = { - [sym__qmd_attribute] = STATE(1007), - [sym_raw_attribute] = STATE(1007), - [sym_commonmark_attribute] = STATE(1007), - [sym_language_attribute] = STATE(1007), - [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_STAR] = 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(4717), - [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__subscript_close] = 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__qmd_attribute] = STATE(1317), + [sym_raw_attribute] = STATE(1317), + [sym_commonmark_attribute] = STATE(1317), + [sym_language_attribute] = STATE(1317), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__emphasis_close_star] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(585)] = { - [sym__qmd_attribute] = STATE(1009), - [sym_raw_attribute] = STATE(1009), - [sym_commonmark_attribute] = STATE(1009), - [sym_language_attribute] = STATE(1009), - [sym__backslash_escape] = ACTIONS(4653), - [sym_entity_reference] = ACTIONS(4653), - [sym_numeric_character_reference] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4655), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4655), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4655), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_BSLASH] = ACTIONS(4655), - [anon_sym_CARET] = ACTIONS(4655), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym_RPAREN] = ACTIONS(4653), - [sym__newline_token] = ACTIONS(4653), - [aux_sym_insert_token1] = ACTIONS(4653), - [aux_sym_delete_token1] = ACTIONS(4653), - [aux_sym_highlight_token1] = ACTIONS(4653), - [aux_sym_edit_comment_token1] = ACTIONS(4653), - [anon_sym_CARET_LBRACK] = ACTIONS(4653), - [anon_sym_LBRACK_CARET] = ACTIONS(4653), - [sym_uri_autolink] = ACTIONS(4653), - [sym_email_autolink] = ACTIONS(4653), - [sym__whitespace_ge_2] = ACTIONS(4653), - [aux_sym__whitespace_token1] = ACTIONS(4655), - [sym__word_no_digit] = ACTIONS(4653), - [sym__digits] = ACTIONS(4653), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [sym__code_span_start] = ACTIONS(4653), - [sym__emphasis_open_star] = ACTIONS(4653), - [sym__emphasis_open_underscore] = ACTIONS(4653), - [sym__strikeout_open] = ACTIONS(4653), - [sym__latex_span_start] = ACTIONS(4653), - [sym__single_quote_open] = ACTIONS(4653), - [sym__double_quote_open] = ACTIONS(4653), - [sym__superscript_open] = ACTIONS(4653), - [sym__subscript_open] = ACTIONS(4653), - [sym__subscript_close] = ACTIONS(4653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4653), - [sym__cite_author_in_text] = ACTIONS(4653), - [sym__cite_suppress_author] = ACTIONS(4653), - [sym__shortcode_open_escaped] = ACTIONS(4653), - [sym__shortcode_open] = ACTIONS(4653), - [sym__unclosed_span] = ACTIONS(4653), - [sym__strong_emphasis_open_star] = ACTIONS(4653), - [sym__strong_emphasis_open_underscore] = ACTIONS(4653), + [sym__qmd_attribute] = STATE(1327), + [sym_raw_attribute] = STATE(1327), + [sym_commonmark_attribute] = STATE(1327), + [sym_language_attribute] = STATE(1327), + [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(4275), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(586)] = { - [sym__qmd_attribute] = STATE(1015), - [sym_raw_attribute] = STATE(1015), - [sym_commonmark_attribute] = STATE(1015), - [sym_language_attribute] = STATE(1015), - [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_STAR] = 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(4717), - [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__subscript_close] = 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), + [sym__qmd_attribute] = STATE(1596), + [sym_raw_attribute] = STATE(1596), + [sym_commonmark_attribute] = STATE(1596), + [sym_language_attribute] = STATE(1596), + [sym__backslash_escape] = ACTIONS(4231), + [sym_entity_reference] = ACTIONS(4231), + [sym_numeric_character_reference] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4233), + [anon_sym_GT] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_BSLASH] = ACTIONS(4233), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [sym__newline_token] = ACTIONS(4231), + [aux_sym_insert_token1] = ACTIONS(4231), + [aux_sym_delete_token1] = ACTIONS(4231), + [aux_sym_highlight_token1] = ACTIONS(4231), + [aux_sym_edit_comment_token1] = ACTIONS(4231), + [anon_sym_CARET_LBRACK] = ACTIONS(4231), + [anon_sym_LBRACK_CARET] = ACTIONS(4231), + [sym_uri_autolink] = ACTIONS(4231), + [sym_email_autolink] = ACTIONS(4231), + [sym__whitespace_ge_2] = ACTIONS(4231), + [aux_sym__whitespace_token1] = ACTIONS(4233), + [sym__word_no_digit] = ACTIONS(4231), + [sym__digits] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [sym__code_span_start] = ACTIONS(4231), + [sym__emphasis_open_star] = ACTIONS(4231), + [sym__emphasis_open_underscore] = ACTIONS(4231), + [sym__strikeout_open] = ACTIONS(4231), + [sym__latex_span_start] = ACTIONS(4231), + [sym__single_quote_open] = ACTIONS(4231), + [sym__single_quote_close] = ACTIONS(4231), + [sym__double_quote_open] = ACTIONS(4231), + [sym__superscript_open] = ACTIONS(4231), + [sym__subscript_open] = ACTIONS(4231), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4231), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4231), + [sym__cite_author_in_text] = ACTIONS(4231), + [sym__cite_suppress_author] = ACTIONS(4231), + [sym__shortcode_open_escaped] = ACTIONS(4231), + [sym__shortcode_open] = ACTIONS(4231), + [sym__unclosed_span] = ACTIONS(4231), + [sym__strong_emphasis_open_star] = ACTIONS(4231), + [sym__strong_emphasis_open_underscore] = ACTIONS(4231), }, [STATE(587)] = { - [sym__qmd_attribute] = STATE(1016), - [sym_raw_attribute] = STATE(1016), - [sym_commonmark_attribute] = STATE(1016), - [sym_language_attribute] = STATE(1016), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__subscript_close] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [sym__qmd_attribute] = STATE(1342), + [sym_raw_attribute] = STATE(1342), + [sym_commonmark_attribute] = STATE(1342), + [sym_language_attribute] = STATE(1342), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__emphasis_close_star] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(588)] = { - [sym__qmd_attribute] = STATE(1021), - [sym_raw_attribute] = STATE(1021), - [sym_commonmark_attribute] = STATE(1021), - [sym_language_attribute] = STATE(1021), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__subscript_close] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [sym__qmd_attribute] = STATE(1344), + [sym_raw_attribute] = STATE(1344), + [sym_commonmark_attribute] = STATE(1344), + [sym_language_attribute] = STATE(1344), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__emphasis_close_star] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(589)] = { - [sym__qmd_attribute] = STATE(1023), - [sym_raw_attribute] = STATE(1023), - [sym_commonmark_attribute] = STATE(1023), - [sym_language_attribute] = STATE(1023), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__subscript_close] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), - }, - [STATE(590)] = { - [sym__qmd_attribute] = STATE(1026), - [sym_raw_attribute] = STATE(1026), - [sym_commonmark_attribute] = STATE(1026), - [sym_language_attribute] = STATE(1026), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__subscript_close] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), - }, - [STATE(591)] = { - [sym__qmd_attribute] = STATE(1027), - [sym_raw_attribute] = STATE(1027), - [sym_commonmark_attribute] = STATE(1027), - [sym_language_attribute] = STATE(1027), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__subscript_close] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), - }, - [STATE(592)] = { - [sym__qmd_attribute] = STATE(1028), - [sym_raw_attribute] = STATE(1028), - [sym_commonmark_attribute] = STATE(1028), - [sym_language_attribute] = STATE(1028), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__subscript_close] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), - }, - [STATE(593)] = { - [sym__qmd_attribute] = STATE(1029), - [sym_raw_attribute] = STATE(1029), - [sym_commonmark_attribute] = STATE(1029), - [sym_language_attribute] = STATE(1029), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__subscript_close] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), - }, - [STATE(594)] = { - [sym__qmd_attribute] = STATE(1030), - [sym_raw_attribute] = STATE(1030), - [sym_commonmark_attribute] = STATE(1030), - [sym_language_attribute] = STATE(1030), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__subscript_close] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), - }, - [STATE(595)] = { - [sym__qmd_attribute] = STATE(1031), - [sym_raw_attribute] = STATE(1031), - [sym_commonmark_attribute] = STATE(1031), - [sym_language_attribute] = STATE(1031), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4717), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__subscript_close] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), - }, - [STATE(596)] = { - [sym__qmd_attribute] = STATE(1055), - [sym_raw_attribute] = STATE(1055), - [sym_commonmark_attribute] = STATE(1055), - [sym_language_attribute] = STATE(1055), - [sym__backslash_escape] = ACTIONS(4685), - [sym_entity_reference] = ACTIONS(4685), - [sym_numeric_character_reference] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_BSLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4723), - [anon_sym_RPAREN] = ACTIONS(4685), - [sym__newline_token] = ACTIONS(4685), - [aux_sym_insert_token1] = ACTIONS(4685), - [aux_sym_delete_token1] = ACTIONS(4685), - [aux_sym_highlight_token1] = ACTIONS(4685), - [aux_sym_edit_comment_token1] = ACTIONS(4685), - [anon_sym_CARET_LBRACK] = ACTIONS(4685), - [anon_sym_LBRACK_CARET] = ACTIONS(4685), - [sym_uri_autolink] = ACTIONS(4685), - [sym_email_autolink] = ACTIONS(4685), - [sym__whitespace_ge_2] = ACTIONS(4685), - [aux_sym__whitespace_token1] = ACTIONS(4687), - [sym__word_no_digit] = ACTIONS(4685), - [sym__digits] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4685), - [sym__code_span_start] = ACTIONS(4685), - [sym__emphasis_open_star] = ACTIONS(4685), - [sym__emphasis_open_underscore] = ACTIONS(4685), - [sym__strikeout_open] = ACTIONS(4685), - [sym__latex_span_start] = ACTIONS(4685), - [sym__single_quote_open] = ACTIONS(4685), - [sym__double_quote_open] = ACTIONS(4685), - [sym__superscript_open] = ACTIONS(4685), - [sym__subscript_open] = ACTIONS(4685), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4685), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4685), - [sym__cite_author_in_text] = ACTIONS(4685), - [sym__cite_suppress_author] = ACTIONS(4685), - [sym__shortcode_open_escaped] = ACTIONS(4685), - [sym__shortcode_open] = ACTIONS(4685), - [sym__unclosed_span] = ACTIONS(4685), - [sym__strong_emphasis_open_star] = ACTIONS(4685), - [sym__strong_emphasis_close_star] = ACTIONS(4685), - [sym__strong_emphasis_open_underscore] = ACTIONS(4685), - }, - [STATE(597)] = { - [sym__qmd_attribute] = STATE(1056), - [sym_raw_attribute] = STATE(1056), - [sym_commonmark_attribute] = STATE(1056), - [sym_language_attribute] = STATE(1056), - [sym__backslash_escape] = ACTIONS(4693), - [sym_entity_reference] = ACTIONS(4693), - [sym_numeric_character_reference] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [sym__newline_token] = ACTIONS(4693), - [aux_sym_insert_token1] = ACTIONS(4693), - [aux_sym_delete_token1] = ACTIONS(4693), - [aux_sym_highlight_token1] = ACTIONS(4693), - [aux_sym_edit_comment_token1] = ACTIONS(4693), - [anon_sym_CARET_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACK_CARET] = ACTIONS(4693), - [sym_uri_autolink] = ACTIONS(4693), - [sym_email_autolink] = ACTIONS(4693), - [sym__whitespace_ge_2] = ACTIONS(4693), - [aux_sym__whitespace_token1] = ACTIONS(4695), - [sym__word_no_digit] = ACTIONS(4693), - [sym__digits] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [sym__code_span_start] = ACTIONS(4693), - [sym__emphasis_open_star] = ACTIONS(4693), - [sym__emphasis_open_underscore] = ACTIONS(4693), - [sym__strikeout_open] = ACTIONS(4693), - [sym__latex_span_start] = ACTIONS(4693), - [sym__single_quote_open] = ACTIONS(4693), - [sym__double_quote_open] = ACTIONS(4693), - [sym__superscript_open] = ACTIONS(4693), - [sym__subscript_open] = ACTIONS(4693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4693), - [sym__cite_author_in_text] = ACTIONS(4693), - [sym__cite_suppress_author] = ACTIONS(4693), - [sym__shortcode_open_escaped] = ACTIONS(4693), - [sym__shortcode_open] = ACTIONS(4693), - [sym__unclosed_span] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4693), - [sym__strong_emphasis_close_star] = ACTIONS(4693), - [sym__strong_emphasis_open_underscore] = ACTIONS(4693), - }, - [STATE(598)] = { - [sym__qmd_attribute] = STATE(1057), - [sym_raw_attribute] = STATE(1057), - [sym_commonmark_attribute] = STATE(1057), - [sym_language_attribute] = STATE(1057), - [sym__backslash_escape] = ACTIONS(4697), - [sym_entity_reference] = ACTIONS(4697), - [sym_numeric_character_reference] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_PERCENT] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_BSLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [sym__newline_token] = ACTIONS(4697), - [aux_sym_insert_token1] = ACTIONS(4697), - [aux_sym_delete_token1] = ACTIONS(4697), - [aux_sym_highlight_token1] = ACTIONS(4697), - [aux_sym_edit_comment_token1] = ACTIONS(4697), - [anon_sym_CARET_LBRACK] = ACTIONS(4697), - [anon_sym_LBRACK_CARET] = ACTIONS(4697), - [sym_uri_autolink] = ACTIONS(4697), - [sym_email_autolink] = ACTIONS(4697), - [sym__whitespace_ge_2] = ACTIONS(4697), - [aux_sym__whitespace_token1] = ACTIONS(4699), - [sym__word_no_digit] = ACTIONS(4697), - [sym__digits] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4697), - [sym__code_span_start] = ACTIONS(4697), - [sym__emphasis_open_star] = ACTIONS(4697), - [sym__emphasis_open_underscore] = ACTIONS(4697), - [sym__strikeout_open] = ACTIONS(4697), - [sym__latex_span_start] = ACTIONS(4697), - [sym__single_quote_open] = ACTIONS(4697), - [sym__double_quote_open] = ACTIONS(4697), - [sym__superscript_open] = ACTIONS(4697), - [sym__subscript_open] = ACTIONS(4697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4697), - [sym__cite_author_in_text] = ACTIONS(4697), - [sym__cite_suppress_author] = ACTIONS(4697), - [sym__shortcode_open_escaped] = ACTIONS(4697), - [sym__shortcode_open] = ACTIONS(4697), - [sym__unclosed_span] = ACTIONS(4697), - [sym__strong_emphasis_open_star] = ACTIONS(4697), - [sym__strong_emphasis_close_star] = ACTIONS(4697), - [sym__strong_emphasis_open_underscore] = ACTIONS(4697), - }, - [STATE(599)] = { - [sym__qmd_attribute] = STATE(1069), - [sym_raw_attribute] = STATE(1069), - [sym_commonmark_attribute] = STATE(1069), - [sym_language_attribute] = STATE(1069), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_close_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), - }, - [STATE(600)] = { - [sym__qmd_attribute] = STATE(1079), - [sym_raw_attribute] = STATE(1079), - [sym_commonmark_attribute] = STATE(1079), - [sym_language_attribute] = STATE(1079), - [sym__backslash_escape] = ACTIONS(4641), - [sym_entity_reference] = ACTIONS(4641), - [sym_numeric_character_reference] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_BSLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [sym__newline_token] = ACTIONS(4641), - [aux_sym_insert_token1] = ACTIONS(4641), - [aux_sym_delete_token1] = ACTIONS(4641), - [aux_sym_highlight_token1] = ACTIONS(4641), - [aux_sym_edit_comment_token1] = ACTIONS(4641), - [anon_sym_CARET_LBRACK] = ACTIONS(4641), - [anon_sym_LBRACK_CARET] = ACTIONS(4641), - [sym_uri_autolink] = ACTIONS(4641), - [sym_email_autolink] = ACTIONS(4641), - [sym__whitespace_ge_2] = ACTIONS(4641), - [aux_sym__whitespace_token1] = ACTIONS(4643), - [sym__word_no_digit] = ACTIONS(4641), - [sym__digits] = ACTIONS(4641), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4641), - [sym__code_span_start] = ACTIONS(4641), - [sym__emphasis_open_star] = ACTIONS(4641), - [sym__emphasis_open_underscore] = ACTIONS(4641), - [sym__strikeout_open] = ACTIONS(4641), - [sym__latex_span_start] = ACTIONS(4641), - [sym__single_quote_open] = ACTIONS(4641), - [sym__double_quote_open] = ACTIONS(4641), - [sym__superscript_open] = ACTIONS(4641), - [sym__subscript_open] = ACTIONS(4641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4641), - [sym__cite_author_in_text] = ACTIONS(4641), - [sym__cite_suppress_author] = ACTIONS(4641), - [sym__shortcode_open_escaped] = ACTIONS(4641), - [sym__shortcode_open] = ACTIONS(4641), - [sym__unclosed_span] = ACTIONS(4641), - [sym__strong_emphasis_open_star] = ACTIONS(4641), - [sym__strong_emphasis_close_star] = ACTIONS(4641), - [sym__strong_emphasis_open_underscore] = ACTIONS(4641), - }, - [STATE(601)] = { - [sym__qmd_attribute] = STATE(1087), - [sym_raw_attribute] = STATE(1087), - [sym_commonmark_attribute] = STATE(1087), - [sym_language_attribute] = STATE(1087), - [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_STAR] = 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(4721), - [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), + [sym__qmd_attribute] = STATE(1346), + [sym_raw_attribute] = STATE(1346), + [sym_commonmark_attribute] = STATE(1346), + [sym_language_attribute] = STATE(1346), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__emphasis_close_star] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), + }, + [STATE(590)] = { + [sym__qmd_attribute] = STATE(1347), + [sym_raw_attribute] = STATE(1347), + [sym_commonmark_attribute] = STATE(1347), + [sym_language_attribute] = STATE(1347), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__emphasis_close_star] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), + }, + [STATE(591)] = { + [sym__qmd_attribute] = STATE(1380), + [sym_raw_attribute] = STATE(1380), + [sym_commonmark_attribute] = STATE(1380), + [sym_language_attribute] = STATE(1380), + [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(4279), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4281), + [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__emphasis_close_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), + }, + [STATE(592)] = { + [sym__qmd_attribute] = STATE(1381), + [sym_raw_attribute] = STATE(1381), + [sym_commonmark_attribute] = STATE(1381), + [sym_language_attribute] = STATE(1381), + [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(4279), + [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_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__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(593)] = { + [sym__qmd_attribute] = STATE(1022), + [sym_raw_attribute] = STATE(1022), + [sym_commonmark_attribute] = STATE(1022), + [sym_language_attribute] = STATE(1022), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__double_quote_close] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), + }, + [STATE(594)] = { + [sym__qmd_attribute] = STATE(1383), + [sym_raw_attribute] = STATE(1383), + [sym_commonmark_attribute] = STATE(1383), + [sym_language_attribute] = STATE(1383), + [sym__backslash_escape] = ACTIONS(4219), + [sym_entity_reference] = ACTIONS(4219), + [sym_numeric_character_reference] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4221), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_POUND] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_COLON] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_BSLASH] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [sym__newline_token] = ACTIONS(4219), + [aux_sym_insert_token1] = ACTIONS(4219), + [aux_sym_delete_token1] = ACTIONS(4219), + [aux_sym_highlight_token1] = ACTIONS(4219), + [aux_sym_edit_comment_token1] = ACTIONS(4219), + [anon_sym_CARET_LBRACK] = ACTIONS(4219), + [anon_sym_LBRACK_CARET] = ACTIONS(4219), + [sym_uri_autolink] = ACTIONS(4219), + [sym_email_autolink] = ACTIONS(4219), + [sym__whitespace_ge_2] = ACTIONS(4219), + [aux_sym__whitespace_token1] = ACTIONS(4221), + [sym__word_no_digit] = ACTIONS(4219), + [sym__digits] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [sym__code_span_start] = ACTIONS(4219), + [sym__emphasis_open_star] = ACTIONS(4219), + [sym__emphasis_open_underscore] = ACTIONS(4219), + [sym__emphasis_close_underscore] = ACTIONS(4219), + [sym__strikeout_open] = ACTIONS(4219), + [sym__latex_span_start] = ACTIONS(4219), + [sym__single_quote_open] = ACTIONS(4219), + [sym__double_quote_open] = ACTIONS(4219), + [sym__superscript_open] = ACTIONS(4219), + [sym__subscript_open] = ACTIONS(4219), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4219), + [sym__cite_author_in_text] = ACTIONS(4219), + [sym__cite_suppress_author] = ACTIONS(4219), + [sym__shortcode_open_escaped] = ACTIONS(4219), + [sym__shortcode_open] = ACTIONS(4219), + [sym__unclosed_span] = ACTIONS(4219), + [sym__strong_emphasis_open_star] = ACTIONS(4219), + [sym__strong_emphasis_open_underscore] = ACTIONS(4219), + }, + [STATE(595)] = { + [sym__qmd_attribute] = STATE(1397), + [sym_raw_attribute] = STATE(1397), + [sym_commonmark_attribute] = STATE(1397), + [sym_language_attribute] = STATE(1397), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__emphasis_close_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), + }, + [STATE(596)] = { + [sym__qmd_attribute] = STATE(1033), + [sym_raw_attribute] = STATE(1033), + [sym_commonmark_attribute] = STATE(1033), + [sym_language_attribute] = STATE(1033), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__double_quote_close] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), + }, + [STATE(597)] = { + [sym__qmd_attribute] = STATE(1410), + [sym_raw_attribute] = STATE(1410), + [sym_commonmark_attribute] = STATE(1410), + [sym_language_attribute] = STATE(1410), + [sym__backslash_escape] = ACTIONS(4227), + [sym_entity_reference] = ACTIONS(4227), + [sym_numeric_character_reference] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_BSLASH] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_BQUOTE] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [sym__newline_token] = ACTIONS(4227), + [aux_sym_insert_token1] = ACTIONS(4227), + [aux_sym_delete_token1] = ACTIONS(4227), + [aux_sym_highlight_token1] = ACTIONS(4227), + [aux_sym_edit_comment_token1] = ACTIONS(4227), + [anon_sym_CARET_LBRACK] = ACTIONS(4227), + [anon_sym_LBRACK_CARET] = ACTIONS(4227), + [sym_uri_autolink] = ACTIONS(4227), + [sym_email_autolink] = ACTIONS(4227), + [sym__whitespace_ge_2] = ACTIONS(4227), + [aux_sym__whitespace_token1] = ACTIONS(4229), + [sym__word_no_digit] = ACTIONS(4227), + [sym__digits] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [sym__code_span_start] = ACTIONS(4227), + [sym__emphasis_open_star] = ACTIONS(4227), + [sym__emphasis_open_underscore] = ACTIONS(4227), + [sym__emphasis_close_underscore] = ACTIONS(4227), + [sym__strikeout_open] = ACTIONS(4227), + [sym__latex_span_start] = ACTIONS(4227), + [sym__single_quote_open] = ACTIONS(4227), + [sym__double_quote_open] = ACTIONS(4227), + [sym__superscript_open] = ACTIONS(4227), + [sym__subscript_open] = ACTIONS(4227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4227), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4227), + [sym__cite_author_in_text] = ACTIONS(4227), + [sym__cite_suppress_author] = ACTIONS(4227), + [sym__shortcode_open_escaped] = ACTIONS(4227), + [sym__shortcode_open] = ACTIONS(4227), + [sym__unclosed_span] = ACTIONS(4227), + [sym__strong_emphasis_open_star] = ACTIONS(4227), + [sym__strong_emphasis_open_underscore] = ACTIONS(4227), + }, + [STATE(598)] = { + [sym__qmd_attribute] = STATE(933), + [sym_raw_attribute] = STATE(933), + [sym_commonmark_attribute] = STATE(933), + [sym_language_attribute] = STATE(933), + [ts_builtin_sym_end] = ACTIONS(4205), + [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(4185), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4283), + [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), + }, + [STATE(599)] = { + [sym__qmd_attribute] = STATE(1419), + [sym_raw_attribute] = STATE(1419), + [sym_commonmark_attribute] = STATE(1419), + [sym_language_attribute] = STATE(1419), + [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(4279), + [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_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(600)] = { + [sym__qmd_attribute] = STATE(1421), + [sym_raw_attribute] = STATE(1421), + [sym_commonmark_attribute] = STATE(1421), + [sym_language_attribute] = STATE(1421), + [sym__backslash_escape] = ACTIONS(4231), + [sym_entity_reference] = ACTIONS(4231), + [sym_numeric_character_reference] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4233), + [anon_sym_GT] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_BSLASH] = ACTIONS(4233), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [sym__newline_token] = ACTIONS(4231), + [aux_sym_insert_token1] = ACTIONS(4231), + [aux_sym_delete_token1] = ACTIONS(4231), + [aux_sym_highlight_token1] = ACTIONS(4231), + [aux_sym_edit_comment_token1] = ACTIONS(4231), + [anon_sym_CARET_LBRACK] = ACTIONS(4231), + [anon_sym_LBRACK_CARET] = ACTIONS(4231), + [sym_uri_autolink] = ACTIONS(4231), + [sym_email_autolink] = ACTIONS(4231), + [sym__whitespace_ge_2] = ACTIONS(4231), + [aux_sym__whitespace_token1] = ACTIONS(4233), + [sym__word_no_digit] = ACTIONS(4231), + [sym__digits] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [sym__code_span_start] = ACTIONS(4231), + [sym__emphasis_open_star] = ACTIONS(4231), + [sym__emphasis_open_underscore] = ACTIONS(4231), + [sym__emphasis_close_underscore] = ACTIONS(4231), + [sym__strikeout_open] = ACTIONS(4231), + [sym__latex_span_start] = ACTIONS(4231), + [sym__single_quote_open] = ACTIONS(4231), + [sym__double_quote_open] = ACTIONS(4231), + [sym__superscript_open] = ACTIONS(4231), + [sym__subscript_open] = ACTIONS(4231), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4231), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4231), + [sym__cite_author_in_text] = ACTIONS(4231), + [sym__cite_suppress_author] = ACTIONS(4231), + [sym__shortcode_open_escaped] = ACTIONS(4231), + [sym__shortcode_open] = ACTIONS(4231), + [sym__unclosed_span] = ACTIONS(4231), + [sym__strong_emphasis_open_star] = ACTIONS(4231), + [sym__strong_emphasis_open_underscore] = ACTIONS(4231), + }, + [STATE(601)] = { + [sym__qmd_attribute] = STATE(1428), + [sym_raw_attribute] = STATE(1428), + [sym_commonmark_attribute] = STATE(1428), + [sym_language_attribute] = STATE(1428), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__emphasis_close_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(602)] = { - [sym__qmd_attribute] = STATE(1088), - [sym_raw_attribute] = STATE(1088), - [sym_commonmark_attribute] = STATE(1088), - [sym_language_attribute] = STATE(1088), - [sym__backslash_escape] = ACTIONS(4653), - [sym_entity_reference] = ACTIONS(4653), - [sym_numeric_character_reference] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4655), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4655), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4655), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_BSLASH] = ACTIONS(4655), - [anon_sym_CARET] = ACTIONS(4655), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym_RPAREN] = ACTIONS(4653), - [sym__newline_token] = ACTIONS(4653), - [aux_sym_insert_token1] = ACTIONS(4653), - [aux_sym_delete_token1] = ACTIONS(4653), - [aux_sym_highlight_token1] = ACTIONS(4653), - [aux_sym_edit_comment_token1] = ACTIONS(4653), - [anon_sym_CARET_LBRACK] = ACTIONS(4653), - [anon_sym_LBRACK_CARET] = ACTIONS(4653), - [sym_uri_autolink] = ACTIONS(4653), - [sym_email_autolink] = ACTIONS(4653), - [sym__whitespace_ge_2] = ACTIONS(4653), - [aux_sym__whitespace_token1] = ACTIONS(4655), - [sym__word_no_digit] = ACTIONS(4653), - [sym__digits] = ACTIONS(4653), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [sym__code_span_start] = ACTIONS(4653), - [sym__emphasis_open_star] = ACTIONS(4653), - [sym__emphasis_open_underscore] = ACTIONS(4653), - [sym__strikeout_open] = ACTIONS(4653), - [sym__latex_span_start] = ACTIONS(4653), - [sym__single_quote_open] = ACTIONS(4653), - [sym__double_quote_open] = ACTIONS(4653), - [sym__superscript_open] = ACTIONS(4653), - [sym__subscript_open] = ACTIONS(4653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4653), - [sym__cite_author_in_text] = ACTIONS(4653), - [sym__cite_suppress_author] = ACTIONS(4653), - [sym__shortcode_open_escaped] = ACTIONS(4653), - [sym__shortcode_open] = ACTIONS(4653), - [sym__unclosed_span] = ACTIONS(4653), - [sym__strong_emphasis_open_star] = ACTIONS(4653), - [sym__strong_emphasis_close_star] = ACTIONS(4653), - [sym__strong_emphasis_open_underscore] = ACTIONS(4653), + [sym__qmd_attribute] = STATE(1430), + [sym_raw_attribute] = STATE(1430), + [sym_commonmark_attribute] = STATE(1430), + [sym_language_attribute] = STATE(1430), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__emphasis_close_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(603)] = { - [sym__qmd_attribute] = STATE(1094), - [sym_raw_attribute] = STATE(1094), - [sym_commonmark_attribute] = STATE(1094), - [sym_language_attribute] = STATE(1094), - [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_STAR] = 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(4721), - [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_close_star] = ACTIONS(4631), - [sym__strong_emphasis_open_underscore] = ACTIONS(4631), + [sym__qmd_attribute] = STATE(1436), + [sym_raw_attribute] = STATE(1436), + [sym_commonmark_attribute] = STATE(1436), + [sym_language_attribute] = STATE(1436), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__emphasis_close_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(604)] = { - [sym__qmd_attribute] = STATE(1096), - [sym_raw_attribute] = STATE(1096), - [sym_commonmark_attribute] = STATE(1096), - [sym_language_attribute] = STATE(1096), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_close_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [sym__qmd_attribute] = STATE(1437), + [sym_raw_attribute] = STATE(1437), + [sym_commonmark_attribute] = STATE(1437), + [sym_language_attribute] = STATE(1437), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__emphasis_close_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(605)] = { - [sym__qmd_attribute] = STATE(1101), - [sym_raw_attribute] = STATE(1101), - [sym_commonmark_attribute] = STATE(1101), - [sym_language_attribute] = STATE(1101), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_close_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [sym__qmd_attribute] = STATE(1440), + [sym_raw_attribute] = STATE(1440), + [sym_commonmark_attribute] = STATE(1440), + [sym_language_attribute] = STATE(1440), + [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(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(606)] = { - [sym__qmd_attribute] = STATE(1102), - [sym_raw_attribute] = STATE(1102), - [sym_commonmark_attribute] = STATE(1102), - [sym_language_attribute] = STATE(1102), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_close_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [sym__qmd_attribute] = STATE(1441), + [sym_raw_attribute] = STATE(1441), + [sym_commonmark_attribute] = STATE(1441), + [sym_language_attribute] = STATE(1441), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__emphasis_close_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(607)] = { - [sym__qmd_attribute] = STATE(1105), - [sym_raw_attribute] = STATE(1105), - [sym_commonmark_attribute] = STATE(1105), - [sym_language_attribute] = STATE(1105), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_close_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__qmd_attribute] = STATE(1442), + [sym_raw_attribute] = STATE(1442), + [sym_commonmark_attribute] = STATE(1442), + [sym_language_attribute] = STATE(1442), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__emphasis_close_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(608)] = { - [sym__qmd_attribute] = STATE(1107), - [sym_raw_attribute] = STATE(1107), - [sym_commonmark_attribute] = STATE(1107), - [sym_language_attribute] = STATE(1107), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_close_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [sym__qmd_attribute] = STATE(1443), + [sym_raw_attribute] = STATE(1443), + [sym_commonmark_attribute] = STATE(1443), + [sym_language_attribute] = STATE(1443), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__emphasis_close_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(609)] = { - [sym__qmd_attribute] = STATE(1108), - [sym_raw_attribute] = STATE(1108), - [sym_commonmark_attribute] = STATE(1108), - [sym_language_attribute] = STATE(1108), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_close_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__qmd_attribute] = STATE(1444), + [sym_raw_attribute] = STATE(1444), + [sym_commonmark_attribute] = STATE(1444), + [sym_language_attribute] = STATE(1444), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__emphasis_close_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(610)] = { - [sym__qmd_attribute] = STATE(1109), - [sym_raw_attribute] = STATE(1109), - [sym_commonmark_attribute] = STATE(1109), - [sym_language_attribute] = STATE(1109), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_close_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__qmd_attribute] = STATE(1445), + [sym_raw_attribute] = STATE(1445), + [sym_commonmark_attribute] = STATE(1445), + [sym_language_attribute] = STATE(1445), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__emphasis_close_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(611)] = { - [sym__qmd_attribute] = STATE(1110), - [sym_raw_attribute] = STATE(1110), - [sym_commonmark_attribute] = STATE(1110), - [sym_language_attribute] = STATE(1110), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_close_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [sym__qmd_attribute] = STATE(1476), + [sym_raw_attribute] = STATE(1476), + [sym_commonmark_attribute] = STATE(1476), + [sym_language_attribute] = STATE(1476), + [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(4285), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4287), + [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__strikeout_close] = 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), }, [STATE(612)] = { - [sym__qmd_attribute] = STATE(1111), - [sym_raw_attribute] = STATE(1111), - [sym_commonmark_attribute] = STATE(1111), - [sym_language_attribute] = STATE(1111), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4721), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_close_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [sym__qmd_attribute] = STATE(1477), + [sym_raw_attribute] = STATE(1477), + [sym_commonmark_attribute] = STATE(1477), + [sym_language_attribute] = STATE(1477), + [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(4285), + [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__strikeout_close] = 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(613)] = { - [sym__qmd_attribute] = STATE(1136), - [sym_raw_attribute] = STATE(1136), - [sym_commonmark_attribute] = STATE(1136), - [sym_language_attribute] = STATE(1136), - [sym__backslash_escape] = ACTIONS(4685), - [sym_entity_reference] = ACTIONS(4685), - [sym_numeric_character_reference] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_BSLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4727), - [anon_sym_RPAREN] = ACTIONS(4685), - [sym__newline_token] = ACTIONS(4685), - [aux_sym_insert_token1] = ACTIONS(4685), - [aux_sym_delete_token1] = ACTIONS(4685), - [aux_sym_highlight_token1] = ACTIONS(4685), - [aux_sym_edit_comment_token1] = ACTIONS(4685), - [anon_sym_CARET_LBRACK] = ACTIONS(4685), - [anon_sym_LBRACK_CARET] = ACTIONS(4685), - [sym_uri_autolink] = ACTIONS(4685), - [sym_email_autolink] = ACTIONS(4685), - [sym__whitespace_ge_2] = ACTIONS(4685), - [aux_sym__whitespace_token1] = ACTIONS(4687), - [sym__word_no_digit] = ACTIONS(4685), - [sym__digits] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4685), - [sym__code_span_start] = ACTIONS(4685), - [sym__emphasis_open_star] = ACTIONS(4685), - [sym__emphasis_open_underscore] = ACTIONS(4685), - [sym__strikeout_open] = ACTIONS(4685), - [sym__latex_span_start] = ACTIONS(4685), - [sym__single_quote_open] = ACTIONS(4685), - [sym__double_quote_open] = ACTIONS(4685), - [sym__superscript_open] = ACTIONS(4685), - [sym__subscript_open] = ACTIONS(4685), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4685), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4685), - [sym__cite_author_in_text] = ACTIONS(4685), - [sym__cite_suppress_author] = ACTIONS(4685), - [sym__shortcode_open_escaped] = ACTIONS(4685), - [sym__shortcode_open] = ACTIONS(4685), - [sym__unclosed_span] = ACTIONS(4685), - [sym__strong_emphasis_open_star] = ACTIONS(4685), - [sym__strong_emphasis_open_underscore] = ACTIONS(4685), - [sym__strong_emphasis_close_underscore] = ACTIONS(4685), + [sym__qmd_attribute] = STATE(835), + [sym_raw_attribute] = STATE(835), + [sym_commonmark_attribute] = STATE(835), + [sym_language_attribute] = STATE(835), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__double_quote_close] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(614)] = { - [sym__qmd_attribute] = STATE(1137), - [sym_raw_attribute] = STATE(1137), - [sym_commonmark_attribute] = STATE(1137), - [sym_language_attribute] = STATE(1137), - [sym__backslash_escape] = ACTIONS(4693), - [sym_entity_reference] = ACTIONS(4693), - [sym_numeric_character_reference] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [sym__newline_token] = ACTIONS(4693), - [aux_sym_insert_token1] = ACTIONS(4693), - [aux_sym_delete_token1] = ACTIONS(4693), - [aux_sym_highlight_token1] = ACTIONS(4693), - [aux_sym_edit_comment_token1] = ACTIONS(4693), - [anon_sym_CARET_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACK_CARET] = ACTIONS(4693), - [sym_uri_autolink] = ACTIONS(4693), - [sym_email_autolink] = ACTIONS(4693), - [sym__whitespace_ge_2] = ACTIONS(4693), - [aux_sym__whitespace_token1] = ACTIONS(4695), - [sym__word_no_digit] = ACTIONS(4693), - [sym__digits] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [sym__code_span_start] = ACTIONS(4693), - [sym__emphasis_open_star] = ACTIONS(4693), - [sym__emphasis_open_underscore] = ACTIONS(4693), - [sym__strikeout_open] = ACTIONS(4693), - [sym__latex_span_start] = ACTIONS(4693), - [sym__single_quote_open] = ACTIONS(4693), - [sym__double_quote_open] = ACTIONS(4693), - [sym__superscript_open] = ACTIONS(4693), - [sym__subscript_open] = ACTIONS(4693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4693), - [sym__cite_author_in_text] = ACTIONS(4693), - [sym__cite_suppress_author] = ACTIONS(4693), - [sym__shortcode_open_escaped] = ACTIONS(4693), - [sym__shortcode_open] = ACTIONS(4693), - [sym__unclosed_span] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4693), - [sym__strong_emphasis_open_underscore] = ACTIONS(4693), - [sym__strong_emphasis_close_underscore] = ACTIONS(4693), + [sym__qmd_attribute] = STATE(1479), + [sym_raw_attribute] = STATE(1479), + [sym_commonmark_attribute] = STATE(1479), + [sym_language_attribute] = STATE(1479), + [sym__backslash_escape] = ACTIONS(4219), + [sym_entity_reference] = ACTIONS(4219), + [sym_numeric_character_reference] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4221), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_POUND] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_COLON] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_BSLASH] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [sym__newline_token] = ACTIONS(4219), + [aux_sym_insert_token1] = ACTIONS(4219), + [aux_sym_delete_token1] = ACTIONS(4219), + [aux_sym_highlight_token1] = ACTIONS(4219), + [aux_sym_edit_comment_token1] = ACTIONS(4219), + [anon_sym_CARET_LBRACK] = ACTIONS(4219), + [anon_sym_LBRACK_CARET] = ACTIONS(4219), + [sym_uri_autolink] = ACTIONS(4219), + [sym_email_autolink] = ACTIONS(4219), + [sym__whitespace_ge_2] = ACTIONS(4219), + [aux_sym__whitespace_token1] = ACTIONS(4221), + [sym__word_no_digit] = ACTIONS(4219), + [sym__digits] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [sym__code_span_start] = ACTIONS(4219), + [sym__emphasis_open_star] = ACTIONS(4219), + [sym__emphasis_open_underscore] = ACTIONS(4219), + [sym__strikeout_open] = ACTIONS(4219), + [sym__strikeout_close] = ACTIONS(4219), + [sym__latex_span_start] = ACTIONS(4219), + [sym__single_quote_open] = ACTIONS(4219), + [sym__double_quote_open] = ACTIONS(4219), + [sym__superscript_open] = ACTIONS(4219), + [sym__subscript_open] = ACTIONS(4219), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4219), + [sym__cite_author_in_text] = ACTIONS(4219), + [sym__cite_suppress_author] = ACTIONS(4219), + [sym__shortcode_open_escaped] = ACTIONS(4219), + [sym__shortcode_open] = ACTIONS(4219), + [sym__unclosed_span] = ACTIONS(4219), + [sym__strong_emphasis_open_star] = ACTIONS(4219), + [sym__strong_emphasis_open_underscore] = ACTIONS(4219), }, [STATE(615)] = { - [sym__qmd_attribute] = STATE(1138), - [sym_raw_attribute] = STATE(1138), - [sym_commonmark_attribute] = STATE(1138), - [sym_language_attribute] = STATE(1138), - [sym__backslash_escape] = ACTIONS(4697), - [sym_entity_reference] = ACTIONS(4697), - [sym_numeric_character_reference] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_PERCENT] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_BSLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [sym__newline_token] = ACTIONS(4697), - [aux_sym_insert_token1] = ACTIONS(4697), - [aux_sym_delete_token1] = ACTIONS(4697), - [aux_sym_highlight_token1] = ACTIONS(4697), - [aux_sym_edit_comment_token1] = ACTIONS(4697), - [anon_sym_CARET_LBRACK] = ACTIONS(4697), - [anon_sym_LBRACK_CARET] = ACTIONS(4697), - [sym_uri_autolink] = ACTIONS(4697), - [sym_email_autolink] = ACTIONS(4697), - [sym__whitespace_ge_2] = ACTIONS(4697), - [aux_sym__whitespace_token1] = ACTIONS(4699), - [sym__word_no_digit] = ACTIONS(4697), - [sym__digits] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4697), - [sym__code_span_start] = ACTIONS(4697), - [sym__emphasis_open_star] = ACTIONS(4697), - [sym__emphasis_open_underscore] = ACTIONS(4697), - [sym__strikeout_open] = ACTIONS(4697), - [sym__latex_span_start] = ACTIONS(4697), - [sym__single_quote_open] = ACTIONS(4697), - [sym__double_quote_open] = ACTIONS(4697), - [sym__superscript_open] = ACTIONS(4697), - [sym__subscript_open] = ACTIONS(4697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4697), - [sym__cite_author_in_text] = ACTIONS(4697), - [sym__cite_suppress_author] = ACTIONS(4697), - [sym__shortcode_open_escaped] = ACTIONS(4697), - [sym__shortcode_open] = ACTIONS(4697), - [sym__unclosed_span] = ACTIONS(4697), - [sym__strong_emphasis_open_star] = ACTIONS(4697), - [sym__strong_emphasis_open_underscore] = ACTIONS(4697), - [sym__strong_emphasis_close_underscore] = ACTIONS(4697), + [sym__qmd_attribute] = STATE(1491), + [sym_raw_attribute] = STATE(1491), + [sym_commonmark_attribute] = STATE(1491), + [sym_language_attribute] = STATE(1491), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__strikeout_close] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(616)] = { - [sym__qmd_attribute] = STATE(1150), - [sym_raw_attribute] = STATE(1150), - [sym_commonmark_attribute] = STATE(1150), - [sym_language_attribute] = STATE(1150), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), - [sym__strong_emphasis_close_underscore] = ACTIONS(4701), + [sym__qmd_attribute] = STATE(838), + [sym_raw_attribute] = STATE(838), + [sym_commonmark_attribute] = STATE(838), + [sym_language_attribute] = STATE(838), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__double_quote_close] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(617)] = { - [sym__qmd_attribute] = STATE(1161), - [sym_raw_attribute] = STATE(1161), - [sym_commonmark_attribute] = STATE(1161), - [sym_language_attribute] = STATE(1161), - [sym__backslash_escape] = ACTIONS(4641), - [sym_entity_reference] = ACTIONS(4641), - [sym_numeric_character_reference] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_BSLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [sym__newline_token] = ACTIONS(4641), - [aux_sym_insert_token1] = ACTIONS(4641), - [aux_sym_delete_token1] = ACTIONS(4641), - [aux_sym_highlight_token1] = ACTIONS(4641), - [aux_sym_edit_comment_token1] = ACTIONS(4641), - [anon_sym_CARET_LBRACK] = ACTIONS(4641), - [anon_sym_LBRACK_CARET] = ACTIONS(4641), - [sym_uri_autolink] = ACTIONS(4641), - [sym_email_autolink] = ACTIONS(4641), - [sym__whitespace_ge_2] = ACTIONS(4641), - [aux_sym__whitespace_token1] = ACTIONS(4643), - [sym__word_no_digit] = ACTIONS(4641), - [sym__digits] = ACTIONS(4641), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4641), - [sym__code_span_start] = ACTIONS(4641), - [sym__emphasis_open_star] = ACTIONS(4641), - [sym__emphasis_open_underscore] = ACTIONS(4641), - [sym__strikeout_open] = ACTIONS(4641), - [sym__latex_span_start] = ACTIONS(4641), - [sym__single_quote_open] = ACTIONS(4641), - [sym__double_quote_open] = ACTIONS(4641), - [sym__superscript_open] = ACTIONS(4641), - [sym__subscript_open] = ACTIONS(4641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4641), - [sym__cite_author_in_text] = ACTIONS(4641), - [sym__cite_suppress_author] = ACTIONS(4641), - [sym__shortcode_open_escaped] = ACTIONS(4641), - [sym__shortcode_open] = ACTIONS(4641), - [sym__unclosed_span] = ACTIONS(4641), - [sym__strong_emphasis_open_star] = ACTIONS(4641), - [sym__strong_emphasis_open_underscore] = ACTIONS(4641), - [sym__strong_emphasis_close_underscore] = ACTIONS(4641), + [sym__qmd_attribute] = STATE(1504), + [sym_raw_attribute] = STATE(1504), + [sym_commonmark_attribute] = STATE(1504), + [sym_language_attribute] = STATE(1504), + [sym__backslash_escape] = ACTIONS(4227), + [sym_entity_reference] = ACTIONS(4227), + [sym_numeric_character_reference] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_BSLASH] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_BQUOTE] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [sym__newline_token] = ACTIONS(4227), + [aux_sym_insert_token1] = ACTIONS(4227), + [aux_sym_delete_token1] = ACTIONS(4227), + [aux_sym_highlight_token1] = ACTIONS(4227), + [aux_sym_edit_comment_token1] = ACTIONS(4227), + [anon_sym_CARET_LBRACK] = ACTIONS(4227), + [anon_sym_LBRACK_CARET] = ACTIONS(4227), + [sym_uri_autolink] = ACTIONS(4227), + [sym_email_autolink] = ACTIONS(4227), + [sym__whitespace_ge_2] = ACTIONS(4227), + [aux_sym__whitespace_token1] = ACTIONS(4229), + [sym__word_no_digit] = ACTIONS(4227), + [sym__digits] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [sym__code_span_start] = ACTIONS(4227), + [sym__emphasis_open_star] = ACTIONS(4227), + [sym__emphasis_open_underscore] = ACTIONS(4227), + [sym__strikeout_open] = ACTIONS(4227), + [sym__strikeout_close] = ACTIONS(4227), + [sym__latex_span_start] = ACTIONS(4227), + [sym__single_quote_open] = ACTIONS(4227), + [sym__double_quote_open] = ACTIONS(4227), + [sym__superscript_open] = ACTIONS(4227), + [sym__subscript_open] = ACTIONS(4227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4227), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4227), + [sym__cite_author_in_text] = ACTIONS(4227), + [sym__cite_suppress_author] = ACTIONS(4227), + [sym__shortcode_open_escaped] = ACTIONS(4227), + [sym__shortcode_open] = ACTIONS(4227), + [sym__unclosed_span] = ACTIONS(4227), + [sym__strong_emphasis_open_star] = ACTIONS(4227), + [sym__strong_emphasis_open_underscore] = ACTIONS(4227), }, [STATE(618)] = { - [sym__qmd_attribute] = STATE(1169), - [sym_raw_attribute] = STATE(1169), - [sym_commonmark_attribute] = STATE(1169), - [sym_language_attribute] = STATE(1169), - [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_STAR] = 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(4725), - [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), + [sym__qmd_attribute] = STATE(897), + [sym_raw_attribute] = STATE(897), + [sym_commonmark_attribute] = STATE(897), + [sym_language_attribute] = STATE(897), + [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(4263), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(619)] = { - [sym__qmd_attribute] = STATE(1171), - [sym_raw_attribute] = STATE(1171), - [sym_commonmark_attribute] = STATE(1171), - [sym_language_attribute] = STATE(1171), - [sym__backslash_escape] = ACTIONS(4653), - [sym_entity_reference] = ACTIONS(4653), - [sym_numeric_character_reference] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4655), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4655), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4655), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_BSLASH] = ACTIONS(4655), - [anon_sym_CARET] = ACTIONS(4655), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym_RPAREN] = ACTIONS(4653), - [sym__newline_token] = ACTIONS(4653), - [aux_sym_insert_token1] = ACTIONS(4653), - [aux_sym_delete_token1] = ACTIONS(4653), - [aux_sym_highlight_token1] = ACTIONS(4653), - [aux_sym_edit_comment_token1] = ACTIONS(4653), - [anon_sym_CARET_LBRACK] = ACTIONS(4653), - [anon_sym_LBRACK_CARET] = ACTIONS(4653), - [sym_uri_autolink] = ACTIONS(4653), - [sym_email_autolink] = ACTIONS(4653), - [sym__whitespace_ge_2] = ACTIONS(4653), - [aux_sym__whitespace_token1] = ACTIONS(4655), - [sym__word_no_digit] = ACTIONS(4653), - [sym__digits] = ACTIONS(4653), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [sym__code_span_start] = ACTIONS(4653), - [sym__emphasis_open_star] = ACTIONS(4653), - [sym__emphasis_open_underscore] = ACTIONS(4653), - [sym__strikeout_open] = ACTIONS(4653), - [sym__latex_span_start] = ACTIONS(4653), - [sym__single_quote_open] = ACTIONS(4653), - [sym__double_quote_open] = ACTIONS(4653), - [sym__superscript_open] = ACTIONS(4653), - [sym__subscript_open] = ACTIONS(4653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4653), - [sym__cite_author_in_text] = ACTIONS(4653), - [sym__cite_suppress_author] = ACTIONS(4653), - [sym__shortcode_open_escaped] = ACTIONS(4653), - [sym__shortcode_open] = ACTIONS(4653), - [sym__unclosed_span] = ACTIONS(4653), - [sym__strong_emphasis_open_star] = ACTIONS(4653), - [sym__strong_emphasis_open_underscore] = ACTIONS(4653), - [sym__strong_emphasis_close_underscore] = ACTIONS(4653), + [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), + [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(4285), + [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(620)] = { - [sym__qmd_attribute] = STATE(1178), - [sym_raw_attribute] = STATE(1178), - [sym_commonmark_attribute] = STATE(1178), - [sym_language_attribute] = STATE(1178), - [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_STAR] = 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(4725), - [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), - [sym__strong_emphasis_close_underscore] = ACTIONS(4631), + [sym__qmd_attribute] = STATE(1515), + [sym_raw_attribute] = STATE(1515), + [sym_commonmark_attribute] = STATE(1515), + [sym_language_attribute] = STATE(1515), + [sym__backslash_escape] = ACTIONS(4231), + [sym_entity_reference] = ACTIONS(4231), + [sym_numeric_character_reference] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4233), + [anon_sym_GT] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_BSLASH] = ACTIONS(4233), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [sym__newline_token] = ACTIONS(4231), + [aux_sym_insert_token1] = ACTIONS(4231), + [aux_sym_delete_token1] = ACTIONS(4231), + [aux_sym_highlight_token1] = ACTIONS(4231), + [aux_sym_edit_comment_token1] = ACTIONS(4231), + [anon_sym_CARET_LBRACK] = ACTIONS(4231), + [anon_sym_LBRACK_CARET] = ACTIONS(4231), + [sym_uri_autolink] = ACTIONS(4231), + [sym_email_autolink] = ACTIONS(4231), + [sym__whitespace_ge_2] = ACTIONS(4231), + [aux_sym__whitespace_token1] = ACTIONS(4233), + [sym__word_no_digit] = ACTIONS(4231), + [sym__digits] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [sym__code_span_start] = ACTIONS(4231), + [sym__emphasis_open_star] = ACTIONS(4231), + [sym__emphasis_open_underscore] = ACTIONS(4231), + [sym__strikeout_open] = ACTIONS(4231), + [sym__strikeout_close] = ACTIONS(4231), + [sym__latex_span_start] = ACTIONS(4231), + [sym__single_quote_open] = ACTIONS(4231), + [sym__double_quote_open] = ACTIONS(4231), + [sym__superscript_open] = ACTIONS(4231), + [sym__subscript_open] = ACTIONS(4231), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4231), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4231), + [sym__cite_author_in_text] = ACTIONS(4231), + [sym__cite_suppress_author] = ACTIONS(4231), + [sym__shortcode_open_escaped] = ACTIONS(4231), + [sym__shortcode_open] = ACTIONS(4231), + [sym__unclosed_span] = ACTIONS(4231), + [sym__strong_emphasis_open_star] = ACTIONS(4231), + [sym__strong_emphasis_open_underscore] = ACTIONS(4231), }, [STATE(621)] = { - [sym__qmd_attribute] = STATE(1179), - [sym_raw_attribute] = STATE(1179), - [sym_commonmark_attribute] = STATE(1179), - [sym_language_attribute] = STATE(1179), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), - [sym__strong_emphasis_close_underscore] = ACTIONS(4657), + [sym__qmd_attribute] = STATE(1522), + [sym_raw_attribute] = STATE(1522), + [sym_commonmark_attribute] = STATE(1522), + [sym_language_attribute] = STATE(1522), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__strikeout_close] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(622)] = { - [sym__qmd_attribute] = STATE(1185), - [sym_raw_attribute] = STATE(1185), - [sym_commonmark_attribute] = STATE(1185), - [sym_language_attribute] = STATE(1185), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), - [sym__strong_emphasis_close_underscore] = ACTIONS(4661), + [sym__qmd_attribute] = STATE(903), + [sym_raw_attribute] = STATE(903), + [sym_commonmark_attribute] = STATE(903), + [sym_language_attribute] = STATE(903), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__double_quote_close] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(623)] = { - [sym__qmd_attribute] = STATE(1187), - [sym_raw_attribute] = STATE(1187), - [sym_commonmark_attribute] = STATE(1187), - [sym_language_attribute] = STATE(1187), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), - [sym__strong_emphasis_close_underscore] = ACTIONS(4637), + [sym__qmd_attribute] = STATE(932), + [sym_raw_attribute] = STATE(932), + [sym_commonmark_attribute] = STATE(932), + [sym_language_attribute] = STATE(932), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__double_quote_close] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(624)] = { - [sym__qmd_attribute] = STATE(1191), - [sym_raw_attribute] = STATE(1191), - [sym_commonmark_attribute] = STATE(1191), - [sym_language_attribute] = STATE(1191), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), - [sym__strong_emphasis_close_underscore] = ACTIONS(4665), + [sym__qmd_attribute] = STATE(934), + [sym_raw_attribute] = STATE(934), + [sym_commonmark_attribute] = STATE(934), + [sym_language_attribute] = STATE(934), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__double_quote_close] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(625)] = { - [sym__qmd_attribute] = STATE(1192), - [sym_raw_attribute] = STATE(1192), - [sym_commonmark_attribute] = STATE(1192), - [sym_language_attribute] = STATE(1192), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), - [sym__strong_emphasis_close_underscore] = ACTIONS(4669), + [sym__qmd_attribute] = STATE(959), + [sym_raw_attribute] = STATE(959), + [sym_commonmark_attribute] = STATE(959), + [sym_language_attribute] = STATE(959), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__double_quote_close] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(626)] = { - [sym__qmd_attribute] = STATE(1193), - [sym_raw_attribute] = STATE(1193), - [sym_commonmark_attribute] = STATE(1193), - [sym_language_attribute] = STATE(1193), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), - [sym__strong_emphasis_close_underscore] = ACTIONS(4673), + [sym__qmd_attribute] = STATE(1524), + [sym_raw_attribute] = STATE(1524), + [sym_commonmark_attribute] = STATE(1524), + [sym_language_attribute] = STATE(1524), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__strikeout_close] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(627)] = { - [sym__qmd_attribute] = STATE(1194), - [sym_raw_attribute] = STATE(1194), - [sym_commonmark_attribute] = STATE(1194), - [sym_language_attribute] = STATE(1194), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), - [sym__strong_emphasis_close_underscore] = ACTIONS(4677), + [sym__qmd_attribute] = STATE(1529), + [sym_raw_attribute] = STATE(1529), + [sym_commonmark_attribute] = STATE(1529), + [sym_language_attribute] = STATE(1529), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__strikeout_close] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(628)] = { - [sym__qmd_attribute] = STATE(1195), - [sym_raw_attribute] = STATE(1195), - [sym_commonmark_attribute] = STATE(1195), - [sym_language_attribute] = STATE(1195), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), - [sym__strong_emphasis_close_underscore] = ACTIONS(4681), + [sym__qmd_attribute] = STATE(984), + [sym_raw_attribute] = STATE(984), + [sym_commonmark_attribute] = STATE(984), + [sym_language_attribute] = STATE(984), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__double_quote_close] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(629)] = { - [sym__qmd_attribute] = STATE(1196), - [sym_raw_attribute] = STATE(1196), - [sym_commonmark_attribute] = STATE(1196), - [sym_language_attribute] = STATE(1196), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4725), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), - [sym__strong_emphasis_close_underscore] = ACTIONS(4625), + [sym__qmd_attribute] = STATE(1608), + [sym_raw_attribute] = STATE(1608), + [sym_commonmark_attribute] = STATE(1608), + [sym_language_attribute] = STATE(1608), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__single_quote_close] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(630)] = { - [sym__qmd_attribute] = STATE(1223), - [sym_raw_attribute] = STATE(1223), - [sym_commonmark_attribute] = STATE(1223), - [sym_language_attribute] = STATE(1223), - [sym__backslash_escape] = ACTIONS(4685), - [sym_entity_reference] = ACTIONS(4685), - [sym_numeric_character_reference] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_BSLASH] = ACTIONS(4687), - [anon_sym_RBRACK] = ACTIONS(4685), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4731), - [anon_sym_RPAREN] = ACTIONS(4685), - [sym__newline_token] = ACTIONS(4685), - [aux_sym_insert_token1] = ACTIONS(4685), - [aux_sym_delete_token1] = ACTIONS(4685), - [aux_sym_highlight_token1] = ACTIONS(4685), - [aux_sym_edit_comment_token1] = ACTIONS(4685), - [anon_sym_CARET_LBRACK] = ACTIONS(4685), - [anon_sym_LBRACK_CARET] = ACTIONS(4685), - [sym_uri_autolink] = ACTIONS(4685), - [sym_email_autolink] = ACTIONS(4685), - [sym__whitespace_ge_2] = ACTIONS(4685), - [aux_sym__whitespace_token1] = ACTIONS(4687), - [sym__word_no_digit] = ACTIONS(4685), - [sym__digits] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4685), - [sym__code_span_start] = ACTIONS(4685), - [sym__emphasis_open_star] = ACTIONS(4685), - [sym__emphasis_open_underscore] = ACTIONS(4685), - [sym__strikeout_open] = ACTIONS(4685), - [sym__latex_span_start] = ACTIONS(4685), - [sym__single_quote_open] = ACTIONS(4685), - [sym__double_quote_open] = ACTIONS(4685), - [sym__superscript_open] = ACTIONS(4685), - [sym__subscript_open] = ACTIONS(4685), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4685), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4685), - [sym__cite_author_in_text] = ACTIONS(4685), - [sym__cite_suppress_author] = ACTIONS(4685), - [sym__shortcode_open_escaped] = ACTIONS(4685), - [sym__shortcode_open] = ACTIONS(4685), - [sym__unclosed_span] = ACTIONS(4685), - [sym__strong_emphasis_open_star] = ACTIONS(4685), - [sym__strong_emphasis_open_underscore] = ACTIONS(4685), + [sym__qmd_attribute] = STATE(1530), + [sym_raw_attribute] = STATE(1530), + [sym_commonmark_attribute] = STATE(1530), + [sym_language_attribute] = STATE(1530), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__strikeout_close] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(631)] = { - [sym__qmd_attribute] = STATE(1224), - [sym_raw_attribute] = STATE(1224), - [sym_commonmark_attribute] = STATE(1224), - [sym_language_attribute] = STATE(1224), - [sym__backslash_escape] = ACTIONS(4693), - [sym_entity_reference] = ACTIONS(4693), - [sym_numeric_character_reference] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH] = ACTIONS(4695), - [anon_sym_RBRACK] = ACTIONS(4693), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [sym__newline_token] = ACTIONS(4693), - [aux_sym_insert_token1] = ACTIONS(4693), - [aux_sym_delete_token1] = ACTIONS(4693), - [aux_sym_highlight_token1] = ACTIONS(4693), - [aux_sym_edit_comment_token1] = ACTIONS(4693), - [anon_sym_CARET_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACK_CARET] = ACTIONS(4693), - [sym_uri_autolink] = ACTIONS(4693), - [sym_email_autolink] = ACTIONS(4693), - [sym__whitespace_ge_2] = ACTIONS(4693), - [aux_sym__whitespace_token1] = ACTIONS(4695), - [sym__word_no_digit] = ACTIONS(4693), - [sym__digits] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [sym__code_span_start] = ACTIONS(4693), - [sym__emphasis_open_star] = ACTIONS(4693), - [sym__emphasis_open_underscore] = ACTIONS(4693), - [sym__strikeout_open] = ACTIONS(4693), - [sym__latex_span_start] = ACTIONS(4693), - [sym__single_quote_open] = ACTIONS(4693), - [sym__double_quote_open] = ACTIONS(4693), - [sym__superscript_open] = ACTIONS(4693), - [sym__subscript_open] = ACTIONS(4693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4693), - [sym__cite_author_in_text] = ACTIONS(4693), - [sym__cite_suppress_author] = ACTIONS(4693), - [sym__shortcode_open_escaped] = ACTIONS(4693), - [sym__shortcode_open] = ACTIONS(4693), - [sym__unclosed_span] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4693), - [sym__strong_emphasis_open_underscore] = ACTIONS(4693), + [sym__qmd_attribute] = STATE(1533), + [sym_raw_attribute] = STATE(1533), + [sym_commonmark_attribute] = STATE(1533), + [sym_language_attribute] = STATE(1533), + [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(4285), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(632)] = { - [sym__qmd_attribute] = STATE(1226), - [sym_raw_attribute] = STATE(1226), - [sym_commonmark_attribute] = STATE(1226), - [sym_language_attribute] = STATE(1226), - [sym__backslash_escape] = ACTIONS(4697), - [sym_entity_reference] = ACTIONS(4697), - [sym_numeric_character_reference] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_PERCENT] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_BSLASH] = ACTIONS(4699), - [anon_sym_RBRACK] = ACTIONS(4697), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [sym__newline_token] = ACTIONS(4697), - [aux_sym_insert_token1] = ACTIONS(4697), - [aux_sym_delete_token1] = ACTIONS(4697), - [aux_sym_highlight_token1] = ACTIONS(4697), - [aux_sym_edit_comment_token1] = ACTIONS(4697), - [anon_sym_CARET_LBRACK] = ACTIONS(4697), - [anon_sym_LBRACK_CARET] = ACTIONS(4697), - [sym_uri_autolink] = ACTIONS(4697), - [sym_email_autolink] = ACTIONS(4697), - [sym__whitespace_ge_2] = ACTIONS(4697), - [aux_sym__whitespace_token1] = ACTIONS(4699), - [sym__word_no_digit] = ACTIONS(4697), - [sym__digits] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4697), - [sym__code_span_start] = ACTIONS(4697), - [sym__emphasis_open_star] = ACTIONS(4697), - [sym__emphasis_open_underscore] = ACTIONS(4697), - [sym__strikeout_open] = ACTIONS(4697), - [sym__latex_span_start] = ACTIONS(4697), - [sym__single_quote_open] = ACTIONS(4697), - [sym__double_quote_open] = ACTIONS(4697), - [sym__superscript_open] = ACTIONS(4697), - [sym__subscript_open] = ACTIONS(4697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4697), - [sym__cite_author_in_text] = ACTIONS(4697), - [sym__cite_suppress_author] = ACTIONS(4697), - [sym__shortcode_open_escaped] = ACTIONS(4697), - [sym__shortcode_open] = ACTIONS(4697), - [sym__unclosed_span] = ACTIONS(4697), - [sym__strong_emphasis_open_star] = ACTIONS(4697), - [sym__strong_emphasis_open_underscore] = ACTIONS(4697), - }, - [STATE(633)] = { - [sym__qmd_attribute] = STATE(1239), - [sym_raw_attribute] = STATE(1239), - [sym_commonmark_attribute] = STATE(1239), - [sym_language_attribute] = STATE(1239), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), - }, - [STATE(634)] = { - [sym__qmd_attribute] = STATE(1462), - [sym_raw_attribute] = STATE(1462), - [sym_commonmark_attribute] = STATE(1462), - [sym_language_attribute] = STATE(1462), - [sym__backslash_escape] = ACTIONS(4685), - [sym_entity_reference] = ACTIONS(4685), - [sym_numeric_character_reference] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_BSLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4733), - [anon_sym_RPAREN] = ACTIONS(4685), - [sym__newline_token] = ACTIONS(4685), - [aux_sym_insert_token1] = ACTIONS(4685), - [aux_sym_delete_token1] = ACTIONS(4685), - [aux_sym_highlight_token1] = ACTIONS(4685), - [aux_sym_edit_comment_token1] = ACTIONS(4685), - [anon_sym_CARET_LBRACK] = ACTIONS(4685), - [anon_sym_LBRACK_CARET] = ACTIONS(4685), - [sym_uri_autolink] = ACTIONS(4685), - [sym_email_autolink] = ACTIONS(4685), - [sym__whitespace_ge_2] = ACTIONS(4685), - [aux_sym__whitespace_token1] = ACTIONS(4687), - [sym__word_no_digit] = ACTIONS(4685), - [sym__digits] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4685), - [sym__code_span_start] = ACTIONS(4685), - [sym__emphasis_open_star] = ACTIONS(4685), - [sym__emphasis_open_underscore] = ACTIONS(4685), - [sym__emphasis_close_underscore] = ACTIONS(4685), - [sym__strikeout_open] = ACTIONS(4685), - [sym__latex_span_start] = ACTIONS(4685), - [sym__single_quote_open] = ACTIONS(4685), - [sym__double_quote_open] = ACTIONS(4685), - [sym__superscript_open] = ACTIONS(4685), - [sym__subscript_open] = ACTIONS(4685), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4685), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4685), - [sym__cite_author_in_text] = ACTIONS(4685), - [sym__cite_suppress_author] = ACTIONS(4685), - [sym__shortcode_open_escaped] = ACTIONS(4685), - [sym__shortcode_open] = ACTIONS(4685), - [sym__unclosed_span] = ACTIONS(4685), - [sym__strong_emphasis_open_star] = ACTIONS(4685), - [sym__strong_emphasis_open_underscore] = ACTIONS(4685), - }, - [STATE(635)] = { - [sym__qmd_attribute] = STATE(1252), - [sym_raw_attribute] = STATE(1252), - [sym_commonmark_attribute] = STATE(1252), - [sym_language_attribute] = STATE(1252), - [sym__backslash_escape] = ACTIONS(4641), - [sym_entity_reference] = ACTIONS(4641), - [sym_numeric_character_reference] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_BSLASH] = ACTIONS(4643), - [anon_sym_RBRACK] = ACTIONS(4641), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [sym__newline_token] = ACTIONS(4641), - [aux_sym_insert_token1] = ACTIONS(4641), - [aux_sym_delete_token1] = ACTIONS(4641), - [aux_sym_highlight_token1] = ACTIONS(4641), - [aux_sym_edit_comment_token1] = ACTIONS(4641), - [anon_sym_CARET_LBRACK] = ACTIONS(4641), - [anon_sym_LBRACK_CARET] = ACTIONS(4641), - [sym_uri_autolink] = ACTIONS(4641), - [sym_email_autolink] = ACTIONS(4641), - [sym__whitespace_ge_2] = ACTIONS(4641), - [aux_sym__whitespace_token1] = ACTIONS(4643), - [sym__word_no_digit] = ACTIONS(4641), - [sym__digits] = ACTIONS(4641), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4641), - [sym__code_span_start] = ACTIONS(4641), - [sym__emphasis_open_star] = ACTIONS(4641), - [sym__emphasis_open_underscore] = ACTIONS(4641), - [sym__strikeout_open] = ACTIONS(4641), - [sym__latex_span_start] = ACTIONS(4641), - [sym__single_quote_open] = ACTIONS(4641), - [sym__double_quote_open] = ACTIONS(4641), - [sym__superscript_open] = ACTIONS(4641), - [sym__subscript_open] = ACTIONS(4641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4641), - [sym__cite_author_in_text] = ACTIONS(4641), - [sym__cite_suppress_author] = ACTIONS(4641), - [sym__shortcode_open_escaped] = ACTIONS(4641), - [sym__shortcode_open] = ACTIONS(4641), - [sym__unclosed_span] = ACTIONS(4641), - [sym__strong_emphasis_open_star] = ACTIONS(4641), - [sym__strong_emphasis_open_underscore] = ACTIONS(4641), - }, - [STATE(636)] = { - [sym__qmd_attribute] = STATE(1261), - [sym_raw_attribute] = STATE(1261), - [sym_commonmark_attribute] = STATE(1261), - [sym_language_attribute] = STATE(1261), - [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_STAR] = 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(4729), - [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(637)] = { - [sym__qmd_attribute] = STATE(1263), - [sym_raw_attribute] = STATE(1263), - [sym_commonmark_attribute] = STATE(1263), - [sym_language_attribute] = STATE(1263), - [sym__backslash_escape] = ACTIONS(4653), - [sym_entity_reference] = ACTIONS(4653), - [sym_numeric_character_reference] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4655), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4655), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4655), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_BSLASH] = ACTIONS(4655), - [anon_sym_RBRACK] = ACTIONS(4653), - [anon_sym_CARET] = ACTIONS(4655), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym_RPAREN] = ACTIONS(4653), - [sym__newline_token] = ACTIONS(4653), - [aux_sym_insert_token1] = ACTIONS(4653), - [aux_sym_delete_token1] = ACTIONS(4653), - [aux_sym_highlight_token1] = ACTIONS(4653), - [aux_sym_edit_comment_token1] = ACTIONS(4653), - [anon_sym_CARET_LBRACK] = ACTIONS(4653), - [anon_sym_LBRACK_CARET] = ACTIONS(4653), - [sym_uri_autolink] = ACTIONS(4653), - [sym_email_autolink] = ACTIONS(4653), - [sym__whitespace_ge_2] = ACTIONS(4653), - [aux_sym__whitespace_token1] = ACTIONS(4655), - [sym__word_no_digit] = ACTIONS(4653), - [sym__digits] = ACTIONS(4653), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [sym__code_span_start] = ACTIONS(4653), - [sym__emphasis_open_star] = ACTIONS(4653), - [sym__emphasis_open_underscore] = ACTIONS(4653), - [sym__strikeout_open] = ACTIONS(4653), - [sym__latex_span_start] = ACTIONS(4653), - [sym__single_quote_open] = ACTIONS(4653), - [sym__double_quote_open] = ACTIONS(4653), - [sym__superscript_open] = ACTIONS(4653), - [sym__subscript_open] = ACTIONS(4653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4653), - [sym__cite_author_in_text] = ACTIONS(4653), - [sym__cite_suppress_author] = ACTIONS(4653), - [sym__shortcode_open_escaped] = ACTIONS(4653), - [sym__shortcode_open] = ACTIONS(4653), - [sym__unclosed_span] = ACTIONS(4653), - [sym__strong_emphasis_open_star] = ACTIONS(4653), - [sym__strong_emphasis_open_underscore] = ACTIONS(4653), - }, - [STATE(638)] = { - [sym__qmd_attribute] = STATE(1270), - [sym_raw_attribute] = STATE(1270), - [sym_commonmark_attribute] = STATE(1270), - [sym_language_attribute] = STATE(1270), - [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_STAR] = 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_RBRACK] = ACTIONS(4631), - [anon_sym_CARET] = ACTIONS(4633), - [anon_sym_BQUOTE] = ACTIONS(4631), - [anon_sym_LBRACE] = ACTIONS(4729), - [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), + [sym__qmd_attribute] = STATE(1332), + [sym_raw_attribute] = STATE(1332), + [sym_commonmark_attribute] = STATE(1332), + [sym_language_attribute] = STATE(1332), + [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(4289), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4291), + [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__superscript_close] = 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), + }, + [STATE(633)] = { + [sym__qmd_attribute] = STATE(1335), + [sym_raw_attribute] = STATE(1335), + [sym_commonmark_attribute] = STATE(1335), + [sym_language_attribute] = 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(4289), + [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__superscript_open] = ACTIONS(4213), + [sym__superscript_close] = 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(634)] = { + [sym__qmd_attribute] = STATE(1609), + [sym_raw_attribute] = STATE(1609), + [sym_commonmark_attribute] = STATE(1609), + [sym_language_attribute] = STATE(1609), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__single_quote_close] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), + }, + [STATE(635)] = { + [sym__qmd_attribute] = STATE(1349), + [sym_raw_attribute] = STATE(1349), + [sym_commonmark_attribute] = STATE(1349), + [sym_language_attribute] = STATE(1349), + [sym__backslash_escape] = ACTIONS(4219), + [sym_entity_reference] = ACTIONS(4219), + [sym_numeric_character_reference] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4221), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_POUND] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_COLON] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_BSLASH] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [sym__newline_token] = ACTIONS(4219), + [aux_sym_insert_token1] = ACTIONS(4219), + [aux_sym_delete_token1] = ACTIONS(4219), + [aux_sym_highlight_token1] = ACTIONS(4219), + [aux_sym_edit_comment_token1] = ACTIONS(4219), + [anon_sym_CARET_LBRACK] = ACTIONS(4219), + [anon_sym_LBRACK_CARET] = ACTIONS(4219), + [sym_uri_autolink] = ACTIONS(4219), + [sym_email_autolink] = ACTIONS(4219), + [sym__whitespace_ge_2] = ACTIONS(4219), + [aux_sym__whitespace_token1] = ACTIONS(4221), + [sym__word_no_digit] = ACTIONS(4219), + [sym__digits] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [sym__code_span_start] = ACTIONS(4219), + [sym__emphasis_open_star] = ACTIONS(4219), + [sym__emphasis_open_underscore] = ACTIONS(4219), + [sym__strikeout_open] = ACTIONS(4219), + [sym__latex_span_start] = ACTIONS(4219), + [sym__single_quote_open] = ACTIONS(4219), + [sym__double_quote_open] = ACTIONS(4219), + [sym__superscript_open] = ACTIONS(4219), + [sym__superscript_close] = ACTIONS(4219), + [sym__subscript_open] = ACTIONS(4219), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4219), + [sym__cite_author_in_text] = ACTIONS(4219), + [sym__cite_suppress_author] = ACTIONS(4219), + [sym__shortcode_open_escaped] = ACTIONS(4219), + [sym__shortcode_open] = ACTIONS(4219), + [sym__unclosed_span] = ACTIONS(4219), + [sym__strong_emphasis_open_star] = ACTIONS(4219), + [sym__strong_emphasis_open_underscore] = ACTIONS(4219), + }, + [STATE(636)] = { + [sym__qmd_attribute] = STATE(1534), + [sym_raw_attribute] = STATE(1534), + [sym_commonmark_attribute] = STATE(1534), + [sym_language_attribute] = STATE(1534), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__strikeout_close] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), + }, + [STATE(637)] = { + [sym__qmd_attribute] = STATE(1535), + [sym_raw_attribute] = STATE(1535), + [sym_commonmark_attribute] = STATE(1535), + [sym_language_attribute] = STATE(1535), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__strikeout_close] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), + }, + [STATE(638)] = { + [sym__qmd_attribute] = STATE(1451), + [sym_raw_attribute] = STATE(1451), + [sym_commonmark_attribute] = STATE(1451), + [sym_language_attribute] = STATE(1451), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__superscript_close] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(639)] = { - [sym__qmd_attribute] = STATE(1272), - [sym_raw_attribute] = STATE(1272), - [sym_commonmark_attribute] = STATE(1272), - [sym_language_attribute] = STATE(1272), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_RBRACK] = ACTIONS(4657), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [sym__qmd_attribute] = STATE(1613), + [sym_raw_attribute] = STATE(1613), + [sym_commonmark_attribute] = STATE(1613), + [sym_language_attribute] = STATE(1613), + [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(4217), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(640)] = { - [sym__qmd_attribute] = STATE(1277), - [sym_raw_attribute] = STATE(1277), - [sym_commonmark_attribute] = STATE(1277), - [sym_language_attribute] = STATE(1277), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_RBRACK] = ACTIONS(4661), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [sym__qmd_attribute] = STATE(1591), + [sym_raw_attribute] = STATE(1591), + [sym_commonmark_attribute] = STATE(1591), + [sym_language_attribute] = STATE(1591), + [sym__backslash_escape] = ACTIONS(4227), + [sym_entity_reference] = ACTIONS(4227), + [sym_numeric_character_reference] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_BSLASH] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_BQUOTE] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [sym__newline_token] = ACTIONS(4227), + [aux_sym_insert_token1] = ACTIONS(4227), + [aux_sym_delete_token1] = ACTIONS(4227), + [aux_sym_highlight_token1] = ACTIONS(4227), + [aux_sym_edit_comment_token1] = ACTIONS(4227), + [anon_sym_CARET_LBRACK] = ACTIONS(4227), + [anon_sym_LBRACK_CARET] = ACTIONS(4227), + [sym_uri_autolink] = ACTIONS(4227), + [sym_email_autolink] = ACTIONS(4227), + [sym__whitespace_ge_2] = ACTIONS(4227), + [aux_sym__whitespace_token1] = ACTIONS(4229), + [sym__word_no_digit] = ACTIONS(4227), + [sym__digits] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [sym__code_span_start] = ACTIONS(4227), + [sym__emphasis_open_star] = ACTIONS(4227), + [sym__emphasis_open_underscore] = ACTIONS(4227), + [sym__strikeout_open] = ACTIONS(4227), + [sym__latex_span_start] = ACTIONS(4227), + [sym__single_quote_open] = ACTIONS(4227), + [sym__double_quote_open] = ACTIONS(4227), + [sym__superscript_open] = ACTIONS(4227), + [sym__superscript_close] = ACTIONS(4227), + [sym__subscript_open] = ACTIONS(4227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4227), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4227), + [sym__cite_author_in_text] = ACTIONS(4227), + [sym__cite_suppress_author] = ACTIONS(4227), + [sym__shortcode_open_escaped] = ACTIONS(4227), + [sym__shortcode_open] = ACTIONS(4227), + [sym__unclosed_span] = ACTIONS(4227), + [sym__strong_emphasis_open_star] = ACTIONS(4227), + [sym__strong_emphasis_open_underscore] = ACTIONS(4227), }, [STATE(641)] = { - [sym__qmd_attribute] = STATE(1279), - [sym_raw_attribute] = STATE(1279), - [sym_commonmark_attribute] = STATE(1279), - [sym_language_attribute] = STATE(1279), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_RBRACK] = ACTIONS(4637), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [sym__qmd_attribute] = STATE(1615), + [sym_raw_attribute] = STATE(1615), + [sym_commonmark_attribute] = STATE(1615), + [sym_language_attribute] = STATE(1615), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__single_quote_close] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(642)] = { - [sym__qmd_attribute] = STATE(1283), - [sym_raw_attribute] = STATE(1283), - [sym_commonmark_attribute] = STATE(1283), - [sym_language_attribute] = STATE(1283), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_RBRACK] = ACTIONS(4665), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__qmd_attribute] = STATE(1536), + [sym_raw_attribute] = STATE(1536), + [sym_commonmark_attribute] = STATE(1536), + [sym_language_attribute] = STATE(1536), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__strikeout_close] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(643)] = { - [sym__qmd_attribute] = STATE(1285), - [sym_raw_attribute] = STATE(1285), - [sym_commonmark_attribute] = STATE(1285), - [sym_language_attribute] = STATE(1285), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4669), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [sym__qmd_attribute] = STATE(1537), + [sym_raw_attribute] = STATE(1537), + [sym_commonmark_attribute] = STATE(1537), + [sym_language_attribute] = STATE(1537), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__strikeout_close] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(644)] = { - [sym__qmd_attribute] = STATE(1287), - [sym_raw_attribute] = STATE(1287), - [sym_commonmark_attribute] = STATE(1287), - [sym_language_attribute] = STATE(1287), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_RBRACK] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__qmd_attribute] = STATE(802), + [sym_raw_attribute] = STATE(802), + [sym_commonmark_attribute] = STATE(802), + [sym_language_attribute] = STATE(802), + [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(4289), + [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__superscript_close] = 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(645)] = { - [sym__qmd_attribute] = STATE(1289), - [sym_raw_attribute] = STATE(1289), - [sym_commonmark_attribute] = STATE(1289), - [sym_language_attribute] = STATE(1289), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_RBRACK] = ACTIONS(4677), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__qmd_attribute] = STATE(804), + [sym_raw_attribute] = STATE(804), + [sym_commonmark_attribute] = STATE(804), + [sym_language_attribute] = STATE(804), + [sym__backslash_escape] = ACTIONS(4231), + [sym_entity_reference] = ACTIONS(4231), + [sym_numeric_character_reference] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4233), + [anon_sym_GT] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_BSLASH] = ACTIONS(4233), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [sym__newline_token] = ACTIONS(4231), + [aux_sym_insert_token1] = ACTIONS(4231), + [aux_sym_delete_token1] = ACTIONS(4231), + [aux_sym_highlight_token1] = ACTIONS(4231), + [aux_sym_edit_comment_token1] = ACTIONS(4231), + [anon_sym_CARET_LBRACK] = ACTIONS(4231), + [anon_sym_LBRACK_CARET] = ACTIONS(4231), + [sym_uri_autolink] = ACTIONS(4231), + [sym_email_autolink] = ACTIONS(4231), + [sym__whitespace_ge_2] = ACTIONS(4231), + [aux_sym__whitespace_token1] = ACTIONS(4233), + [sym__word_no_digit] = ACTIONS(4231), + [sym__digits] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [sym__code_span_start] = ACTIONS(4231), + [sym__emphasis_open_star] = ACTIONS(4231), + [sym__emphasis_open_underscore] = ACTIONS(4231), + [sym__strikeout_open] = ACTIONS(4231), + [sym__latex_span_start] = ACTIONS(4231), + [sym__single_quote_open] = ACTIONS(4231), + [sym__double_quote_open] = ACTIONS(4231), + [sym__superscript_open] = ACTIONS(4231), + [sym__superscript_close] = ACTIONS(4231), + [sym__subscript_open] = ACTIONS(4231), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4231), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4231), + [sym__cite_author_in_text] = ACTIONS(4231), + [sym__cite_suppress_author] = ACTIONS(4231), + [sym__shortcode_open_escaped] = ACTIONS(4231), + [sym__shortcode_open] = ACTIONS(4231), + [sym__unclosed_span] = ACTIONS(4231), + [sym__strong_emphasis_open_star] = ACTIONS(4231), + [sym__strong_emphasis_open_underscore] = ACTIONS(4231), }, [STATE(646)] = { - [sym__qmd_attribute] = STATE(1290), - [sym_raw_attribute] = STATE(1290), - [sym_commonmark_attribute] = STATE(1290), - [sym_language_attribute] = STATE(1290), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_RBRACK] = ACTIONS(4681), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [sym__qmd_attribute] = STATE(810), + [sym_raw_attribute] = STATE(810), + [sym_commonmark_attribute] = STATE(810), + [sym_language_attribute] = STATE(810), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__superscript_close] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(647)] = { - [sym__qmd_attribute] = STATE(1291), - [sym_raw_attribute] = STATE(1291), - [sym_commonmark_attribute] = STATE(1291), - [sym_language_attribute] = STATE(1291), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_RBRACK] = ACTIONS(4625), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4729), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [sym__qmd_attribute] = STATE(811), + [sym_raw_attribute] = STATE(811), + [sym_commonmark_attribute] = STATE(811), + [sym_language_attribute] = STATE(811), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__superscript_close] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(648)] = { - [sym__qmd_attribute] = STATE(1321), - [sym_raw_attribute] = STATE(1321), - [sym_commonmark_attribute] = STATE(1321), - [sym_language_attribute] = STATE(1321), - [sym__backslash_escape] = ACTIONS(4685), - [sym_entity_reference] = ACTIONS(4685), - [sym_numeric_character_reference] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_BSLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4735), - [anon_sym_RPAREN] = ACTIONS(4685), - [sym__newline_token] = ACTIONS(4685), - [aux_sym_insert_token1] = ACTIONS(4685), - [aux_sym_insert_token2] = ACTIONS(4685), - [aux_sym_delete_token1] = ACTIONS(4685), - [aux_sym_highlight_token1] = ACTIONS(4685), - [aux_sym_edit_comment_token1] = ACTIONS(4685), - [anon_sym_CARET_LBRACK] = ACTIONS(4685), - [anon_sym_LBRACK_CARET] = ACTIONS(4685), - [sym_uri_autolink] = ACTIONS(4685), - [sym_email_autolink] = ACTIONS(4685), - [sym__whitespace_ge_2] = ACTIONS(4687), - [aux_sym__whitespace_token1] = ACTIONS(4687), - [sym__word_no_digit] = ACTIONS(4685), - [sym__digits] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4685), - [sym__code_span_start] = ACTIONS(4685), - [sym__emphasis_open_star] = ACTIONS(4685), - [sym__emphasis_open_underscore] = ACTIONS(4685), - [sym__strikeout_open] = ACTIONS(4685), - [sym__latex_span_start] = ACTIONS(4685), - [sym__single_quote_open] = ACTIONS(4685), - [sym__double_quote_open] = ACTIONS(4685), - [sym__superscript_open] = ACTIONS(4685), - [sym__subscript_open] = ACTIONS(4685), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4685), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4685), - [sym__cite_author_in_text] = ACTIONS(4685), - [sym__cite_suppress_author] = ACTIONS(4685), - [sym__shortcode_open_escaped] = ACTIONS(4685), - [sym__shortcode_open] = ACTIONS(4685), - [sym__unclosed_span] = ACTIONS(4685), - [sym__strong_emphasis_open_star] = ACTIONS(4685), - [sym__strong_emphasis_open_underscore] = ACTIONS(4685), + [sym__qmd_attribute] = STATE(1538), + [sym_raw_attribute] = STATE(1538), + [sym_commonmark_attribute] = STATE(1538), + [sym_language_attribute] = STATE(1538), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4285), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__strikeout_close] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(649)] = { - [sym__qmd_attribute] = STATE(1322), - [sym_raw_attribute] = STATE(1322), - [sym_commonmark_attribute] = STATE(1322), - [sym_language_attribute] = STATE(1322), - [sym__backslash_escape] = ACTIONS(4693), - [sym_entity_reference] = ACTIONS(4693), - [sym_numeric_character_reference] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [sym__newline_token] = ACTIONS(4693), - [aux_sym_insert_token1] = ACTIONS(4693), - [aux_sym_insert_token2] = ACTIONS(4693), - [aux_sym_delete_token1] = ACTIONS(4693), - [aux_sym_highlight_token1] = ACTIONS(4693), - [aux_sym_edit_comment_token1] = ACTIONS(4693), - [anon_sym_CARET_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACK_CARET] = ACTIONS(4693), - [sym_uri_autolink] = ACTIONS(4693), - [sym_email_autolink] = ACTIONS(4693), - [sym__whitespace_ge_2] = ACTIONS(4695), - [aux_sym__whitespace_token1] = ACTIONS(4695), - [sym__word_no_digit] = ACTIONS(4693), - [sym__digits] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [sym__code_span_start] = ACTIONS(4693), - [sym__emphasis_open_star] = ACTIONS(4693), - [sym__emphasis_open_underscore] = ACTIONS(4693), - [sym__strikeout_open] = ACTIONS(4693), - [sym__latex_span_start] = ACTIONS(4693), - [sym__single_quote_open] = ACTIONS(4693), - [sym__double_quote_open] = ACTIONS(4693), - [sym__superscript_open] = ACTIONS(4693), - [sym__subscript_open] = ACTIONS(4693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4693), - [sym__cite_author_in_text] = ACTIONS(4693), - [sym__cite_suppress_author] = ACTIONS(4693), - [sym__shortcode_open_escaped] = ACTIONS(4693), - [sym__shortcode_open] = ACTIONS(4693), - [sym__unclosed_span] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4693), - [sym__strong_emphasis_open_underscore] = ACTIONS(4693), + [sym__qmd_attribute] = STATE(817), + [sym_raw_attribute] = STATE(817), + [sym_commonmark_attribute] = STATE(817), + [sym_language_attribute] = STATE(817), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__superscript_close] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(650)] = { - [sym__qmd_attribute] = STATE(1463), - [sym_raw_attribute] = STATE(1463), - [sym_commonmark_attribute] = STATE(1463), - [sym_language_attribute] = STATE(1463), - [sym__backslash_escape] = ACTIONS(4693), - [sym_entity_reference] = ACTIONS(4693), - [sym_numeric_character_reference] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [sym__newline_token] = ACTIONS(4693), - [aux_sym_insert_token1] = ACTIONS(4693), - [aux_sym_delete_token1] = ACTIONS(4693), - [aux_sym_highlight_token1] = ACTIONS(4693), - [aux_sym_edit_comment_token1] = ACTIONS(4693), - [anon_sym_CARET_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACK_CARET] = ACTIONS(4693), - [sym_uri_autolink] = ACTIONS(4693), - [sym_email_autolink] = ACTIONS(4693), - [sym__whitespace_ge_2] = ACTIONS(4693), - [aux_sym__whitespace_token1] = ACTIONS(4695), - [sym__word_no_digit] = ACTIONS(4693), - [sym__digits] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [sym__code_span_start] = ACTIONS(4693), - [sym__emphasis_open_star] = ACTIONS(4693), - [sym__emphasis_open_underscore] = ACTIONS(4693), - [sym__emphasis_close_underscore] = ACTIONS(4693), - [sym__strikeout_open] = ACTIONS(4693), - [sym__latex_span_start] = ACTIONS(4693), - [sym__single_quote_open] = ACTIONS(4693), - [sym__double_quote_open] = ACTIONS(4693), - [sym__superscript_open] = ACTIONS(4693), - [sym__subscript_open] = ACTIONS(4693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4693), - [sym__cite_author_in_text] = ACTIONS(4693), - [sym__cite_suppress_author] = ACTIONS(4693), - [sym__shortcode_open_escaped] = ACTIONS(4693), - [sym__shortcode_open] = ACTIONS(4693), - [sym__unclosed_span] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4693), - [sym__strong_emphasis_open_underscore] = ACTIONS(4693), + [sym__qmd_attribute] = STATE(819), + [sym_raw_attribute] = STATE(819), + [sym_commonmark_attribute] = STATE(819), + [sym_language_attribute] = STATE(819), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__superscript_close] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(651)] = { - [sym__qmd_attribute] = STATE(1323), - [sym_raw_attribute] = STATE(1323), - [sym_commonmark_attribute] = STATE(1323), - [sym_language_attribute] = STATE(1323), - [sym__backslash_escape] = ACTIONS(4697), - [sym_entity_reference] = ACTIONS(4697), - [sym_numeric_character_reference] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_PERCENT] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_BSLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [sym__newline_token] = ACTIONS(4697), - [aux_sym_insert_token1] = ACTIONS(4697), - [aux_sym_insert_token2] = ACTIONS(4697), - [aux_sym_delete_token1] = ACTIONS(4697), - [aux_sym_highlight_token1] = ACTIONS(4697), - [aux_sym_edit_comment_token1] = ACTIONS(4697), - [anon_sym_CARET_LBRACK] = ACTIONS(4697), - [anon_sym_LBRACK_CARET] = ACTIONS(4697), - [sym_uri_autolink] = ACTIONS(4697), - [sym_email_autolink] = ACTIONS(4697), - [sym__whitespace_ge_2] = ACTIONS(4699), - [aux_sym__whitespace_token1] = ACTIONS(4699), - [sym__word_no_digit] = ACTIONS(4697), - [sym__digits] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4697), - [sym__code_span_start] = ACTIONS(4697), - [sym__emphasis_open_star] = ACTIONS(4697), - [sym__emphasis_open_underscore] = ACTIONS(4697), - [sym__strikeout_open] = ACTIONS(4697), - [sym__latex_span_start] = ACTIONS(4697), - [sym__single_quote_open] = ACTIONS(4697), - [sym__double_quote_open] = ACTIONS(4697), - [sym__superscript_open] = ACTIONS(4697), - [sym__subscript_open] = ACTIONS(4697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4697), - [sym__cite_author_in_text] = ACTIONS(4697), - [sym__cite_suppress_author] = ACTIONS(4697), - [sym__shortcode_open_escaped] = ACTIONS(4697), - [sym__shortcode_open] = ACTIONS(4697), - [sym__unclosed_span] = ACTIONS(4697), - [sym__strong_emphasis_open_star] = ACTIONS(4697), - [sym__strong_emphasis_open_underscore] = ACTIONS(4697), + [sym__qmd_attribute] = STATE(823), + [sym_raw_attribute] = STATE(823), + [sym_commonmark_attribute] = STATE(823), + [sym_language_attribute] = STATE(823), + [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(4289), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(652)] = { - [sym__qmd_attribute] = STATE(1367), - [sym_raw_attribute] = STATE(1367), - [sym_commonmark_attribute] = STATE(1367), - [sym_language_attribute] = STATE(1367), - [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_STAR] = 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(4713), - [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_insert_token2] = 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(4633), - [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), + [sym__qmd_attribute] = STATE(825), + [sym_raw_attribute] = STATE(825), + [sym_commonmark_attribute] = STATE(825), + [sym_language_attribute] = STATE(825), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__superscript_close] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(653)] = { - [sym__qmd_attribute] = STATE(1369), - [sym_raw_attribute] = STATE(1369), - [sym_commonmark_attribute] = STATE(1369), - [sym_language_attribute] = STATE(1369), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_insert_token2] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4659), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [sym__qmd_attribute] = STATE(1563), + [sym_raw_attribute] = STATE(1563), + [sym_commonmark_attribute] = STATE(1563), + [sym_language_attribute] = STATE(1563), + [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(4217), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4293), + [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__single_quote_close] = 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), }, [STATE(654)] = { - [sym__qmd_attribute] = STATE(1336), - [sym_raw_attribute] = STATE(1336), - [sym_commonmark_attribute] = STATE(1336), - [sym_language_attribute] = STATE(1336), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_insert_token2] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4703), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [sym__qmd_attribute] = STATE(827), + [sym_raw_attribute] = STATE(827), + [sym_commonmark_attribute] = STATE(827), + [sym_language_attribute] = STATE(827), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__superscript_close] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(655)] = { - [sym__qmd_attribute] = STATE(1375), - [sym_raw_attribute] = STATE(1375), - [sym_commonmark_attribute] = STATE(1375), - [sym_language_attribute] = STATE(1375), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_insert_token2] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4663), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [sym__qmd_attribute] = STATE(829), + [sym_raw_attribute] = STATE(829), + [sym_commonmark_attribute] = STATE(829), + [sym_language_attribute] = STATE(829), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__superscript_close] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(656)] = { - [sym__qmd_attribute] = STATE(1377), - [sym_raw_attribute] = STATE(1377), - [sym_commonmark_attribute] = STATE(1377), - [sym_language_attribute] = STATE(1377), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_insert_token2] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4639), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [sym__qmd_attribute] = STATE(831), + [sym_raw_attribute] = STATE(831), + [sym_commonmark_attribute] = STATE(831), + [sym_language_attribute] = STATE(831), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__superscript_close] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(657)] = { - [sym__qmd_attribute] = STATE(1381), - [sym_raw_attribute] = STATE(1381), - [sym_commonmark_attribute] = STATE(1381), - [sym_language_attribute] = STATE(1381), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_insert_token2] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4667), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__qmd_attribute] = STATE(832), + [sym_raw_attribute] = STATE(832), + [sym_commonmark_attribute] = STATE(832), + [sym_language_attribute] = STATE(832), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__superscript_close] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(658)] = { - [sym__qmd_attribute] = STATE(1383), - [sym_raw_attribute] = STATE(1383), - [sym_commonmark_attribute] = STATE(1383), - [sym_language_attribute] = STATE(1383), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_insert_token2] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4671), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [sym__qmd_attribute] = STATE(1564), + [sym_raw_attribute] = STATE(1564), + [sym_commonmark_attribute] = STATE(1564), + [sym_language_attribute] = STATE(1564), + [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(4217), + [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__single_quote_close] = 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(659)] = { - [sym__qmd_attribute] = STATE(1385), - [sym_raw_attribute] = STATE(1385), - [sym_commonmark_attribute] = STATE(1385), - [sym_language_attribute] = STATE(1385), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_insert_token2] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4675), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__qmd_attribute] = STATE(863), + [sym_raw_attribute] = STATE(863), + [sym_commonmark_attribute] = STATE(863), + [sym_language_attribute] = STATE(863), + [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(4191), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4295), + [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__subscript_close] = 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), }, [STATE(660)] = { - [sym__qmd_attribute] = STATE(1387), - [sym_raw_attribute] = STATE(1387), - [sym_commonmark_attribute] = STATE(1387), - [sym_language_attribute] = STATE(1387), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_insert_token2] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4679), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__qmd_attribute] = STATE(864), + [sym_raw_attribute] = STATE(864), + [sym_commonmark_attribute] = STATE(864), + [sym_language_attribute] = STATE(864), + [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(4191), + [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__superscript_open] = ACTIONS(4213), + [sym__subscript_open] = ACTIONS(4213), + [sym__subscript_close] = 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(661)] = { - [sym__qmd_attribute] = STATE(1388), - [sym_raw_attribute] = STATE(1388), - [sym_commonmark_attribute] = STATE(1388), - [sym_language_attribute] = STATE(1388), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_insert_token2] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4683), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [sym__qmd_attribute] = STATE(1616), + [sym_raw_attribute] = STATE(1616), + [sym_commonmark_attribute] = STATE(1616), + [sym_language_attribute] = STATE(1616), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__single_quote_close] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(662)] = { - [sym__qmd_attribute] = STATE(1389), - [sym_raw_attribute] = STATE(1389), - [sym_commonmark_attribute] = STATE(1389), - [sym_language_attribute] = STATE(1389), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4713), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_insert_token2] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4627), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [sym__qmd_attribute] = STATE(1565), + [sym_raw_attribute] = STATE(1565), + [sym_commonmark_attribute] = STATE(1565), + [sym_language_attribute] = STATE(1565), + [sym__backslash_escape] = ACTIONS(4219), + [sym_entity_reference] = ACTIONS(4219), + [sym_numeric_character_reference] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4221), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_POUND] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_COLON] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_BSLASH] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [sym__newline_token] = ACTIONS(4219), + [aux_sym_insert_token1] = ACTIONS(4219), + [aux_sym_delete_token1] = ACTIONS(4219), + [aux_sym_highlight_token1] = ACTIONS(4219), + [aux_sym_edit_comment_token1] = ACTIONS(4219), + [anon_sym_CARET_LBRACK] = ACTIONS(4219), + [anon_sym_LBRACK_CARET] = ACTIONS(4219), + [sym_uri_autolink] = ACTIONS(4219), + [sym_email_autolink] = ACTIONS(4219), + [sym__whitespace_ge_2] = ACTIONS(4219), + [aux_sym__whitespace_token1] = ACTIONS(4221), + [sym__word_no_digit] = ACTIONS(4219), + [sym__digits] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [sym__code_span_start] = ACTIONS(4219), + [sym__emphasis_open_star] = ACTIONS(4219), + [sym__emphasis_open_underscore] = ACTIONS(4219), + [sym__strikeout_open] = ACTIONS(4219), + [sym__latex_span_start] = ACTIONS(4219), + [sym__single_quote_open] = ACTIONS(4219), + [sym__single_quote_close] = ACTIONS(4219), + [sym__double_quote_open] = ACTIONS(4219), + [sym__superscript_open] = ACTIONS(4219), + [sym__subscript_open] = ACTIONS(4219), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4219), + [sym__cite_author_in_text] = ACTIONS(4219), + [sym__cite_suppress_author] = ACTIONS(4219), + [sym__shortcode_open_escaped] = ACTIONS(4219), + [sym__shortcode_open] = ACTIONS(4219), + [sym__unclosed_span] = ACTIONS(4219), + [sym__strong_emphasis_open_star] = ACTIONS(4219), + [sym__strong_emphasis_open_underscore] = ACTIONS(4219), }, [STATE(663)] = { - [sym__qmd_attribute] = STATE(1160), - [sym_raw_attribute] = STATE(1160), - [sym_commonmark_attribute] = STATE(1160), - [sym_language_attribute] = STATE(1160), - [ts_builtin_sym_end] = ACTIONS(4677), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__qmd_attribute] = STATE(1577), + [sym_raw_attribute] = STATE(1577), + [sym_commonmark_attribute] = STATE(1577), + [sym_language_attribute] = STATE(1577), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__single_quote_close] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(664)] = { - [sym__qmd_attribute] = STATE(1170), - [sym_raw_attribute] = STATE(1170), - [sym_commonmark_attribute] = STATE(1170), - [sym_language_attribute] = STATE(1170), - [ts_builtin_sym_end] = ACTIONS(4681), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [sym__qmd_attribute] = STATE(866), + [sym_raw_attribute] = STATE(866), + [sym_commonmark_attribute] = STATE(866), + [sym_language_attribute] = STATE(866), + [sym__backslash_escape] = ACTIONS(4219), + [sym_entity_reference] = ACTIONS(4219), + [sym_numeric_character_reference] = ACTIONS(4219), + [anon_sym_LT] = ACTIONS(4221), + [anon_sym_GT] = ACTIONS(4219), + [anon_sym_BANG] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(4219), + [anon_sym_POUND] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_COMMA] = ACTIONS(4219), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_COLON] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4219), + [anon_sym_EQ] = ACTIONS(4219), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4221), + [anon_sym_BSLASH] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4219), + [anon_sym_TILDE] = ACTIONS(4219), + [anon_sym_LPAREN] = ACTIONS(4219), + [anon_sym_RPAREN] = ACTIONS(4219), + [sym__newline_token] = ACTIONS(4219), + [aux_sym_insert_token1] = ACTIONS(4219), + [aux_sym_delete_token1] = ACTIONS(4219), + [aux_sym_highlight_token1] = ACTIONS(4219), + [aux_sym_edit_comment_token1] = ACTIONS(4219), + [anon_sym_CARET_LBRACK] = ACTIONS(4219), + [anon_sym_LBRACK_CARET] = ACTIONS(4219), + [sym_uri_autolink] = ACTIONS(4219), + [sym_email_autolink] = ACTIONS(4219), + [sym__whitespace_ge_2] = ACTIONS(4219), + [aux_sym__whitespace_token1] = ACTIONS(4221), + [sym__word_no_digit] = ACTIONS(4219), + [sym__digits] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4219), + [sym__code_span_start] = ACTIONS(4219), + [sym__emphasis_open_star] = ACTIONS(4219), + [sym__emphasis_open_underscore] = ACTIONS(4219), + [sym__strikeout_open] = ACTIONS(4219), + [sym__latex_span_start] = ACTIONS(4219), + [sym__single_quote_open] = ACTIONS(4219), + [sym__double_quote_open] = ACTIONS(4219), + [sym__superscript_open] = ACTIONS(4219), + [sym__subscript_open] = ACTIONS(4219), + [sym__subscript_close] = ACTIONS(4219), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4219), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4219), + [sym__cite_author_in_text] = ACTIONS(4219), + [sym__cite_suppress_author] = ACTIONS(4219), + [sym__shortcode_open_escaped] = ACTIONS(4219), + [sym__shortcode_open] = ACTIONS(4219), + [sym__unclosed_span] = ACTIONS(4219), + [sym__strong_emphasis_open_star] = ACTIONS(4219), + [sym__strong_emphasis_open_underscore] = ACTIONS(4219), }, [STATE(665)] = { - [sym__qmd_attribute] = STATE(1172), - [sym_raw_attribute] = STATE(1172), - [sym_commonmark_attribute] = STATE(1172), - [sym_language_attribute] = STATE(1172), - [ts_builtin_sym_end] = ACTIONS(4625), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [sym__qmd_attribute] = STATE(879), + [sym_raw_attribute] = STATE(879), + [sym_commonmark_attribute] = STATE(879), + [sym_language_attribute] = STATE(879), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__subscript_close] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(666)] = { - [sym__qmd_attribute] = STATE(1606), - [sym_raw_attribute] = STATE(1606), - [sym_commonmark_attribute] = STATE(1606), - [sym_language_attribute] = STATE(1606), - [ts_builtin_sym_end] = ACTIONS(4641), - [sym__backslash_escape] = ACTIONS(4641), - [sym_entity_reference] = ACTIONS(4641), - [sym_numeric_character_reference] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_BSLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [sym__newline_token] = ACTIONS(4641), - [aux_sym_insert_token1] = ACTIONS(4641), - [aux_sym_delete_token1] = ACTIONS(4641), - [aux_sym_highlight_token1] = ACTIONS(4641), - [aux_sym_edit_comment_token1] = ACTIONS(4641), - [anon_sym_CARET_LBRACK] = ACTIONS(4641), - [anon_sym_LBRACK_CARET] = ACTIONS(4641), - [sym_uri_autolink] = ACTIONS(4641), - [sym_email_autolink] = ACTIONS(4641), - [sym__whitespace_ge_2] = ACTIONS(4641), - [aux_sym__whitespace_token1] = ACTIONS(4643), - [sym__word_no_digit] = ACTIONS(4641), - [sym__digits] = ACTIONS(4641), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4641), - [sym__code_span_start] = ACTIONS(4641), - [sym__emphasis_open_star] = ACTIONS(4641), - [sym__emphasis_open_underscore] = ACTIONS(4641), - [sym__strikeout_open] = ACTIONS(4641), - [sym__latex_span_start] = ACTIONS(4641), - [sym__single_quote_open] = ACTIONS(4641), - [sym__double_quote_open] = ACTIONS(4641), - [sym__superscript_open] = ACTIONS(4641), - [sym__subscript_open] = ACTIONS(4641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4641), - [sym__cite_author_in_text] = ACTIONS(4641), - [sym__cite_suppress_author] = ACTIONS(4641), - [sym__shortcode_open_escaped] = ACTIONS(4641), - [sym__shortcode_open] = ACTIONS(4641), - [sym__unclosed_span] = ACTIONS(4641), - [sym__strong_emphasis_open_star] = ACTIONS(4641), - [sym__strong_emphasis_open_underscore] = ACTIONS(4641), + [sym__qmd_attribute] = STATE(1618), + [sym_raw_attribute] = STATE(1618), + [sym_commonmark_attribute] = STATE(1618), + [sym_language_attribute] = STATE(1618), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__single_quote_close] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(667)] = { - [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(4701), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [sym__qmd_attribute] = STATE(892), + [sym_raw_attribute] = STATE(892), + [sym_commonmark_attribute] = STATE(892), + [sym_language_attribute] = STATE(892), + [sym__backslash_escape] = ACTIONS(4227), + [sym_entity_reference] = ACTIONS(4227), + [sym_numeric_character_reference] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_BSLASH] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_BQUOTE] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [sym__newline_token] = ACTIONS(4227), + [aux_sym_insert_token1] = ACTIONS(4227), + [aux_sym_delete_token1] = ACTIONS(4227), + [aux_sym_highlight_token1] = ACTIONS(4227), + [aux_sym_edit_comment_token1] = ACTIONS(4227), + [anon_sym_CARET_LBRACK] = ACTIONS(4227), + [anon_sym_LBRACK_CARET] = ACTIONS(4227), + [sym_uri_autolink] = ACTIONS(4227), + [sym_email_autolink] = ACTIONS(4227), + [sym__whitespace_ge_2] = ACTIONS(4227), + [aux_sym__whitespace_token1] = ACTIONS(4229), + [sym__word_no_digit] = ACTIONS(4227), + [sym__digits] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [sym__code_span_start] = ACTIONS(4227), + [sym__emphasis_open_star] = ACTIONS(4227), + [sym__emphasis_open_underscore] = ACTIONS(4227), + [sym__strikeout_open] = ACTIONS(4227), + [sym__latex_span_start] = ACTIONS(4227), + [sym__single_quote_open] = ACTIONS(4227), + [sym__double_quote_open] = ACTIONS(4227), + [sym__superscript_open] = ACTIONS(4227), + [sym__subscript_open] = ACTIONS(4227), + [sym__subscript_close] = ACTIONS(4227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4227), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4227), + [sym__cite_author_in_text] = ACTIONS(4227), + [sym__cite_suppress_author] = ACTIONS(4227), + [sym__shortcode_open_escaped] = ACTIONS(4227), + [sym__shortcode_open] = ACTIONS(4227), + [sym__unclosed_span] = ACTIONS(4227), + [sym__strong_emphasis_open_star] = ACTIONS(4227), + [sym__strong_emphasis_open_underscore] = ACTIONS(4227), }, [STATE(668)] = { - [sym__qmd_attribute] = STATE(1293), - [sym_raw_attribute] = STATE(1293), - [sym_commonmark_attribute] = STATE(1293), - [sym_language_attribute] = STATE(1293), - [sym__backslash_escape] = ACTIONS(4685), - [sym_entity_reference] = ACTIONS(4685), - [sym_numeric_character_reference] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_BSLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4737), - [anon_sym_RPAREN] = ACTIONS(4685), - [sym__newline_token] = ACTIONS(4685), - [aux_sym_insert_token1] = ACTIONS(4685), - [aux_sym_delete_token1] = ACTIONS(4685), - [aux_sym_highlight_token1] = ACTIONS(4685), - [aux_sym_edit_comment_token1] = ACTIONS(4685), - [anon_sym_CARET_LBRACK] = ACTIONS(4685), - [anon_sym_LBRACK_CARET] = ACTIONS(4685), - [sym_uri_autolink] = ACTIONS(4685), - [sym_email_autolink] = ACTIONS(4685), - [sym__whitespace_ge_2] = ACTIONS(4685), - [aux_sym__whitespace_token1] = ACTIONS(4687), - [sym__word_no_digit] = ACTIONS(4685), - [sym__digits] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4685), - [sym__code_span_start] = ACTIONS(4685), - [sym__emphasis_open_star] = ACTIONS(4685), - [sym__emphasis_open_underscore] = ACTIONS(4685), - [sym__emphasis_close_star] = ACTIONS(4685), - [sym__strikeout_open] = ACTIONS(4685), - [sym__latex_span_start] = ACTIONS(4685), - [sym__single_quote_open] = ACTIONS(4685), - [sym__double_quote_open] = ACTIONS(4685), - [sym__superscript_open] = ACTIONS(4685), - [sym__subscript_open] = ACTIONS(4685), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4685), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4685), - [sym__cite_author_in_text] = ACTIONS(4685), - [sym__cite_suppress_author] = ACTIONS(4685), - [sym__shortcode_open_escaped] = ACTIONS(4685), - [sym__shortcode_open] = ACTIONS(4685), - [sym__unclosed_span] = ACTIONS(4685), - [sym__strong_emphasis_open_star] = ACTIONS(4685), - [sym__strong_emphasis_open_underscore] = ACTIONS(4685), + [sym__qmd_attribute] = STATE(1620), + [sym_raw_attribute] = STATE(1620), + [sym_commonmark_attribute] = STATE(1620), + [sym_language_attribute] = STATE(1620), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__single_quote_close] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(669)] = { - [sym__qmd_attribute] = STATE(1294), - [sym_raw_attribute] = STATE(1294), - [sym_commonmark_attribute] = STATE(1294), - [sym_language_attribute] = STATE(1294), - [sym__backslash_escape] = ACTIONS(4693), - [sym_entity_reference] = ACTIONS(4693), - [sym_numeric_character_reference] = ACTIONS(4693), - [anon_sym_LT] = ACTIONS(4695), - [anon_sym_GT] = ACTIONS(4693), - [anon_sym_BANG] = ACTIONS(4693), - [anon_sym_DQUOTE] = ACTIONS(4693), - [anon_sym_POUND] = ACTIONS(4693), - [anon_sym_DOLLAR] = ACTIONS(4693), - [anon_sym_PERCENT] = ACTIONS(4693), - [anon_sym_AMP] = ACTIONS(4695), - [anon_sym_SQUOTE] = ACTIONS(4693), - [anon_sym_STAR] = ACTIONS(4693), - [anon_sym_PLUS] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4693), - [anon_sym_DASH] = ACTIONS(4695), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_SLASH] = ACTIONS(4693), - [anon_sym_COLON] = ACTIONS(4693), - [anon_sym_SEMI] = ACTIONS(4693), - [anon_sym_EQ] = ACTIONS(4693), - [anon_sym_QMARK] = ACTIONS(4693), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH] = ACTIONS(4695), - [anon_sym_CARET] = ACTIONS(4695), - [anon_sym_BQUOTE] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4693), - [anon_sym_TILDE] = ACTIONS(4693), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4693), - [sym__newline_token] = ACTIONS(4693), - [aux_sym_insert_token1] = ACTIONS(4693), - [aux_sym_delete_token1] = ACTIONS(4693), - [aux_sym_highlight_token1] = ACTIONS(4693), - [aux_sym_edit_comment_token1] = ACTIONS(4693), - [anon_sym_CARET_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACK_CARET] = ACTIONS(4693), - [sym_uri_autolink] = ACTIONS(4693), - [sym_email_autolink] = ACTIONS(4693), - [sym__whitespace_ge_2] = ACTIONS(4693), - [aux_sym__whitespace_token1] = ACTIONS(4695), - [sym__word_no_digit] = ACTIONS(4693), - [sym__digits] = ACTIONS(4693), - [anon_sym_DASH_DASH] = ACTIONS(4695), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4693), - [sym__code_span_start] = ACTIONS(4693), - [sym__emphasis_open_star] = ACTIONS(4693), - [sym__emphasis_open_underscore] = ACTIONS(4693), - [sym__emphasis_close_star] = ACTIONS(4693), - [sym__strikeout_open] = ACTIONS(4693), - [sym__latex_span_start] = ACTIONS(4693), - [sym__single_quote_open] = ACTIONS(4693), - [sym__double_quote_open] = ACTIONS(4693), - [sym__superscript_open] = ACTIONS(4693), - [sym__subscript_open] = ACTIONS(4693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4693), - [sym__cite_author_in_text] = ACTIONS(4693), - [sym__cite_suppress_author] = ACTIONS(4693), - [sym__shortcode_open_escaped] = ACTIONS(4693), - [sym__shortcode_open] = ACTIONS(4693), - [sym__unclosed_span] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4693), - [sym__strong_emphasis_open_underscore] = ACTIONS(4693), + [sym__qmd_attribute] = STATE(901), + [sym_raw_attribute] = STATE(901), + [sym_commonmark_attribute] = STATE(901), + [sym_language_attribute] = STATE(901), + [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(4191), + [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(670)] = { - [sym__qmd_attribute] = STATE(1420), - [sym_raw_attribute] = STATE(1420), - [sym_commonmark_attribute] = STATE(1420), - [sym_language_attribute] = STATE(1420), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__emphasis_close_star] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [sym__qmd_attribute] = STATE(902), + [sym_raw_attribute] = STATE(902), + [sym_commonmark_attribute] = STATE(902), + [sym_language_attribute] = STATE(902), + [sym__backslash_escape] = ACTIONS(4231), + [sym_entity_reference] = ACTIONS(4231), + [sym_numeric_character_reference] = ACTIONS(4231), + [anon_sym_LT] = ACTIONS(4233), + [anon_sym_GT] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4231), + [anon_sym_POUND] = ACTIONS(4231), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_COMMA] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_COLON] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_BSLASH] = ACTIONS(4233), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4231), + [anon_sym_TILDE] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4231), + [anon_sym_RPAREN] = ACTIONS(4231), + [sym__newline_token] = ACTIONS(4231), + [aux_sym_insert_token1] = ACTIONS(4231), + [aux_sym_delete_token1] = ACTIONS(4231), + [aux_sym_highlight_token1] = ACTIONS(4231), + [aux_sym_edit_comment_token1] = ACTIONS(4231), + [anon_sym_CARET_LBRACK] = ACTIONS(4231), + [anon_sym_LBRACK_CARET] = ACTIONS(4231), + [sym_uri_autolink] = ACTIONS(4231), + [sym_email_autolink] = ACTIONS(4231), + [sym__whitespace_ge_2] = ACTIONS(4231), + [aux_sym__whitespace_token1] = ACTIONS(4233), + [sym__word_no_digit] = ACTIONS(4231), + [sym__digits] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4231), + [sym__code_span_start] = ACTIONS(4231), + [sym__emphasis_open_star] = ACTIONS(4231), + [sym__emphasis_open_underscore] = ACTIONS(4231), + [sym__strikeout_open] = ACTIONS(4231), + [sym__latex_span_start] = ACTIONS(4231), + [sym__single_quote_open] = ACTIONS(4231), + [sym__double_quote_open] = ACTIONS(4231), + [sym__superscript_open] = ACTIONS(4231), + [sym__subscript_open] = ACTIONS(4231), + [sym__subscript_close] = ACTIONS(4231), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4231), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4231), + [sym__cite_author_in_text] = ACTIONS(4231), + [sym__cite_suppress_author] = ACTIONS(4231), + [sym__shortcode_open_escaped] = ACTIONS(4231), + [sym__shortcode_open] = ACTIONS(4231), + [sym__unclosed_span] = ACTIONS(4231), + [sym__strong_emphasis_open_star] = ACTIONS(4231), + [sym__strong_emphasis_open_underscore] = ACTIONS(4231), }, [STATE(671)] = { - [sym__qmd_attribute] = STATE(1296), - [sym_raw_attribute] = STATE(1296), - [sym_commonmark_attribute] = STATE(1296), - [sym_language_attribute] = STATE(1296), - [sym__backslash_escape] = ACTIONS(4697), - [sym_entity_reference] = ACTIONS(4697), - [sym_numeric_character_reference] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_PERCENT] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_BSLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [sym__newline_token] = ACTIONS(4697), - [aux_sym_insert_token1] = ACTIONS(4697), - [aux_sym_delete_token1] = ACTIONS(4697), - [aux_sym_highlight_token1] = ACTIONS(4697), - [aux_sym_edit_comment_token1] = ACTIONS(4697), - [anon_sym_CARET_LBRACK] = ACTIONS(4697), - [anon_sym_LBRACK_CARET] = ACTIONS(4697), - [sym_uri_autolink] = ACTIONS(4697), - [sym_email_autolink] = ACTIONS(4697), - [sym__whitespace_ge_2] = ACTIONS(4697), - [aux_sym__whitespace_token1] = ACTIONS(4699), - [sym__word_no_digit] = ACTIONS(4697), - [sym__digits] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4697), - [sym__code_span_start] = ACTIONS(4697), - [sym__emphasis_open_star] = ACTIONS(4697), - [sym__emphasis_open_underscore] = ACTIONS(4697), - [sym__emphasis_close_star] = ACTIONS(4697), - [sym__strikeout_open] = ACTIONS(4697), - [sym__latex_span_start] = ACTIONS(4697), - [sym__single_quote_open] = ACTIONS(4697), - [sym__double_quote_open] = ACTIONS(4697), - [sym__superscript_open] = ACTIONS(4697), - [sym__subscript_open] = ACTIONS(4697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4697), - [sym__cite_author_in_text] = ACTIONS(4697), - [sym__cite_suppress_author] = ACTIONS(4697), - [sym__shortcode_open_escaped] = ACTIONS(4697), - [sym__shortcode_open] = ACTIONS(4697), - [sym__unclosed_span] = ACTIONS(4697), - [sym__strong_emphasis_open_star] = ACTIONS(4697), - [sym__strong_emphasis_open_underscore] = ACTIONS(4697), + [sym__qmd_attribute] = STATE(909), + [sym_raw_attribute] = STATE(909), + [sym_commonmark_attribute] = STATE(909), + [sym_language_attribute] = STATE(909), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__subscript_close] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(672)] = { - [sym__qmd_attribute] = STATE(1368), - [sym_raw_attribute] = STATE(1368), - [sym_commonmark_attribute] = STATE(1368), - [sym_language_attribute] = STATE(1368), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__emphasis_close_star] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [sym__qmd_attribute] = STATE(910), + [sym_raw_attribute] = STATE(910), + [sym_commonmark_attribute] = STATE(910), + [sym_language_attribute] = STATE(910), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__subscript_close] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(673)] = { - [sym__qmd_attribute] = STATE(1465), - [sym_raw_attribute] = STATE(1465), - [sym_commonmark_attribute] = STATE(1465), - [sym_language_attribute] = STATE(1465), - [sym__backslash_escape] = ACTIONS(4697), - [sym_entity_reference] = ACTIONS(4697), - [sym_numeric_character_reference] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4699), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_DQUOTE] = ACTIONS(4697), - [anon_sym_POUND] = ACTIONS(4697), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_PERCENT] = ACTIONS(4697), - [anon_sym_AMP] = ACTIONS(4699), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_COMMA] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4699), - [anon_sym_DOT] = ACTIONS(4699), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SEMI] = ACTIONS(4697), - [anon_sym_EQ] = ACTIONS(4697), - [anon_sym_QMARK] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4699), - [anon_sym_BSLASH] = ACTIONS(4699), - [anon_sym_CARET] = ACTIONS(4699), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_LPAREN] = ACTIONS(4697), - [anon_sym_RPAREN] = ACTIONS(4697), - [sym__newline_token] = ACTIONS(4697), - [aux_sym_insert_token1] = ACTIONS(4697), - [aux_sym_delete_token1] = ACTIONS(4697), - [aux_sym_highlight_token1] = ACTIONS(4697), - [aux_sym_edit_comment_token1] = ACTIONS(4697), - [anon_sym_CARET_LBRACK] = ACTIONS(4697), - [anon_sym_LBRACK_CARET] = ACTIONS(4697), - [sym_uri_autolink] = ACTIONS(4697), - [sym_email_autolink] = ACTIONS(4697), - [sym__whitespace_ge_2] = ACTIONS(4697), - [aux_sym__whitespace_token1] = ACTIONS(4699), - [sym__word_no_digit] = ACTIONS(4697), - [sym__digits] = ACTIONS(4697), - [anon_sym_DASH_DASH] = ACTIONS(4699), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4697), - [sym__code_span_start] = ACTIONS(4697), - [sym__emphasis_open_star] = ACTIONS(4697), - [sym__emphasis_open_underscore] = ACTIONS(4697), - [sym__emphasis_close_underscore] = ACTIONS(4697), - [sym__strikeout_open] = ACTIONS(4697), - [sym__latex_span_start] = ACTIONS(4697), - [sym__single_quote_open] = ACTIONS(4697), - [sym__double_quote_open] = ACTIONS(4697), - [sym__superscript_open] = ACTIONS(4697), - [sym__subscript_open] = ACTIONS(4697), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4697), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4697), - [sym__cite_author_in_text] = ACTIONS(4697), - [sym__cite_suppress_author] = ACTIONS(4697), - [sym__shortcode_open_escaped] = ACTIONS(4697), - [sym__shortcode_open] = ACTIONS(4697), - [sym__unclosed_span] = ACTIONS(4697), - [sym__strong_emphasis_open_star] = ACTIONS(4697), - [sym__strong_emphasis_open_underscore] = ACTIONS(4697), + [sym__qmd_attribute] = STATE(916), + [sym_raw_attribute] = STATE(916), + [sym_commonmark_attribute] = STATE(916), + [sym_language_attribute] = STATE(916), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__subscript_close] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(674)] = { - [sym__qmd_attribute] = STATE(1397), - [sym_raw_attribute] = STATE(1397), - [sym_commonmark_attribute] = STATE(1397), - [sym_language_attribute] = STATE(1397), - [sym__backslash_escape] = ACTIONS(4641), - [sym_entity_reference] = ACTIONS(4641), - [sym_numeric_character_reference] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4643), - [anon_sym_GT] = ACTIONS(4641), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_DQUOTE] = ACTIONS(4641), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR] = ACTIONS(4641), - [anon_sym_PERCENT] = ACTIONS(4641), - [anon_sym_AMP] = ACTIONS(4643), - [anon_sym_SQUOTE] = ACTIONS(4641), - [anon_sym_STAR] = ACTIONS(4641), - [anon_sym_PLUS] = ACTIONS(4641), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_DASH] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_SLASH] = ACTIONS(4641), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_EQ] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4643), - [anon_sym_BSLASH] = ACTIONS(4643), - [anon_sym_CARET] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [anon_sym_RPAREN] = ACTIONS(4641), - [sym__newline_token] = ACTIONS(4641), - [aux_sym_insert_token1] = ACTIONS(4641), - [aux_sym_delete_token1] = ACTIONS(4641), - [aux_sym_highlight_token1] = ACTIONS(4641), - [aux_sym_edit_comment_token1] = ACTIONS(4641), - [anon_sym_CARET_LBRACK] = ACTIONS(4641), - [anon_sym_LBRACK_CARET] = ACTIONS(4641), - [sym_uri_autolink] = ACTIONS(4641), - [sym_email_autolink] = ACTIONS(4641), - [sym__whitespace_ge_2] = ACTIONS(4641), - [aux_sym__whitespace_token1] = ACTIONS(4643), - [sym__word_no_digit] = ACTIONS(4641), - [sym__digits] = ACTIONS(4641), - [anon_sym_DASH_DASH] = ACTIONS(4643), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4641), - [sym__code_span_start] = ACTIONS(4641), - [sym__emphasis_open_star] = ACTIONS(4641), - [sym__emphasis_open_underscore] = ACTIONS(4641), - [sym__emphasis_close_star] = ACTIONS(4641), - [sym__strikeout_open] = ACTIONS(4641), - [sym__latex_span_start] = ACTIONS(4641), - [sym__single_quote_open] = ACTIONS(4641), - [sym__double_quote_open] = ACTIONS(4641), - [sym__superscript_open] = ACTIONS(4641), - [sym__subscript_open] = ACTIONS(4641), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4641), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4641), - [sym__cite_author_in_text] = ACTIONS(4641), - [sym__cite_suppress_author] = ACTIONS(4641), - [sym__shortcode_open_escaped] = ACTIONS(4641), - [sym__shortcode_open] = ACTIONS(4641), - [sym__unclosed_span] = ACTIONS(4641), - [sym__strong_emphasis_open_star] = ACTIONS(4641), - [sym__strong_emphasis_open_underscore] = ACTIONS(4641), + [sym__qmd_attribute] = STATE(1586), + [sym_raw_attribute] = STATE(1586), + [sym_commonmark_attribute] = STATE(1586), + [sym_language_attribute] = STATE(1586), + [sym__backslash_escape] = ACTIONS(4227), + [sym_entity_reference] = ACTIONS(4227), + [sym_numeric_character_reference] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(4229), + [anon_sym_GT] = ACTIONS(4227), + [anon_sym_BANG] = ACTIONS(4227), + [anon_sym_DQUOTE] = ACTIONS(4227), + [anon_sym_POUND] = ACTIONS(4227), + [anon_sym_DOLLAR] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_COMMA] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_COLON] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(4227), + [anon_sym_QMARK] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4229), + [anon_sym_BSLASH] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_BQUOTE] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_PIPE] = ACTIONS(4227), + [anon_sym_TILDE] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(4227), + [anon_sym_RPAREN] = ACTIONS(4227), + [sym__newline_token] = ACTIONS(4227), + [aux_sym_insert_token1] = ACTIONS(4227), + [aux_sym_delete_token1] = ACTIONS(4227), + [aux_sym_highlight_token1] = ACTIONS(4227), + [aux_sym_edit_comment_token1] = ACTIONS(4227), + [anon_sym_CARET_LBRACK] = ACTIONS(4227), + [anon_sym_LBRACK_CARET] = ACTIONS(4227), + [sym_uri_autolink] = ACTIONS(4227), + [sym_email_autolink] = ACTIONS(4227), + [sym__whitespace_ge_2] = ACTIONS(4227), + [aux_sym__whitespace_token1] = ACTIONS(4229), + [sym__word_no_digit] = ACTIONS(4227), + [sym__digits] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4227), + [sym__code_span_start] = ACTIONS(4227), + [sym__emphasis_open_star] = ACTIONS(4227), + [sym__emphasis_open_underscore] = ACTIONS(4227), + [sym__strikeout_open] = ACTIONS(4227), + [sym__latex_span_start] = ACTIONS(4227), + [sym__single_quote_open] = ACTIONS(4227), + [sym__single_quote_close] = ACTIONS(4227), + [sym__double_quote_open] = ACTIONS(4227), + [sym__superscript_open] = ACTIONS(4227), + [sym__subscript_open] = ACTIONS(4227), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4227), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4227), + [sym__cite_author_in_text] = ACTIONS(4227), + [sym__cite_suppress_author] = ACTIONS(4227), + [sym__shortcode_open_escaped] = ACTIONS(4227), + [sym__shortcode_open] = ACTIONS(4227), + [sym__unclosed_span] = ACTIONS(4227), + [sym__strong_emphasis_open_star] = ACTIONS(4227), + [sym__strong_emphasis_open_underscore] = ACTIONS(4227), }, [STATE(675)] = { - [sym__qmd_attribute] = STATE(1479), - [sym_raw_attribute] = STATE(1479), - [sym_commonmark_attribute] = STATE(1479), - [sym_language_attribute] = STATE(1479), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__emphasis_close_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [sym__qmd_attribute] = STATE(935), + [sym_raw_attribute] = STATE(935), + [sym_commonmark_attribute] = STATE(935), + [sym_language_attribute] = STATE(935), + [ts_builtin_sym_end] = ACTIONS(4213), + [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(4185), + [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__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(676)] = { - [sym__qmd_attribute] = STATE(1405), - [sym_raw_attribute] = STATE(1405), - [sym_commonmark_attribute] = STATE(1405), - [sym_language_attribute] = STATE(1405), - [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_STAR] = 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(4635), - [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_star] = 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__qmd_attribute] = STATE(918), + [sym_raw_attribute] = STATE(918), + [sym_commonmark_attribute] = STATE(918), + [sym_language_attribute] = STATE(918), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__subscript_close] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(677)] = { - [sym__qmd_attribute] = STATE(1407), - [sym_raw_attribute] = STATE(1407), - [sym_commonmark_attribute] = STATE(1407), - [sym_language_attribute] = STATE(1407), - [sym__backslash_escape] = ACTIONS(4653), - [sym_entity_reference] = ACTIONS(4653), - [sym_numeric_character_reference] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4655), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4655), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4655), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_BSLASH] = ACTIONS(4655), - [anon_sym_CARET] = ACTIONS(4655), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym_RPAREN] = ACTIONS(4653), - [sym__newline_token] = ACTIONS(4653), - [aux_sym_insert_token1] = ACTIONS(4653), - [aux_sym_delete_token1] = ACTIONS(4653), - [aux_sym_highlight_token1] = ACTIONS(4653), - [aux_sym_edit_comment_token1] = ACTIONS(4653), - [anon_sym_CARET_LBRACK] = ACTIONS(4653), - [anon_sym_LBRACK_CARET] = ACTIONS(4653), - [sym_uri_autolink] = ACTIONS(4653), - [sym_email_autolink] = ACTIONS(4653), - [sym__whitespace_ge_2] = ACTIONS(4653), - [aux_sym__whitespace_token1] = ACTIONS(4655), - [sym__word_no_digit] = ACTIONS(4653), - [sym__digits] = ACTIONS(4653), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [sym__code_span_start] = ACTIONS(4653), - [sym__emphasis_open_star] = ACTIONS(4653), - [sym__emphasis_open_underscore] = ACTIONS(4653), - [sym__emphasis_close_star] = ACTIONS(4653), - [sym__strikeout_open] = ACTIONS(4653), - [sym__latex_span_start] = ACTIONS(4653), - [sym__single_quote_open] = ACTIONS(4653), - [sym__double_quote_open] = ACTIONS(4653), - [sym__superscript_open] = ACTIONS(4653), - [sym__subscript_open] = ACTIONS(4653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4653), - [sym__cite_author_in_text] = ACTIONS(4653), - [sym__cite_suppress_author] = ACTIONS(4653), - [sym__shortcode_open_escaped] = ACTIONS(4653), - [sym__shortcode_open] = ACTIONS(4653), - [sym__unclosed_span] = ACTIONS(4653), - [sym__strong_emphasis_open_star] = ACTIONS(4653), - [sym__strong_emphasis_open_underscore] = ACTIONS(4653), + [sym__qmd_attribute] = STATE(922), + [sym_raw_attribute] = STATE(922), + [sym_commonmark_attribute] = STATE(922), + [sym_language_attribute] = STATE(922), + [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(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(678)] = { - [sym__qmd_attribute] = STATE(1415), - [sym_raw_attribute] = STATE(1415), - [sym_commonmark_attribute] = STATE(1415), - [sym_language_attribute] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(4685), - [sym__backslash_escape] = ACTIONS(4685), - [sym_entity_reference] = ACTIONS(4685), - [sym_numeric_character_reference] = ACTIONS(4685), - [anon_sym_LT] = ACTIONS(4687), - [anon_sym_GT] = ACTIONS(4685), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_DQUOTE] = ACTIONS(4685), - [anon_sym_POUND] = ACTIONS(4685), - [anon_sym_DOLLAR] = ACTIONS(4685), - [anon_sym_PERCENT] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_SQUOTE] = ACTIONS(4685), - [anon_sym_STAR] = ACTIONS(4685), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_COMMA] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4687), - [anon_sym_DOT] = ACTIONS(4687), - [anon_sym_SLASH] = ACTIONS(4685), - [anon_sym_COLON] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_EQ] = ACTIONS(4685), - [anon_sym_QMARK] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_BSLASH] = ACTIONS(4687), - [anon_sym_CARET] = ACTIONS(4687), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4739), - [anon_sym_RPAREN] = ACTIONS(4685), - [sym__newline_token] = ACTIONS(4685), - [aux_sym_insert_token1] = ACTIONS(4685), - [aux_sym_delete_token1] = ACTIONS(4685), - [aux_sym_highlight_token1] = ACTIONS(4685), - [aux_sym_edit_comment_token1] = ACTIONS(4685), - [anon_sym_CARET_LBRACK] = ACTIONS(4685), - [anon_sym_LBRACK_CARET] = ACTIONS(4685), - [sym_uri_autolink] = ACTIONS(4685), - [sym_email_autolink] = ACTIONS(4685), - [sym__whitespace_ge_2] = ACTIONS(4685), - [aux_sym__whitespace_token1] = ACTIONS(4687), - [sym__word_no_digit] = ACTIONS(4685), - [sym__digits] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4685), - [sym__code_span_start] = ACTIONS(4685), - [sym__emphasis_open_star] = ACTIONS(4685), - [sym__emphasis_open_underscore] = ACTIONS(4685), - [sym__strikeout_open] = ACTIONS(4685), - [sym__latex_span_start] = ACTIONS(4685), - [sym__single_quote_open] = ACTIONS(4685), - [sym__double_quote_open] = ACTIONS(4685), - [sym__superscript_open] = ACTIONS(4685), - [sym__subscript_open] = ACTIONS(4685), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4685), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4685), - [sym__cite_author_in_text] = ACTIONS(4685), - [sym__cite_suppress_author] = ACTIONS(4685), - [sym__shortcode_open_escaped] = ACTIONS(4685), - [sym__shortcode_open] = ACTIONS(4685), - [sym__unclosed_span] = ACTIONS(4685), - [sym__strong_emphasis_open_star] = ACTIONS(4685), - [sym__strong_emphasis_open_underscore] = ACTIONS(4685), + [sym__qmd_attribute] = STATE(923), + [sym_raw_attribute] = STATE(923), + [sym_commonmark_attribute] = STATE(923), + [sym_language_attribute] = STATE(923), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__subscript_close] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(679)] = { - [sym__qmd_attribute] = STATE(866), - [sym_raw_attribute] = STATE(866), - [sym_commonmark_attribute] = STATE(866), - [sym_language_attribute] = STATE(866), - [ts_builtin_sym_end] = ACTIONS(4653), - [sym__backslash_escape] = ACTIONS(4653), - [sym_entity_reference] = ACTIONS(4653), - [sym_numeric_character_reference] = ACTIONS(4653), - [anon_sym_LT] = ACTIONS(4655), - [anon_sym_GT] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_DQUOTE] = ACTIONS(4653), - [anon_sym_POUND] = ACTIONS(4653), - [anon_sym_DOLLAR] = ACTIONS(4653), - [anon_sym_PERCENT] = ACTIONS(4653), - [anon_sym_AMP] = ACTIONS(4655), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PLUS] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4655), - [anon_sym_SLASH] = ACTIONS(4653), - [anon_sym_COLON] = ACTIONS(4653), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_EQ] = ACTIONS(4653), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4655), - [anon_sym_BSLASH] = ACTIONS(4655), - [anon_sym_CARET] = ACTIONS(4655), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACE] = ACTIONS(4651), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [anon_sym_RPAREN] = ACTIONS(4653), - [sym__newline_token] = ACTIONS(4653), - [aux_sym_insert_token1] = ACTIONS(4653), - [aux_sym_delete_token1] = ACTIONS(4653), - [aux_sym_highlight_token1] = ACTIONS(4653), - [aux_sym_edit_comment_token1] = ACTIONS(4653), - [anon_sym_CARET_LBRACK] = ACTIONS(4653), - [anon_sym_LBRACK_CARET] = ACTIONS(4653), - [sym_uri_autolink] = ACTIONS(4653), - [sym_email_autolink] = ACTIONS(4653), - [sym__whitespace_ge_2] = ACTIONS(4653), - [aux_sym__whitespace_token1] = ACTIONS(4655), - [sym__word_no_digit] = ACTIONS(4653), - [sym__digits] = ACTIONS(4653), - [anon_sym_DASH_DASH] = ACTIONS(4655), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4653), - [sym__code_span_start] = ACTIONS(4653), - [sym__emphasis_open_star] = ACTIONS(4653), - [sym__emphasis_open_underscore] = ACTIONS(4653), - [sym__strikeout_open] = ACTIONS(4653), - [sym__latex_span_start] = ACTIONS(4653), - [sym__single_quote_open] = ACTIONS(4653), - [sym__double_quote_open] = ACTIONS(4653), - [sym__superscript_open] = ACTIONS(4653), - [sym__subscript_open] = ACTIONS(4653), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4653), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4653), - [sym__cite_author_in_text] = ACTIONS(4653), - [sym__cite_suppress_author] = ACTIONS(4653), - [sym__shortcode_open_escaped] = ACTIONS(4653), - [sym__shortcode_open] = ACTIONS(4653), - [sym__unclosed_span] = ACTIONS(4653), - [sym__strong_emphasis_open_star] = ACTIONS(4653), - [sym__strong_emphasis_open_underscore] = ACTIONS(4653), + [sym__qmd_attribute] = STATE(1340), + [sym_raw_attribute] = STATE(1340), + [sym_commonmark_attribute] = STATE(1340), + [sym_language_attribute] = STATE(1340), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__emphasis_close_star] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(680)] = { - [sym__soft_line_break] = STATE(1623), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(849), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4745), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__single_quote_close] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__soft_line_break] = STATE(1149), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4301), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(681)] = { - [sym__soft_line_break] = STATE(812), - [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_STAR] = 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(923), - [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__last_token_punctuation] = ACTIONS(4751), - [sym__strikeout_open] = ACTIONS(4747), - [sym__latex_span_start] = ACTIONS(4747), - [sym__single_quote_open] = ACTIONS(4747), - [sym__double_quote_open] = ACTIONS(4747), - [sym__double_quote_close] = 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), + [sym__soft_line_break] = STATE(1642), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4307), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__double_quote_close] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(682)] = { - [sym__soft_line_break] = STATE(812), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(923), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4753), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__double_quote_close] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__soft_line_break] = STATE(855), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4309), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__subscript_close] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(683)] = { - [sym__soft_line_break] = STATE(1129), - [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_STAR] = 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(1217), - [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__last_token_punctuation] = ACTIONS(4755), - [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), - [sym__strong_emphasis_close_underscore] = ACTIONS(4747), + [sym__soft_line_break] = STATE(855), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(737), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4311), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__subscript_close] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(684)] = { - [sym__soft_line_break] = STATE(1129), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(1217), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4757), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), - [sym__strong_emphasis_close_underscore] = ACTIONS(4741), + [sym__soft_line_break] = STATE(1371), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__emphasis_close_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4313), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(685)] = { - [sym__soft_line_break] = STATE(1544), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(775), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4759), - [sym__strikeout_open] = ACTIONS(4741), - [sym__strikeout_close] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__soft_line_break] = STATE(1371), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(361), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__emphasis_close_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4315), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(686)] = { - [sym__soft_line_break] = STATE(1453), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(697), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__emphasis_close_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4761), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__soft_line_break] = STATE(1642), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(591), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4317), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__double_quote_close] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(687)] = { - [sym__soft_line_break] = STATE(1180), - [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_STAR] = 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(19), - [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__last_token_punctuation] = ACTIONS(4763), - [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), + [sym__soft_line_break] = STATE(1252), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(287), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_insert_token2] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4305), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4319), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(688)] = { - [sym__soft_line_break] = STATE(1180), - [ts_builtin_sym_end] = ACTIONS(4741), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(19), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4765), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__soft_line_break] = STATE(1252), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(287), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_insert_token2] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4299), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4321), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(689)] = { - [sym__soft_line_break] = STATE(967), - [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_STAR] = 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(1069), - [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__last_token_punctuation] = ACTIONS(4767), - [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__subscript_close] = 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), + [sym__soft_line_break] = STATE(999), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__emphasis_close_star] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4323), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(690)] = { - [sym__soft_line_break] = STATE(1214), - [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_STAR] = 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_RBRACK] = ACTIONS(4747), - [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(579), - [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__last_token_punctuation] = ACTIONS(4769), - [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), + [sym__soft_line_break] = STATE(1467), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4325), + [sym__strikeout_open] = ACTIONS(4303), + [sym__strikeout_close] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(691)] = { - [sym__soft_line_break] = STATE(1214), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_RBRACK] = ACTIONS(4741), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(579), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4771), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__soft_line_break] = STATE(1467), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(515), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4327), + [sym__strikeout_open] = ACTIONS(4297), + [sym__strikeout_close] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(692)] = { - [sym__soft_line_break] = STATE(967), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(1069), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4773), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__subscript_close] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__soft_line_break] = STATE(1231), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__superscript_close] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(693)] = { - [sym__soft_line_break] = STATE(1312), - [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_STAR] = 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(1295), - [aux_sym_insert_token1] = ACTIONS(4747), - [aux_sym_insert_token2] = 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(4749), - [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__last_token_punctuation] = ACTIONS(4775), - [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), + [sym__soft_line_break] = STATE(1231), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(663), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4331), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__superscript_close] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(694)] = { - [sym__soft_line_break] = STATE(1312), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(1295), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_insert_token2] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4743), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4777), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__soft_line_break] = STATE(1554), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4333), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__single_quote_close] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(695)] = { - [sym__soft_line_break] = STATE(1544), - [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_STAR] = 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(775), - [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__last_token_punctuation] = ACTIONS(4779), - [sym__strikeout_open] = ACTIONS(4747), - [sym__strikeout_close] = 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), + [sym__soft_line_break] = STATE(999), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(437), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__emphasis_close_star] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4335), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(696)] = { - [sym__soft_line_break] = STATE(1623), - [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_STAR] = 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(849), - [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__last_token_punctuation] = ACTIONS(4781), - [sym__strikeout_open] = ACTIONS(4747), - [sym__latex_span_start] = ACTIONS(4747), - [sym__single_quote_open] = ACTIONS(4747), - [sym__single_quote_close] = 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), + [sym__soft_line_break] = STATE(952), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4337), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_close_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(697)] = { - [sym__soft_line_break] = STATE(1047), - [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_STAR] = 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(1143), - [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__last_token_punctuation] = ACTIONS(4783), - [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_close_star] = ACTIONS(4747), - [sym__strong_emphasis_open_underscore] = ACTIONS(4747), + [sym__soft_line_break] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(4303), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(19), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4339), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(698)] = { - [sym__soft_line_break] = STATE(1047), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(1143), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4785), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_close_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__soft_line_break] = STATE(1050), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4341), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), + [sym__strong_emphasis_close_underscore] = ACTIONS(4303), }, [STATE(699)] = { - [sym__soft_line_break] = STATE(890), - [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_STAR] = 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(995), - [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__last_token_punctuation] = ACTIONS(4787), - [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__superscript_close] = 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), + [sym__soft_line_break] = STATE(1554), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(213), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4343), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__single_quote_close] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(700)] = { - [sym__soft_line_break] = STATE(890), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(995), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4789), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__superscript_close] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__soft_line_break] = STATE(1050), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(885), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4345), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), + [sym__strong_emphasis_close_underscore] = ACTIONS(4297), }, [STATE(701)] = { - [sym__soft_line_break] = STATE(1264), - [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_STAR] = 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(1489), - [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__last_token_punctuation] = ACTIONS(4791), - [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), + [sym__soft_line_break] = STATE(952), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(811), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4347), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_close_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(702)] = { - [sym__soft_line_break] = STATE(1264), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(1489), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__emphasis_close_star] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4793), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__soft_line_break] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(4297), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(19), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4349), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(703)] = { - [sym__soft_line_break] = STATE(1453), - [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_STAR] = 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(697), - [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_underscore] = ACTIONS(4747), - [sym__last_token_punctuation] = ACTIONS(4795), - [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), + [sym__soft_line_break] = STATE(1149), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_RBRACK] = ACTIONS(4303), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(95), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4351), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(704)] = { - [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_STAR] = 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_insert_token2] = 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(4749), - [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__last_token_punctuation] = ACTIONS(4775), - [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), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__emphasis_close_star] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4323), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(705)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__emphasis_close_underscore] = ACTIONS(4797), - [sym__last_token_punctuation] = ACTIONS(4801), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__superscript_close] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(706)] = { - [sym__backslash_escape] = ACTIONS(4803), - [sym_entity_reference] = ACTIONS(4803), - [sym_numeric_character_reference] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4803), - [anon_sym_BANG] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4803), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR] = ACTIONS(4803), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4803), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4805), - [anon_sym_BSLASH] = ACTIONS(4805), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LBRACE] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4803), - [anon_sym_TILDE] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [sym__newline_token] = ACTIONS(4803), - [aux_sym_insert_token1] = ACTIONS(4803), - [aux_sym_delete_token1] = ACTIONS(4803), - [aux_sym_highlight_token1] = ACTIONS(4803), - [aux_sym_edit_comment_token1] = ACTIONS(4803), - [anon_sym_CARET_LBRACK] = ACTIONS(4803), - [anon_sym_LBRACK_CARET] = ACTIONS(4803), - [sym_uri_autolink] = ACTIONS(4803), - [sym_email_autolink] = ACTIONS(4803), - [sym__whitespace_ge_2] = ACTIONS(4803), - [aux_sym__whitespace_token1] = ACTIONS(4805), - [sym__word_no_digit] = ACTIONS(4803), - [sym__digits] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4805), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), - [sym__code_span_start] = ACTIONS(4803), - [sym__emphasis_open_star] = ACTIONS(4803), - [sym__emphasis_open_underscore] = ACTIONS(4803), - [sym__emphasis_close_underscore] = ACTIONS(4803), - [sym__last_token_punctuation] = ACTIONS(4807), - [sym__strikeout_open] = ACTIONS(4803), - [sym__latex_span_start] = ACTIONS(4803), - [sym__single_quote_open] = ACTIONS(4803), - [sym__double_quote_open] = ACTIONS(4803), - [sym__superscript_open] = ACTIONS(4803), - [sym__subscript_open] = ACTIONS(4803), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4803), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4803), - [sym__cite_author_in_text] = ACTIONS(4803), - [sym__cite_suppress_author] = ACTIONS(4803), - [sym__shortcode_open_escaped] = ACTIONS(4803), - [sym__shortcode_open] = ACTIONS(4803), - [sym__unclosed_span] = ACTIONS(4803), - [sym__strong_emphasis_open_star] = ACTIONS(4803), - [sym__strong_emphasis_open_underscore] = ACTIONS(4803), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4329), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__superscript_close] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(707)] = { - [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_STAR] = 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(4809), - [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__last_token_punctuation] = ACTIONS(4755), - [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), - [sym__strong_emphasis_close_underscore] = ACTIONS(4747), + [sym__backslash_escape] = ACTIONS(4355), + [sym_entity_reference] = ACTIONS(4355), + [sym_numeric_character_reference] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4357), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_BSLASH] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4355), + [aux_sym_insert_token1] = ACTIONS(4355), + [aux_sym_delete_token1] = ACTIONS(4355), + [aux_sym_highlight_token1] = ACTIONS(4355), + [aux_sym_edit_comment_token1] = ACTIONS(4355), + [anon_sym_CARET_LBRACK] = ACTIONS(4355), + [anon_sym_LBRACK_CARET] = ACTIONS(4355), + [sym_uri_autolink] = ACTIONS(4355), + [sym_email_autolink] = ACTIONS(4355), + [sym__whitespace_ge_2] = ACTIONS(4355), + [aux_sym__whitespace_token1] = ACTIONS(4357), + [sym__word_no_digit] = ACTIONS(4355), + [sym__digits] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [sym__code_span_start] = ACTIONS(4355), + [sym__emphasis_open_star] = ACTIONS(4355), + [sym__emphasis_open_underscore] = ACTIONS(4355), + [sym__last_token_whitespace] = ACTIONS(4359), + [sym__strikeout_open] = ACTIONS(4355), + [sym__latex_span_start] = ACTIONS(4355), + [sym__single_quote_open] = ACTIONS(4355), + [sym__single_quote_close] = ACTIONS(4355), + [sym__double_quote_open] = ACTIONS(4355), + [sym__superscript_open] = ACTIONS(4355), + [sym__subscript_open] = ACTIONS(4355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4355), + [sym__cite_author_in_text] = ACTIONS(4355), + [sym__cite_suppress_author] = ACTIONS(4355), + [sym__shortcode_open_escaped] = ACTIONS(4355), + [sym__shortcode_open] = ACTIONS(4355), + [sym__unclosed_span] = ACTIONS(4355), + [sym__strong_emphasis_open_star] = ACTIONS(4355), + [sym__strong_emphasis_open_underscore] = ACTIONS(4355), }, [STATE(708)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__last_token_punctuation] = ACTIONS(4811), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__double_quote_close] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(4297), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4317), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__double_quote_close] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(709)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__last_token_punctuation] = ACTIONS(4813), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__superscript_close] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4361), + [sym_entity_reference] = ACTIONS(4361), + [sym_numeric_character_reference] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_BSLASH] = ACTIONS(4363), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [sym__newline_token] = ACTIONS(4361), + [aux_sym_insert_token1] = ACTIONS(4361), + [aux_sym_delete_token1] = ACTIONS(4361), + [aux_sym_highlight_token1] = ACTIONS(4361), + [aux_sym_edit_comment_token1] = ACTIONS(4361), + [anon_sym_CARET_LBRACK] = ACTIONS(4361), + [anon_sym_LBRACK_CARET] = ACTIONS(4361), + [sym_uri_autolink] = ACTIONS(4361), + [sym_email_autolink] = ACTIONS(4361), + [sym__whitespace_ge_2] = ACTIONS(4361), + [aux_sym__whitespace_token1] = ACTIONS(4363), + [sym__word_no_digit] = ACTIONS(4361), + [sym__digits] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4363), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4361), + [sym__code_span_start] = ACTIONS(4361), + [sym__emphasis_open_star] = ACTIONS(4361), + [sym__emphasis_open_underscore] = ACTIONS(4361), + [sym__last_token_punctuation] = ACTIONS(4365), + [sym__strikeout_open] = ACTIONS(4361), + [sym__latex_span_start] = ACTIONS(4361), + [sym__single_quote_open] = ACTIONS(4361), + [sym__double_quote_open] = ACTIONS(4361), + [sym__superscript_open] = ACTIONS(4361), + [sym__superscript_close] = ACTIONS(4361), + [sym__subscript_open] = ACTIONS(4361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4361), + [sym__cite_author_in_text] = ACTIONS(4361), + [sym__cite_suppress_author] = ACTIONS(4361), + [sym__shortcode_open_escaped] = ACTIONS(4361), + [sym__shortcode_open] = ACTIONS(4361), + [sym__unclosed_span] = ACTIONS(4361), + [sym__strong_emphasis_open_star] = ACTIONS(4361), + [sym__strong_emphasis_open_underscore] = ACTIONS(4361), }, [STATE(710)] = { - [ts_builtin_sym_end] = ACTIONS(4741), - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(4741), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4765), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4371), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__superscript_close] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(711)] = { - [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_STAR] = 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__last_token_punctuation] = ACTIONS(4767), - [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__subscript_close] = 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), + [sym__backslash_escape] = ACTIONS(4373), + [sym_entity_reference] = ACTIONS(4373), + [sym_numeric_character_reference] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_BSLASH] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_PIPE] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [sym__newline_token] = ACTIONS(4373), + [aux_sym_insert_token1] = ACTIONS(4373), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4373), + [aux_sym_edit_comment_token1] = ACTIONS(4373), + [anon_sym_CARET_LBRACK] = ACTIONS(4373), + [anon_sym_LBRACK_CARET] = ACTIONS(4373), + [sym_uri_autolink] = ACTIONS(4373), + [sym_email_autolink] = ACTIONS(4373), + [sym__whitespace_ge_2] = ACTIONS(4373), + [aux_sym__whitespace_token1] = ACTIONS(4375), + [sym__word_no_digit] = ACTIONS(4373), + [sym__digits] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [sym__code_span_start] = ACTIONS(4373), + [sym__emphasis_open_star] = ACTIONS(4373), + [sym__emphasis_open_underscore] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4377), + [sym__strikeout_open] = ACTIONS(4373), + [sym__latex_span_start] = ACTIONS(4373), + [sym__single_quote_open] = ACTIONS(4373), + [sym__double_quote_open] = ACTIONS(4373), + [sym__superscript_open] = ACTIONS(4373), + [sym__superscript_close] = ACTIONS(4373), + [sym__subscript_open] = ACTIONS(4373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4373), + [sym__cite_author_in_text] = ACTIONS(4373), + [sym__cite_suppress_author] = ACTIONS(4373), + [sym__shortcode_open_escaped] = ACTIONS(4373), + [sym__shortcode_open] = ACTIONS(4373), + [sym__unclosed_span] = ACTIONS(4373), + [sym__strong_emphasis_open_star] = ACTIONS(4373), + [sym__strong_emphasis_open_underscore] = ACTIONS(4373), }, [STATE(712)] = { - [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_STAR] = 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(4809), - [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__last_token_punctuation] = ACTIONS(4767), - [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__subscript_close] = 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), + [sym__backslash_escape] = ACTIONS(4379), + [sym_entity_reference] = ACTIONS(4379), + [sym_numeric_character_reference] = ACTIONS(4379), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_COMMA] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_PIPE] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_RPAREN] = ACTIONS(4379), + [sym__newline_token] = ACTIONS(4379), + [aux_sym_insert_token1] = ACTIONS(4379), + [aux_sym_delete_token1] = ACTIONS(4379), + [aux_sym_highlight_token1] = ACTIONS(4379), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4379), + [anon_sym_LBRACK_CARET] = ACTIONS(4379), + [sym_uri_autolink] = ACTIONS(4379), + [sym_email_autolink] = ACTIONS(4379), + [sym__whitespace_ge_2] = ACTIONS(4379), + [aux_sym__whitespace_token1] = ACTIONS(4381), + [sym__word_no_digit] = ACTIONS(4379), + [sym__digits] = ACTIONS(4379), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4379), + [sym__code_span_start] = ACTIONS(4379), + [sym__emphasis_open_star] = ACTIONS(4379), + [sym__emphasis_open_underscore] = ACTIONS(4379), + [sym__last_token_punctuation] = ACTIONS(4383), + [sym__strikeout_open] = ACTIONS(4379), + [sym__latex_span_start] = ACTIONS(4379), + [sym__single_quote_open] = ACTIONS(4379), + [sym__double_quote_open] = ACTIONS(4379), + [sym__superscript_open] = ACTIONS(4379), + [sym__superscript_close] = ACTIONS(4379), + [sym__subscript_open] = ACTIONS(4379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4379), + [sym__cite_author_in_text] = ACTIONS(4379), + [sym__cite_suppress_author] = ACTIONS(4379), + [sym__shortcode_open_escaped] = ACTIONS(4379), + [sym__shortcode_open] = ACTIONS(4379), + [sym__unclosed_span] = ACTIONS(4379), + [sym__strong_emphasis_open_star] = ACTIONS(4379), + [sym__strong_emphasis_open_underscore] = ACTIONS(4379), }, [STATE(713)] = { - [sym__backslash_escape] = ACTIONS(4815), - [sym_entity_reference] = ACTIONS(4815), - [sym_numeric_character_reference] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4815), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BSLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_TILDE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__newline_token] = ACTIONS(4815), - [aux_sym_insert_token1] = ACTIONS(4815), - [aux_sym_delete_token1] = ACTIONS(4815), - [aux_sym_highlight_token1] = ACTIONS(4815), - [aux_sym_edit_comment_token1] = ACTIONS(4815), - [anon_sym_CARET_LBRACK] = ACTIONS(4815), - [anon_sym_LBRACK_CARET] = ACTIONS(4815), - [sym_uri_autolink] = ACTIONS(4815), - [sym_email_autolink] = ACTIONS(4815), - [sym__whitespace_ge_2] = ACTIONS(4815), - [aux_sym__whitespace_token1] = ACTIONS(4817), - [sym__word_no_digit] = ACTIONS(4815), - [sym__digits] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [sym__code_span_start] = ACTIONS(4815), - [sym__emphasis_open_star] = ACTIONS(4815), - [sym__emphasis_open_underscore] = ACTIONS(4815), - [sym__last_token_whitespace] = ACTIONS(4819), - [sym__strikeout_open] = ACTIONS(4815), - [sym__latex_span_start] = ACTIONS(4815), - [sym__single_quote_open] = ACTIONS(4815), - [sym__double_quote_open] = ACTIONS(4815), - [sym__superscript_open] = ACTIONS(4815), - [sym__subscript_open] = ACTIONS(4815), - [sym__subscript_close] = ACTIONS(4815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4815), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4815), - [sym__cite_author_in_text] = ACTIONS(4815), - [sym__cite_suppress_author] = ACTIONS(4815), - [sym__shortcode_open_escaped] = ACTIONS(4815), - [sym__shortcode_open] = ACTIONS(4815), - [sym__unclosed_span] = ACTIONS(4815), - [sym__strong_emphasis_open_star] = ACTIONS(4815), - [sym__strong_emphasis_open_underscore] = ACTIONS(4815), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4309), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__subscript_close] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(714)] = { - [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_STAR] = 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_RBRACK] = ACTIONS(4747), - [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__last_token_punctuation] = ACTIONS(4769), - [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), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4309), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__subscript_close] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(715)] = { - [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_STAR] = 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(4809), - [anon_sym_BSLASH] = ACTIONS(4749), - [anon_sym_RBRACK] = ACTIONS(4747), - [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__last_token_punctuation] = ACTIONS(4769), - [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), + [sym__backslash_escape] = ACTIONS(4355), + [sym_entity_reference] = ACTIONS(4355), + [sym_numeric_character_reference] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4357), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_BSLASH] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4355), + [aux_sym_insert_token1] = ACTIONS(4355), + [aux_sym_delete_token1] = ACTIONS(4355), + [aux_sym_highlight_token1] = ACTIONS(4355), + [aux_sym_edit_comment_token1] = ACTIONS(4355), + [anon_sym_CARET_LBRACK] = ACTIONS(4355), + [anon_sym_LBRACK_CARET] = ACTIONS(4355), + [sym_uri_autolink] = ACTIONS(4355), + [sym_email_autolink] = ACTIONS(4355), + [sym__whitespace_ge_2] = ACTIONS(4355), + [aux_sym__whitespace_token1] = ACTIONS(4357), + [sym__word_no_digit] = ACTIONS(4355), + [sym__digits] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [sym__code_span_start] = ACTIONS(4355), + [sym__emphasis_open_star] = ACTIONS(4355), + [sym__emphasis_open_underscore] = ACTIONS(4355), + [sym__last_token_whitespace] = ACTIONS(4385), + [sym__strikeout_open] = ACTIONS(4355), + [sym__latex_span_start] = ACTIONS(4355), + [sym__single_quote_open] = ACTIONS(4355), + [sym__double_quote_open] = ACTIONS(4355), + [sym__double_quote_close] = ACTIONS(4355), + [sym__superscript_open] = ACTIONS(4355), + [sym__subscript_open] = ACTIONS(4355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4355), + [sym__cite_author_in_text] = ACTIONS(4355), + [sym__cite_suppress_author] = ACTIONS(4355), + [sym__shortcode_open_escaped] = ACTIONS(4355), + [sym__shortcode_open] = ACTIONS(4355), + [sym__unclosed_span] = ACTIONS(4355), + [sym__strong_emphasis_open_star] = ACTIONS(4355), + [sym__strong_emphasis_open_underscore] = ACTIONS(4355), }, [STATE(716)] = { - [sym__backslash_escape] = ACTIONS(4803), - [sym_entity_reference] = ACTIONS(4803), - [sym_numeric_character_reference] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4803), - [anon_sym_BANG] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4803), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR] = ACTIONS(4803), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4803), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4805), - [anon_sym_BSLASH] = ACTIONS(4805), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LBRACE] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4803), - [anon_sym_TILDE] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [sym__newline_token] = ACTIONS(4803), - [aux_sym_insert_token1] = ACTIONS(4803), - [aux_sym_delete_token1] = ACTIONS(4803), - [aux_sym_highlight_token1] = ACTIONS(4803), - [aux_sym_edit_comment_token1] = ACTIONS(4803), - [anon_sym_CARET_LBRACK] = ACTIONS(4803), - [anon_sym_LBRACK_CARET] = ACTIONS(4803), - [sym_uri_autolink] = ACTIONS(4803), - [sym_email_autolink] = ACTIONS(4803), - [sym__whitespace_ge_2] = ACTIONS(4803), - [aux_sym__whitespace_token1] = ACTIONS(4805), - [sym__word_no_digit] = ACTIONS(4803), - [sym__digits] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4805), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), - [sym__code_span_start] = ACTIONS(4803), - [sym__emphasis_open_star] = ACTIONS(4803), - [sym__emphasis_open_underscore] = ACTIONS(4803), - [sym__last_token_punctuation] = ACTIONS(4821), - [sym__strikeout_open] = ACTIONS(4803), - [sym__latex_span_start] = ACTIONS(4803), - [sym__single_quote_open] = ACTIONS(4803), - [sym__double_quote_open] = ACTIONS(4803), - [sym__superscript_open] = ACTIONS(4803), - [sym__superscript_close] = ACTIONS(4803), - [sym__subscript_open] = ACTIONS(4803), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4803), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4803), - [sym__cite_author_in_text] = ACTIONS(4803), - [sym__cite_suppress_author] = ACTIONS(4803), - [sym__shortcode_open_escaped] = ACTIONS(4803), - [sym__shortcode_open] = ACTIONS(4803), - [sym__unclosed_span] = ACTIONS(4803), - [sym__strong_emphasis_open_star] = ACTIONS(4803), - [sym__strong_emphasis_open_underscore] = ACTIONS(4803), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(4297), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4331), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__superscript_close] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(717)] = { - [sym__backslash_escape] = ACTIONS(4815), - [sym_entity_reference] = ACTIONS(4815), - [sym_numeric_character_reference] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4815), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BSLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_TILDE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__newline_token] = ACTIONS(4815), - [aux_sym_insert_token1] = ACTIONS(4815), - [aux_sym_delete_token1] = ACTIONS(4815), - [aux_sym_highlight_token1] = ACTIONS(4815), - [aux_sym_edit_comment_token1] = ACTIONS(4815), - [anon_sym_CARET_LBRACK] = ACTIONS(4815), - [anon_sym_LBRACK_CARET] = ACTIONS(4815), - [sym_uri_autolink] = ACTIONS(4815), - [sym_email_autolink] = ACTIONS(4815), - [sym__whitespace_ge_2] = ACTIONS(4815), - [aux_sym__whitespace_token1] = ACTIONS(4817), - [sym__word_no_digit] = ACTIONS(4815), - [sym__digits] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [sym__code_span_start] = ACTIONS(4815), - [sym__emphasis_open_star] = ACTIONS(4815), - [sym__emphasis_open_underscore] = ACTIONS(4815), - [sym__last_token_whitespace] = ACTIONS(4823), - [sym__strikeout_open] = ACTIONS(4815), - [sym__latex_span_start] = ACTIONS(4815), - [sym__single_quote_open] = ACTIONS(4815), - [sym__double_quote_open] = ACTIONS(4815), - [sym__superscript_open] = ACTIONS(4815), - [sym__subscript_open] = ACTIONS(4815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4815), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4815), - [sym__cite_author_in_text] = ACTIONS(4815), - [sym__cite_suppress_author] = ACTIONS(4815), - [sym__shortcode_open_escaped] = ACTIONS(4815), - [sym__shortcode_open] = ACTIONS(4815), - [sym__unclosed_span] = ACTIONS(4815), - [sym__strong_emphasis_open_star] = ACTIONS(4815), - [sym__strong_emphasis_close_star] = ACTIONS(4815), - [sym__strong_emphasis_open_underscore] = ACTIONS(4815), + [sym__backslash_escape] = ACTIONS(4361), + [sym_entity_reference] = ACTIONS(4361), + [sym_numeric_character_reference] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_BSLASH] = ACTIONS(4363), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [sym__newline_token] = ACTIONS(4361), + [aux_sym_insert_token1] = ACTIONS(4361), + [aux_sym_delete_token1] = ACTIONS(4361), + [aux_sym_highlight_token1] = ACTIONS(4361), + [aux_sym_edit_comment_token1] = ACTIONS(4361), + [anon_sym_CARET_LBRACK] = ACTIONS(4361), + [anon_sym_LBRACK_CARET] = ACTIONS(4361), + [sym_uri_autolink] = ACTIONS(4361), + [sym_email_autolink] = ACTIONS(4361), + [sym__whitespace_ge_2] = ACTIONS(4361), + [aux_sym__whitespace_token1] = ACTIONS(4363), + [sym__word_no_digit] = ACTIONS(4361), + [sym__digits] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4363), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4361), + [sym__code_span_start] = ACTIONS(4361), + [sym__emphasis_open_star] = ACTIONS(4361), + [sym__emphasis_open_underscore] = ACTIONS(4361), + [sym__last_token_punctuation] = ACTIONS(4387), + [sym__strikeout_open] = ACTIONS(4361), + [sym__latex_span_start] = ACTIONS(4361), + [sym__single_quote_open] = ACTIONS(4361), + [sym__double_quote_open] = ACTIONS(4361), + [sym__superscript_open] = ACTIONS(4361), + [sym__subscript_open] = ACTIONS(4361), + [sym__subscript_close] = ACTIONS(4361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4361), + [sym__cite_author_in_text] = ACTIONS(4361), + [sym__cite_suppress_author] = ACTIONS(4361), + [sym__shortcode_open_escaped] = ACTIONS(4361), + [sym__shortcode_open] = ACTIONS(4361), + [sym__unclosed_span] = ACTIONS(4361), + [sym__strong_emphasis_open_star] = ACTIONS(4361), + [sym__strong_emphasis_open_underscore] = ACTIONS(4361), }, [STATE(718)] = { - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(4741), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4745), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__single_quote_close] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4389), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__subscript_close] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(719)] = { - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(4741), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4785), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_close_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__backslash_escape] = ACTIONS(4373), + [sym_entity_reference] = ACTIONS(4373), + [sym_numeric_character_reference] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_BSLASH] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_PIPE] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [sym__newline_token] = ACTIONS(4373), + [aux_sym_insert_token1] = ACTIONS(4373), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4373), + [aux_sym_edit_comment_token1] = ACTIONS(4373), + [anon_sym_CARET_LBRACK] = ACTIONS(4373), + [anon_sym_LBRACK_CARET] = ACTIONS(4373), + [sym_uri_autolink] = ACTIONS(4373), + [sym_email_autolink] = ACTIONS(4373), + [sym__whitespace_ge_2] = ACTIONS(4373), + [aux_sym__whitespace_token1] = ACTIONS(4375), + [sym__word_no_digit] = ACTIONS(4373), + [sym__digits] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [sym__code_span_start] = ACTIONS(4373), + [sym__emphasis_open_star] = ACTIONS(4373), + [sym__emphasis_open_underscore] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4391), + [sym__strikeout_open] = ACTIONS(4373), + [sym__latex_span_start] = ACTIONS(4373), + [sym__single_quote_open] = ACTIONS(4373), + [sym__double_quote_open] = ACTIONS(4373), + [sym__superscript_open] = ACTIONS(4373), + [sym__subscript_open] = ACTIONS(4373), + [sym__subscript_close] = ACTIONS(4373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4373), + [sym__cite_author_in_text] = ACTIONS(4373), + [sym__cite_suppress_author] = ACTIONS(4373), + [sym__shortcode_open_escaped] = ACTIONS(4373), + [sym__shortcode_open] = ACTIONS(4373), + [sym__unclosed_span] = ACTIONS(4373), + [sym__strong_emphasis_open_star] = ACTIONS(4373), + [sym__strong_emphasis_open_underscore] = ACTIONS(4373), }, [STATE(720)] = { - [sym__backslash_escape] = ACTIONS(4815), - [sym_entity_reference] = ACTIONS(4815), - [sym_numeric_character_reference] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4815), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BSLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_TILDE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__newline_token] = ACTIONS(4815), - [aux_sym_insert_token1] = ACTIONS(4815), - [aux_sym_delete_token1] = ACTIONS(4815), - [aux_sym_highlight_token1] = ACTIONS(4815), - [aux_sym_edit_comment_token1] = ACTIONS(4815), - [anon_sym_CARET_LBRACK] = ACTIONS(4815), - [anon_sym_LBRACK_CARET] = ACTIONS(4815), - [sym_uri_autolink] = ACTIONS(4815), - [sym_email_autolink] = ACTIONS(4815), - [sym__whitespace_ge_2] = ACTIONS(4815), - [aux_sym__whitespace_token1] = ACTIONS(4817), - [sym__word_no_digit] = ACTIONS(4815), - [sym__digits] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [sym__code_span_start] = ACTIONS(4815), - [sym__emphasis_open_star] = ACTIONS(4815), - [sym__emphasis_open_underscore] = ACTIONS(4815), - [sym__last_token_whitespace] = ACTIONS(4825), - [sym__strikeout_open] = ACTIONS(4815), - [sym__latex_span_start] = ACTIONS(4815), - [sym__single_quote_open] = ACTIONS(4815), - [sym__double_quote_open] = ACTIONS(4815), - [sym__double_quote_close] = ACTIONS(4815), - [sym__superscript_open] = ACTIONS(4815), - [sym__subscript_open] = ACTIONS(4815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4815), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4815), - [sym__cite_author_in_text] = ACTIONS(4815), - [sym__cite_suppress_author] = ACTIONS(4815), - [sym__shortcode_open_escaped] = ACTIONS(4815), - [sym__shortcode_open] = ACTIONS(4815), - [sym__unclosed_span] = ACTIONS(4815), - [sym__strong_emphasis_open_star] = ACTIONS(4815), - [sym__strong_emphasis_open_underscore] = ACTIONS(4815), + [sym__backslash_escape] = ACTIONS(4379), + [sym_entity_reference] = ACTIONS(4379), + [sym_numeric_character_reference] = ACTIONS(4379), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_COMMA] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_PIPE] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_RPAREN] = ACTIONS(4379), + [sym__newline_token] = ACTIONS(4379), + [aux_sym_insert_token1] = ACTIONS(4379), + [aux_sym_delete_token1] = ACTIONS(4379), + [aux_sym_highlight_token1] = ACTIONS(4379), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4379), + [anon_sym_LBRACK_CARET] = ACTIONS(4379), + [sym_uri_autolink] = ACTIONS(4379), + [sym_email_autolink] = ACTIONS(4379), + [sym__whitespace_ge_2] = ACTIONS(4379), + [aux_sym__whitespace_token1] = ACTIONS(4381), + [sym__word_no_digit] = ACTIONS(4379), + [sym__digits] = ACTIONS(4379), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4379), + [sym__code_span_start] = ACTIONS(4379), + [sym__emphasis_open_star] = ACTIONS(4379), + [sym__emphasis_open_underscore] = ACTIONS(4379), + [sym__last_token_punctuation] = ACTIONS(4393), + [sym__strikeout_open] = ACTIONS(4379), + [sym__latex_span_start] = ACTIONS(4379), + [sym__single_quote_open] = ACTIONS(4379), + [sym__double_quote_open] = ACTIONS(4379), + [sym__superscript_open] = ACTIONS(4379), + [sym__subscript_open] = ACTIONS(4379), + [sym__subscript_close] = ACTIONS(4379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4379), + [sym__cite_author_in_text] = ACTIONS(4379), + [sym__cite_suppress_author] = ACTIONS(4379), + [sym__shortcode_open_escaped] = ACTIONS(4379), + [sym__shortcode_open] = ACTIONS(4379), + [sym__unclosed_span] = ACTIONS(4379), + [sym__strong_emphasis_open_star] = ACTIONS(4379), + [sym__strong_emphasis_open_underscore] = ACTIONS(4379), }, [STATE(721)] = { - [sym__backslash_escape] = ACTIONS(4827), - [sym_entity_reference] = ACTIONS(4827), - [sym_numeric_character_reference] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_BSLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__newline_token] = ACTIONS(4827), - [aux_sym_insert_token1] = ACTIONS(4827), - [aux_sym_delete_token1] = ACTIONS(4827), - [aux_sym_highlight_token1] = ACTIONS(4827), - [aux_sym_edit_comment_token1] = ACTIONS(4827), - [anon_sym_CARET_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACK_CARET] = ACTIONS(4827), - [sym_uri_autolink] = ACTIONS(4827), - [sym_email_autolink] = ACTIONS(4827), - [sym__whitespace_ge_2] = ACTIONS(4827), - [aux_sym__whitespace_token1] = ACTIONS(4829), - [sym__word_no_digit] = ACTIONS(4827), - [sym__digits] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4827), - [sym__code_span_start] = ACTIONS(4827), - [sym__emphasis_open_star] = ACTIONS(4827), - [sym__emphasis_open_underscore] = ACTIONS(4827), - [sym__last_token_punctuation] = ACTIONS(4831), - [sym__strikeout_open] = ACTIONS(4827), - [sym__latex_span_start] = ACTIONS(4827), - [sym__single_quote_open] = ACTIONS(4827), - [sym__double_quote_open] = ACTIONS(4827), - [sym__superscript_open] = ACTIONS(4827), - [sym__superscript_close] = ACTIONS(4827), - [sym__subscript_open] = ACTIONS(4827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4827), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4827), - [sym__cite_author_in_text] = ACTIONS(4827), - [sym__cite_suppress_author] = ACTIONS(4827), - [sym__shortcode_open_escaped] = ACTIONS(4827), - [sym__shortcode_open] = ACTIONS(4827), - [sym__unclosed_span] = ACTIONS(4827), - [sym__strong_emphasis_open_star] = ACTIONS(4827), - [sym__strong_emphasis_open_underscore] = ACTIONS(4827), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__emphasis_close_star] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4323), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(722)] = { - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(4741), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__emphasis_close_star] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4793), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [ts_builtin_sym_end] = ACTIONS(4303), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4339), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(723)] = { - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(4741), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4789), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__superscript_close] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [ts_builtin_sym_end] = ACTIONS(4361), + [sym__backslash_escape] = ACTIONS(4361), + [sym_entity_reference] = ACTIONS(4361), + [sym_numeric_character_reference] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_BSLASH] = ACTIONS(4363), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [sym__newline_token] = ACTIONS(4361), + [aux_sym_insert_token1] = ACTIONS(4361), + [aux_sym_delete_token1] = ACTIONS(4361), + [aux_sym_highlight_token1] = ACTIONS(4361), + [aux_sym_edit_comment_token1] = ACTIONS(4361), + [anon_sym_CARET_LBRACK] = ACTIONS(4361), + [anon_sym_LBRACK_CARET] = ACTIONS(4361), + [sym_uri_autolink] = ACTIONS(4361), + [sym_email_autolink] = ACTIONS(4361), + [sym__whitespace_ge_2] = ACTIONS(4361), + [aux_sym__whitespace_token1] = ACTIONS(4363), + [sym__word_no_digit] = ACTIONS(4361), + [sym__digits] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4363), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4361), + [sym__code_span_start] = ACTIONS(4361), + [sym__emphasis_open_star] = ACTIONS(4361), + [sym__emphasis_open_underscore] = ACTIONS(4361), + [sym__last_token_punctuation] = ACTIONS(4395), + [sym__strikeout_open] = ACTIONS(4361), + [sym__latex_span_start] = ACTIONS(4361), + [sym__single_quote_open] = ACTIONS(4361), + [sym__double_quote_open] = ACTIONS(4361), + [sym__superscript_open] = ACTIONS(4361), + [sym__subscript_open] = ACTIONS(4361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4361), + [sym__cite_author_in_text] = ACTIONS(4361), + [sym__cite_suppress_author] = ACTIONS(4361), + [sym__shortcode_open_escaped] = ACTIONS(4361), + [sym__shortcode_open] = ACTIONS(4361), + [sym__unclosed_span] = ACTIONS(4361), + [sym__strong_emphasis_open_star] = ACTIONS(4361), + [sym__strong_emphasis_open_underscore] = ACTIONS(4361), }, [STATE(724)] = { - [sym__backslash_escape] = ACTIONS(4803), - [sym_entity_reference] = ACTIONS(4803), - [sym_numeric_character_reference] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4803), - [anon_sym_BANG] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4803), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR] = ACTIONS(4803), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4803), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4805), - [anon_sym_BSLASH] = ACTIONS(4805), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LBRACE] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4803), - [anon_sym_TILDE] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [sym__newline_token] = ACTIONS(4803), - [aux_sym_insert_token1] = ACTIONS(4803), - [aux_sym_delete_token1] = ACTIONS(4803), - [aux_sym_highlight_token1] = ACTIONS(4803), - [aux_sym_edit_comment_token1] = ACTIONS(4803), - [anon_sym_CARET_LBRACK] = ACTIONS(4803), - [anon_sym_LBRACK_CARET] = ACTIONS(4803), - [sym_uri_autolink] = ACTIONS(4803), - [sym_email_autolink] = ACTIONS(4803), - [sym__whitespace_ge_2] = ACTIONS(4803), - [aux_sym__whitespace_token1] = ACTIONS(4805), - [sym__word_no_digit] = ACTIONS(4803), - [sym__digits] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4805), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), - [sym__code_span_start] = ACTIONS(4803), - [sym__emphasis_open_star] = ACTIONS(4803), - [sym__emphasis_open_underscore] = ACTIONS(4803), - [sym__last_token_punctuation] = ACTIONS(4833), - [sym__strikeout_open] = ACTIONS(4803), - [sym__latex_span_start] = ACTIONS(4803), - [sym__single_quote_open] = ACTIONS(4803), - [sym__double_quote_open] = ACTIONS(4803), - [sym__double_quote_close] = ACTIONS(4803), - [sym__superscript_open] = ACTIONS(4803), - [sym__subscript_open] = ACTIONS(4803), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4803), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4803), - [sym__cite_author_in_text] = ACTIONS(4803), - [sym__cite_suppress_author] = ACTIONS(4803), - [sym__shortcode_open_escaped] = ACTIONS(4803), - [sym__shortcode_open] = ACTIONS(4803), - [sym__unclosed_span] = ACTIONS(4803), - [sym__strong_emphasis_open_star] = ACTIONS(4803), - [sym__strong_emphasis_open_underscore] = ACTIONS(4803), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4347), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_close_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(725)] = { - [sym__backslash_escape] = ACTIONS(4835), - [sym_entity_reference] = ACTIONS(4835), - [sym_numeric_character_reference] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4835), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_BSLASH] = ACTIONS(4837), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4835), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__newline_token] = ACTIONS(4835), - [aux_sym_insert_token1] = ACTIONS(4835), - [aux_sym_delete_token1] = ACTIONS(4835), - [aux_sym_highlight_token1] = ACTIONS(4835), - [aux_sym_edit_comment_token1] = ACTIONS(4835), - [anon_sym_CARET_LBRACK] = ACTIONS(4835), - [anon_sym_LBRACK_CARET] = ACTIONS(4835), - [sym_uri_autolink] = ACTIONS(4835), - [sym_email_autolink] = ACTIONS(4835), - [sym__whitespace_ge_2] = ACTIONS(4835), - [aux_sym__whitespace_token1] = ACTIONS(4837), - [sym__word_no_digit] = ACTIONS(4835), - [sym__digits] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [sym__code_span_start] = ACTIONS(4835), - [sym__emphasis_open_star] = ACTIONS(4835), - [sym__emphasis_open_underscore] = ACTIONS(4835), - [sym__last_token_punctuation] = ACTIONS(4839), - [sym__strikeout_open] = ACTIONS(4835), - [sym__latex_span_start] = ACTIONS(4835), - [sym__single_quote_open] = ACTIONS(4835), - [sym__double_quote_open] = ACTIONS(4835), - [sym__superscript_open] = ACTIONS(4835), - [sym__subscript_open] = ACTIONS(4835), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4835), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4835), - [sym__cite_author_in_text] = ACTIONS(4835), - [sym__cite_suppress_author] = ACTIONS(4835), - [sym__shortcode_open_escaped] = ACTIONS(4835), - [sym__shortcode_open] = ACTIONS(4835), - [sym__unclosed_span] = ACTIONS(4835), - [sym__strong_emphasis_open_star] = ACTIONS(4835), - [sym__strong_emphasis_open_underscore] = ACTIONS(4835), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4347), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_close_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(726)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__last_token_punctuation] = ACTIONS(4841), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__single_quote_close] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4355), + [sym_entity_reference] = ACTIONS(4355), + [sym_numeric_character_reference] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4357), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_BSLASH] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4355), + [aux_sym_insert_token1] = ACTIONS(4355), + [aux_sym_delete_token1] = ACTIONS(4355), + [aux_sym_highlight_token1] = ACTIONS(4355), + [aux_sym_edit_comment_token1] = ACTIONS(4355), + [anon_sym_CARET_LBRACK] = ACTIONS(4355), + [anon_sym_LBRACK_CARET] = ACTIONS(4355), + [sym_uri_autolink] = ACTIONS(4355), + [sym_email_autolink] = ACTIONS(4355), + [sym__whitespace_ge_2] = ACTIONS(4355), + [aux_sym__whitespace_token1] = ACTIONS(4357), + [sym__word_no_digit] = ACTIONS(4355), + [sym__digits] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [sym__code_span_start] = ACTIONS(4355), + [sym__emphasis_open_star] = ACTIONS(4355), + [sym__emphasis_open_underscore] = ACTIONS(4355), + [sym__last_token_whitespace] = ACTIONS(4397), + [sym__strikeout_open] = ACTIONS(4355), + [sym__latex_span_start] = ACTIONS(4355), + [sym__single_quote_open] = ACTIONS(4355), + [sym__double_quote_open] = ACTIONS(4355), + [sym__superscript_open] = ACTIONS(4355), + [sym__superscript_close] = ACTIONS(4355), + [sym__subscript_open] = ACTIONS(4355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4355), + [sym__cite_author_in_text] = ACTIONS(4355), + [sym__cite_suppress_author] = ACTIONS(4355), + [sym__shortcode_open_escaped] = ACTIONS(4355), + [sym__shortcode_open] = ACTIONS(4355), + [sym__unclosed_span] = ACTIONS(4355), + [sym__strong_emphasis_open_star] = ACTIONS(4355), + [sym__strong_emphasis_open_underscore] = ACTIONS(4355), }, [STATE(727)] = { - [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_STAR] = 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(4809), - [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__last_token_punctuation] = ACTIONS(4763), - [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), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(4297), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4311), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__subscript_close] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(728)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_RBRACK] = ACTIONS(4797), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__last_token_punctuation] = ACTIONS(4843), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4361), + [sym_entity_reference] = ACTIONS(4361), + [sym_numeric_character_reference] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_BSLASH] = ACTIONS(4363), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [sym__newline_token] = ACTIONS(4361), + [aux_sym_insert_token1] = ACTIONS(4361), + [aux_sym_delete_token1] = ACTIONS(4361), + [aux_sym_highlight_token1] = ACTIONS(4361), + [aux_sym_edit_comment_token1] = ACTIONS(4361), + [anon_sym_CARET_LBRACK] = ACTIONS(4361), + [anon_sym_LBRACK_CARET] = ACTIONS(4361), + [sym_uri_autolink] = ACTIONS(4361), + [sym_email_autolink] = ACTIONS(4361), + [sym__whitespace_ge_2] = ACTIONS(4361), + [aux_sym__whitespace_token1] = ACTIONS(4363), + [sym__word_no_digit] = ACTIONS(4361), + [sym__digits] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4363), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4361), + [sym__code_span_start] = ACTIONS(4361), + [sym__emphasis_open_star] = ACTIONS(4361), + [sym__emphasis_open_underscore] = ACTIONS(4361), + [sym__last_token_punctuation] = ACTIONS(4399), + [sym__strikeout_open] = ACTIONS(4361), + [sym__latex_span_start] = ACTIONS(4361), + [sym__single_quote_open] = ACTIONS(4361), + [sym__double_quote_open] = ACTIONS(4361), + [sym__superscript_open] = ACTIONS(4361), + [sym__subscript_open] = ACTIONS(4361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4361), + [sym__cite_author_in_text] = ACTIONS(4361), + [sym__cite_suppress_author] = ACTIONS(4361), + [sym__shortcode_open_escaped] = ACTIONS(4361), + [sym__shortcode_open] = ACTIONS(4361), + [sym__unclosed_span] = ACTIONS(4361), + [sym__strong_emphasis_open_star] = ACTIONS(4361), + [sym__strong_emphasis_close_star] = ACTIONS(4361), + [sym__strong_emphasis_open_underscore] = ACTIONS(4361), }, [STATE(729)] = { - [sym__backslash_escape] = ACTIONS(4803), - [sym_entity_reference] = ACTIONS(4803), - [sym_numeric_character_reference] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4803), - [anon_sym_BANG] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4803), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR] = ACTIONS(4803), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4803), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4805), - [anon_sym_BSLASH] = ACTIONS(4805), - [anon_sym_RBRACK] = ACTIONS(4803), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LBRACE] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4803), - [anon_sym_TILDE] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [sym__newline_token] = ACTIONS(4803), - [aux_sym_insert_token1] = ACTIONS(4803), - [aux_sym_delete_token1] = ACTIONS(4803), - [aux_sym_highlight_token1] = ACTIONS(4803), - [aux_sym_edit_comment_token1] = ACTIONS(4803), - [anon_sym_CARET_LBRACK] = ACTIONS(4803), - [anon_sym_LBRACK_CARET] = ACTIONS(4803), - [sym_uri_autolink] = ACTIONS(4803), - [sym_email_autolink] = ACTIONS(4803), - [sym__whitespace_ge_2] = ACTIONS(4803), - [aux_sym__whitespace_token1] = ACTIONS(4805), - [sym__word_no_digit] = ACTIONS(4803), - [sym__digits] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4805), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), - [sym__code_span_start] = ACTIONS(4803), - [sym__emphasis_open_star] = ACTIONS(4803), - [sym__emphasis_open_underscore] = ACTIONS(4803), - [sym__last_token_punctuation] = ACTIONS(4845), - [sym__strikeout_open] = ACTIONS(4803), - [sym__latex_span_start] = ACTIONS(4803), - [sym__single_quote_open] = ACTIONS(4803), - [sym__double_quote_open] = ACTIONS(4803), - [sym__superscript_open] = ACTIONS(4803), - [sym__subscript_open] = ACTIONS(4803), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4803), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4803), - [sym__cite_author_in_text] = ACTIONS(4803), - [sym__cite_suppress_author] = ACTIONS(4803), - [sym__shortcode_open_escaped] = ACTIONS(4803), - [sym__shortcode_open] = ACTIONS(4803), - [sym__unclosed_span] = ACTIONS(4803), - [sym__strong_emphasis_open_star] = ACTIONS(4803), - [sym__strong_emphasis_open_underscore] = ACTIONS(4803), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4401), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_close_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(730)] = { - [sym__backslash_escape] = ACTIONS(4803), - [sym_entity_reference] = ACTIONS(4803), - [sym_numeric_character_reference] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4803), - [anon_sym_BANG] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4803), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR] = ACTIONS(4803), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4803), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4805), - [anon_sym_BSLASH] = ACTIONS(4805), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LBRACE] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4803), - [anon_sym_TILDE] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [sym__newline_token] = ACTIONS(4803), - [aux_sym_insert_token1] = ACTIONS(4803), - [aux_sym_delete_token1] = ACTIONS(4803), - [aux_sym_highlight_token1] = ACTIONS(4803), - [aux_sym_edit_comment_token1] = ACTIONS(4803), - [anon_sym_CARET_LBRACK] = ACTIONS(4803), - [anon_sym_LBRACK_CARET] = ACTIONS(4803), - [sym_uri_autolink] = ACTIONS(4803), - [sym_email_autolink] = ACTIONS(4803), - [sym__whitespace_ge_2] = ACTIONS(4803), - [aux_sym__whitespace_token1] = ACTIONS(4805), - [sym__word_no_digit] = ACTIONS(4803), - [sym__digits] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4805), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), - [sym__code_span_start] = ACTIONS(4803), - [sym__emphasis_open_star] = ACTIONS(4803), - [sym__emphasis_open_underscore] = ACTIONS(4803), - [sym__last_token_punctuation] = ACTIONS(4847), - [sym__strikeout_open] = ACTIONS(4803), - [sym__latex_span_start] = ACTIONS(4803), - [sym__single_quote_open] = ACTIONS(4803), - [sym__single_quote_close] = ACTIONS(4803), - [sym__double_quote_open] = ACTIONS(4803), - [sym__superscript_open] = ACTIONS(4803), - [sym__subscript_open] = ACTIONS(4803), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4803), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4803), - [sym__cite_author_in_text] = ACTIONS(4803), - [sym__cite_suppress_author] = ACTIONS(4803), - [sym__shortcode_open_escaped] = ACTIONS(4803), - [sym__shortcode_open] = ACTIONS(4803), - [sym__unclosed_span] = ACTIONS(4803), - [sym__strong_emphasis_open_star] = ACTIONS(4803), - [sym__strong_emphasis_open_underscore] = ACTIONS(4803), + [sym__backslash_escape] = ACTIONS(4373), + [sym_entity_reference] = ACTIONS(4373), + [sym_numeric_character_reference] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_BSLASH] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_PIPE] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [sym__newline_token] = ACTIONS(4373), + [aux_sym_insert_token1] = ACTIONS(4373), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4373), + [aux_sym_edit_comment_token1] = ACTIONS(4373), + [anon_sym_CARET_LBRACK] = ACTIONS(4373), + [anon_sym_LBRACK_CARET] = ACTIONS(4373), + [sym_uri_autolink] = ACTIONS(4373), + [sym_email_autolink] = ACTIONS(4373), + [sym__whitespace_ge_2] = ACTIONS(4373), + [aux_sym__whitespace_token1] = ACTIONS(4375), + [sym__word_no_digit] = ACTIONS(4373), + [sym__digits] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [sym__code_span_start] = ACTIONS(4373), + [sym__emphasis_open_star] = ACTIONS(4373), + [sym__emphasis_open_underscore] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4403), + [sym__strikeout_open] = ACTIONS(4373), + [sym__latex_span_start] = ACTIONS(4373), + [sym__single_quote_open] = ACTIONS(4373), + [sym__double_quote_open] = ACTIONS(4373), + [sym__superscript_open] = ACTIONS(4373), + [sym__subscript_open] = ACTIONS(4373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4373), + [sym__cite_author_in_text] = ACTIONS(4373), + [sym__cite_suppress_author] = ACTIONS(4373), + [sym__shortcode_open_escaped] = ACTIONS(4373), + [sym__shortcode_open] = ACTIONS(4373), + [sym__unclosed_span] = ACTIONS(4373), + [sym__strong_emphasis_open_star] = ACTIONS(4373), + [sym__strong_emphasis_close_star] = ACTIONS(4373), + [sym__strong_emphasis_open_underscore] = ACTIONS(4373), }, [STATE(731)] = { - [sym__backslash_escape] = ACTIONS(4827), - [sym_entity_reference] = ACTIONS(4827), - [sym_numeric_character_reference] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_BSLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__newline_token] = ACTIONS(4827), - [aux_sym_insert_token1] = ACTIONS(4827), - [aux_sym_delete_token1] = ACTIONS(4827), - [aux_sym_highlight_token1] = ACTIONS(4827), - [aux_sym_edit_comment_token1] = ACTIONS(4827), - [anon_sym_CARET_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACK_CARET] = ACTIONS(4827), - [sym_uri_autolink] = ACTIONS(4827), - [sym_email_autolink] = ACTIONS(4827), - [sym__whitespace_ge_2] = ACTIONS(4827), - [aux_sym__whitespace_token1] = ACTIONS(4829), - [sym__word_no_digit] = ACTIONS(4827), - [sym__digits] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4827), - [sym__code_span_start] = ACTIONS(4827), - [sym__emphasis_open_star] = ACTIONS(4827), - [sym__emphasis_open_underscore] = ACTIONS(4827), - [sym__last_token_punctuation] = ACTIONS(4849), - [sym__strikeout_open] = ACTIONS(4827), - [sym__latex_span_start] = ACTIONS(4827), - [sym__single_quote_open] = ACTIONS(4827), - [sym__double_quote_open] = ACTIONS(4827), - [sym__double_quote_close] = ACTIONS(4827), - [sym__superscript_open] = ACTIONS(4827), - [sym__subscript_open] = ACTIONS(4827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4827), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4827), - [sym__cite_author_in_text] = ACTIONS(4827), - [sym__cite_suppress_author] = ACTIONS(4827), - [sym__shortcode_open_escaped] = ACTIONS(4827), - [sym__shortcode_open] = ACTIONS(4827), - [sym__unclosed_span] = ACTIONS(4827), - [sym__strong_emphasis_open_star] = ACTIONS(4827), - [sym__strong_emphasis_open_underscore] = ACTIONS(4827), + [sym__backslash_escape] = ACTIONS(4379), + [sym_entity_reference] = ACTIONS(4379), + [sym_numeric_character_reference] = ACTIONS(4379), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_COMMA] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_PIPE] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_RPAREN] = ACTIONS(4379), + [sym__newline_token] = ACTIONS(4379), + [aux_sym_insert_token1] = ACTIONS(4379), + [aux_sym_delete_token1] = ACTIONS(4379), + [aux_sym_highlight_token1] = ACTIONS(4379), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4379), + [anon_sym_LBRACK_CARET] = ACTIONS(4379), + [sym_uri_autolink] = ACTIONS(4379), + [sym_email_autolink] = ACTIONS(4379), + [sym__whitespace_ge_2] = ACTIONS(4379), + [aux_sym__whitespace_token1] = ACTIONS(4381), + [sym__word_no_digit] = ACTIONS(4379), + [sym__digits] = ACTIONS(4379), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4379), + [sym__code_span_start] = ACTIONS(4379), + [sym__emphasis_open_star] = ACTIONS(4379), + [sym__emphasis_open_underscore] = ACTIONS(4379), + [sym__last_token_punctuation] = ACTIONS(4405), + [sym__strikeout_open] = ACTIONS(4379), + [sym__latex_span_start] = ACTIONS(4379), + [sym__single_quote_open] = ACTIONS(4379), + [sym__double_quote_open] = ACTIONS(4379), + [sym__superscript_open] = ACTIONS(4379), + [sym__subscript_open] = ACTIONS(4379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4379), + [sym__cite_author_in_text] = ACTIONS(4379), + [sym__cite_suppress_author] = ACTIONS(4379), + [sym__shortcode_open_escaped] = ACTIONS(4379), + [sym__shortcode_open] = ACTIONS(4379), + [sym__unclosed_span] = ACTIONS(4379), + [sym__strong_emphasis_open_star] = ACTIONS(4379), + [sym__strong_emphasis_close_star] = ACTIONS(4379), + [sym__strong_emphasis_open_underscore] = ACTIONS(4379), }, [STATE(732)] = { - [sym__backslash_escape] = ACTIONS(4827), - [sym_entity_reference] = ACTIONS(4827), - [sym_numeric_character_reference] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_BSLASH] = ACTIONS(4829), - [anon_sym_RBRACK] = ACTIONS(4827), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__newline_token] = ACTIONS(4827), - [aux_sym_insert_token1] = ACTIONS(4827), - [aux_sym_delete_token1] = ACTIONS(4827), - [aux_sym_highlight_token1] = ACTIONS(4827), - [aux_sym_edit_comment_token1] = ACTIONS(4827), - [anon_sym_CARET_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACK_CARET] = ACTIONS(4827), - [sym_uri_autolink] = ACTIONS(4827), - [sym_email_autolink] = ACTIONS(4827), - [sym__whitespace_ge_2] = ACTIONS(4827), - [aux_sym__whitespace_token1] = ACTIONS(4829), - [sym__word_no_digit] = ACTIONS(4827), - [sym__digits] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4827), - [sym__code_span_start] = ACTIONS(4827), - [sym__emphasis_open_star] = ACTIONS(4827), - [sym__emphasis_open_underscore] = ACTIONS(4827), - [sym__last_token_punctuation] = ACTIONS(4851), - [sym__strikeout_open] = ACTIONS(4827), - [sym__latex_span_start] = ACTIONS(4827), - [sym__single_quote_open] = ACTIONS(4827), - [sym__double_quote_open] = ACTIONS(4827), - [sym__superscript_open] = ACTIONS(4827), - [sym__subscript_open] = ACTIONS(4827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4827), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4827), - [sym__cite_author_in_text] = ACTIONS(4827), - [sym__cite_suppress_author] = ACTIONS(4827), - [sym__shortcode_open_escaped] = ACTIONS(4827), - [sym__shortcode_open] = ACTIONS(4827), - [sym__unclosed_span] = ACTIONS(4827), - [sym__strong_emphasis_open_star] = ACTIONS(4827), - [sym__strong_emphasis_open_underscore] = ACTIONS(4827), + [sym__backslash_escape] = ACTIONS(4361), + [sym_entity_reference] = ACTIONS(4361), + [sym_numeric_character_reference] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_BSLASH] = ACTIONS(4363), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [sym__newline_token] = ACTIONS(4361), + [aux_sym_insert_token1] = ACTIONS(4361), + [aux_sym_delete_token1] = ACTIONS(4361), + [aux_sym_highlight_token1] = ACTIONS(4361), + [aux_sym_edit_comment_token1] = ACTIONS(4361), + [anon_sym_CARET_LBRACK] = ACTIONS(4361), + [anon_sym_LBRACK_CARET] = ACTIONS(4361), + [sym_uri_autolink] = ACTIONS(4361), + [sym_email_autolink] = ACTIONS(4361), + [sym__whitespace_ge_2] = ACTIONS(4361), + [aux_sym__whitespace_token1] = ACTIONS(4363), + [sym__word_no_digit] = ACTIONS(4361), + [sym__digits] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4363), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4361), + [sym__code_span_start] = ACTIONS(4361), + [sym__emphasis_open_star] = ACTIONS(4361), + [sym__emphasis_open_underscore] = ACTIONS(4361), + [sym__emphasis_close_star] = ACTIONS(4361), + [sym__last_token_punctuation] = ACTIONS(4407), + [sym__strikeout_open] = ACTIONS(4361), + [sym__latex_span_start] = ACTIONS(4361), + [sym__single_quote_open] = ACTIONS(4361), + [sym__double_quote_open] = ACTIONS(4361), + [sym__superscript_open] = ACTIONS(4361), + [sym__subscript_open] = ACTIONS(4361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4361), + [sym__cite_author_in_text] = ACTIONS(4361), + [sym__cite_suppress_author] = ACTIONS(4361), + [sym__shortcode_open_escaped] = ACTIONS(4361), + [sym__shortcode_open] = ACTIONS(4361), + [sym__unclosed_span] = ACTIONS(4361), + [sym__strong_emphasis_open_star] = ACTIONS(4361), + [sym__strong_emphasis_open_underscore] = ACTIONS(4361), }, [STATE(733)] = { - [sym__backslash_escape] = ACTIONS(4835), - [sym_entity_reference] = ACTIONS(4835), - [sym_numeric_character_reference] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4835), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_BSLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4835), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__newline_token] = ACTIONS(4835), - [aux_sym_insert_token1] = ACTIONS(4835), - [aux_sym_delete_token1] = ACTIONS(4835), - [aux_sym_highlight_token1] = ACTIONS(4835), - [aux_sym_edit_comment_token1] = ACTIONS(4835), - [anon_sym_CARET_LBRACK] = ACTIONS(4835), - [anon_sym_LBRACK_CARET] = ACTIONS(4835), - [sym_uri_autolink] = ACTIONS(4835), - [sym_email_autolink] = ACTIONS(4835), - [sym__whitespace_ge_2] = ACTIONS(4835), - [aux_sym__whitespace_token1] = ACTIONS(4837), - [sym__word_no_digit] = ACTIONS(4835), - [sym__digits] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [sym__code_span_start] = ACTIONS(4835), - [sym__emphasis_open_star] = ACTIONS(4835), - [sym__emphasis_open_underscore] = ACTIONS(4835), - [sym__last_token_punctuation] = ACTIONS(4853), - [sym__strikeout_open] = ACTIONS(4835), - [sym__latex_span_start] = ACTIONS(4835), - [sym__single_quote_open] = ACTIONS(4835), - [sym__double_quote_open] = ACTIONS(4835), - [sym__superscript_open] = ACTIONS(4835), - [sym__subscript_open] = ACTIONS(4835), - [sym__subscript_close] = ACTIONS(4835), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4835), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4835), - [sym__cite_author_in_text] = ACTIONS(4835), - [sym__cite_suppress_author] = ACTIONS(4835), - [sym__shortcode_open_escaped] = ACTIONS(4835), - [sym__shortcode_open] = ACTIONS(4835), - [sym__unclosed_span] = ACTIONS(4835), - [sym__strong_emphasis_open_star] = ACTIONS(4835), - [sym__strong_emphasis_open_underscore] = ACTIONS(4835), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4341), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), + [sym__strong_emphasis_close_underscore] = ACTIONS(4303), }, [STATE(734)] = { - [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_STAR] = 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_underscore] = ACTIONS(4747), - [sym__last_token_punctuation] = ACTIONS(4795), - [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), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4341), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), + [sym__strong_emphasis_close_underscore] = ACTIONS(4303), }, [STATE(735)] = { - [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_STAR] = 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__last_token_punctuation] = ACTIONS(4779), - [sym__strikeout_open] = ACTIONS(4747), - [sym__strikeout_close] = 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), + [ts_builtin_sym_end] = ACTIONS(4297), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(4297), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4349), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(736)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__last_token_punctuation] = ACTIONS(4855), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__subscript_close] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4355), + [sym_entity_reference] = ACTIONS(4355), + [sym_numeric_character_reference] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4357), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_BSLASH] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4355), + [aux_sym_insert_token1] = ACTIONS(4355), + [aux_sym_delete_token1] = ACTIONS(4355), + [aux_sym_highlight_token1] = ACTIONS(4355), + [aux_sym_edit_comment_token1] = ACTIONS(4355), + [anon_sym_CARET_LBRACK] = ACTIONS(4355), + [anon_sym_LBRACK_CARET] = ACTIONS(4355), + [sym_uri_autolink] = ACTIONS(4355), + [sym_email_autolink] = ACTIONS(4355), + [sym__whitespace_ge_2] = ACTIONS(4355), + [aux_sym__whitespace_token1] = ACTIONS(4357), + [sym__word_no_digit] = ACTIONS(4355), + [sym__digits] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [sym__code_span_start] = ACTIONS(4355), + [sym__emphasis_open_star] = ACTIONS(4355), + [sym__emphasis_open_underscore] = ACTIONS(4355), + [sym__last_token_whitespace] = ACTIONS(4409), + [sym__strikeout_open] = ACTIONS(4355), + [sym__latex_span_start] = ACTIONS(4355), + [sym__single_quote_open] = ACTIONS(4355), + [sym__double_quote_open] = ACTIONS(4355), + [sym__superscript_open] = ACTIONS(4355), + [sym__subscript_open] = ACTIONS(4355), + [sym__subscript_close] = ACTIONS(4355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4355), + [sym__cite_author_in_text] = ACTIONS(4355), + [sym__cite_suppress_author] = ACTIONS(4355), + [sym__shortcode_open_escaped] = ACTIONS(4355), + [sym__shortcode_open] = ACTIONS(4355), + [sym__unclosed_span] = ACTIONS(4355), + [sym__strong_emphasis_open_star] = ACTIONS(4355), + [sym__strong_emphasis_open_underscore] = ACTIONS(4355), }, [STATE(737)] = { - [sym__backslash_escape] = ACTIONS(4803), - [sym_entity_reference] = ACTIONS(4803), - [sym_numeric_character_reference] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4803), - [anon_sym_BANG] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4803), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR] = ACTIONS(4803), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4803), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4805), - [anon_sym_BSLASH] = ACTIONS(4805), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LBRACE] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4803), - [anon_sym_TILDE] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [sym__newline_token] = ACTIONS(4803), - [aux_sym_insert_token1] = ACTIONS(4803), - [aux_sym_delete_token1] = ACTIONS(4803), - [aux_sym_highlight_token1] = ACTIONS(4803), - [aux_sym_edit_comment_token1] = ACTIONS(4803), - [anon_sym_CARET_LBRACK] = ACTIONS(4803), - [anon_sym_LBRACK_CARET] = ACTIONS(4803), - [sym_uri_autolink] = ACTIONS(4803), - [sym_email_autolink] = ACTIONS(4803), - [sym__whitespace_ge_2] = ACTIONS(4803), - [aux_sym__whitespace_token1] = ACTIONS(4805), - [sym__word_no_digit] = ACTIONS(4803), - [sym__digits] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4805), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), - [sym__code_span_start] = ACTIONS(4803), - [sym__emphasis_open_star] = ACTIONS(4803), - [sym__emphasis_open_underscore] = ACTIONS(4803), - [sym__last_token_punctuation] = ACTIONS(4857), - [sym__strikeout_open] = ACTIONS(4803), - [sym__latex_span_start] = ACTIONS(4803), - [sym__single_quote_open] = ACTIONS(4803), - [sym__double_quote_open] = ACTIONS(4803), - [sym__superscript_open] = ACTIONS(4803), - [sym__subscript_open] = ACTIONS(4803), - [sym__subscript_close] = ACTIONS(4803), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4803), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4803), - [sym__cite_author_in_text] = ACTIONS(4803), - [sym__cite_suppress_author] = ACTIONS(4803), - [sym__shortcode_open_escaped] = ACTIONS(4803), - [sym__shortcode_open] = ACTIONS(4803), - [sym__unclosed_span] = ACTIONS(4803), - [sym__strong_emphasis_open_star] = ACTIONS(4803), - [sym__strong_emphasis_open_underscore] = ACTIONS(4803), + [sym__backslash_escape] = ACTIONS(4361), + [sym_entity_reference] = ACTIONS(4361), + [sym_numeric_character_reference] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_BSLASH] = ACTIONS(4363), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [sym__newline_token] = ACTIONS(4361), + [aux_sym_insert_token1] = ACTIONS(4361), + [aux_sym_delete_token1] = ACTIONS(4361), + [aux_sym_highlight_token1] = ACTIONS(4361), + [aux_sym_edit_comment_token1] = ACTIONS(4361), + [anon_sym_CARET_LBRACK] = ACTIONS(4361), + [anon_sym_LBRACK_CARET] = ACTIONS(4361), + [sym_uri_autolink] = ACTIONS(4361), + [sym_email_autolink] = ACTIONS(4361), + [sym__whitespace_ge_2] = ACTIONS(4361), + [aux_sym__whitespace_token1] = ACTIONS(4363), + [sym__word_no_digit] = ACTIONS(4361), + [sym__digits] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4363), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4361), + [sym__code_span_start] = ACTIONS(4361), + [sym__emphasis_open_star] = ACTIONS(4361), + [sym__emphasis_open_underscore] = ACTIONS(4361), + [sym__last_token_punctuation] = ACTIONS(4411), + [sym__strikeout_open] = ACTIONS(4361), + [sym__latex_span_start] = ACTIONS(4361), + [sym__single_quote_open] = ACTIONS(4361), + [sym__double_quote_open] = ACTIONS(4361), + [sym__superscript_open] = ACTIONS(4361), + [sym__subscript_open] = ACTIONS(4361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4361), + [sym__cite_author_in_text] = ACTIONS(4361), + [sym__cite_suppress_author] = ACTIONS(4361), + [sym__shortcode_open_escaped] = ACTIONS(4361), + [sym__shortcode_open] = ACTIONS(4361), + [sym__unclosed_span] = ACTIONS(4361), + [sym__strong_emphasis_open_star] = ACTIONS(4361), + [sym__strong_emphasis_open_underscore] = ACTIONS(4361), + [sym__strong_emphasis_close_underscore] = ACTIONS(4361), }, [STATE(738)] = { - [sym__backslash_escape] = ACTIONS(4827), - [sym_entity_reference] = ACTIONS(4827), - [sym_numeric_character_reference] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_BSLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__newline_token] = ACTIONS(4827), - [aux_sym_insert_token1] = ACTIONS(4827), - [aux_sym_insert_token2] = ACTIONS(4827), - [aux_sym_delete_token1] = ACTIONS(4827), - [aux_sym_highlight_token1] = ACTIONS(4827), - [aux_sym_edit_comment_token1] = ACTIONS(4827), - [anon_sym_CARET_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACK_CARET] = ACTIONS(4827), - [sym_uri_autolink] = ACTIONS(4827), - [sym_email_autolink] = ACTIONS(4827), - [sym__whitespace_ge_2] = ACTIONS(4829), - [aux_sym__whitespace_token1] = ACTIONS(4829), - [sym__word_no_digit] = ACTIONS(4827), - [sym__digits] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4827), - [sym__code_span_start] = ACTIONS(4827), - [sym__emphasis_open_star] = ACTIONS(4827), - [sym__emphasis_open_underscore] = ACTIONS(4827), - [sym__last_token_punctuation] = ACTIONS(4859), - [sym__strikeout_open] = ACTIONS(4827), - [sym__latex_span_start] = ACTIONS(4827), - [sym__single_quote_open] = ACTIONS(4827), - [sym__double_quote_open] = ACTIONS(4827), - [sym__superscript_open] = ACTIONS(4827), - [sym__subscript_open] = ACTIONS(4827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4827), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4827), - [sym__cite_author_in_text] = ACTIONS(4827), - [sym__cite_suppress_author] = ACTIONS(4827), - [sym__shortcode_open_escaped] = ACTIONS(4827), - [sym__shortcode_open] = ACTIONS(4827), - [sym__unclosed_span] = ACTIONS(4827), - [sym__strong_emphasis_open_star] = ACTIONS(4827), - [sym__strong_emphasis_open_underscore] = ACTIONS(4827), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4413), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), + [sym__strong_emphasis_close_underscore] = ACTIONS(4367), }, [STATE(739)] = { - [sym__backslash_escape] = ACTIONS(4835), - [sym_entity_reference] = ACTIONS(4835), - [sym_numeric_character_reference] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4835), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_BSLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4835), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__newline_token] = ACTIONS(4835), - [aux_sym_insert_token1] = ACTIONS(4835), - [aux_sym_delete_token1] = ACTIONS(4835), - [aux_sym_highlight_token1] = ACTIONS(4835), - [aux_sym_edit_comment_token1] = ACTIONS(4835), - [anon_sym_CARET_LBRACK] = ACTIONS(4835), - [anon_sym_LBRACK_CARET] = ACTIONS(4835), - [sym_uri_autolink] = ACTIONS(4835), - [sym_email_autolink] = ACTIONS(4835), - [sym__whitespace_ge_2] = ACTIONS(4835), - [aux_sym__whitespace_token1] = ACTIONS(4837), - [sym__word_no_digit] = ACTIONS(4835), - [sym__digits] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [sym__code_span_start] = ACTIONS(4835), - [sym__emphasis_open_star] = ACTIONS(4835), - [sym__emphasis_open_underscore] = ACTIONS(4835), - [sym__last_token_punctuation] = ACTIONS(4861), - [sym__strikeout_open] = ACTIONS(4835), - [sym__strikeout_close] = ACTIONS(4835), - [sym__latex_span_start] = ACTIONS(4835), - [sym__single_quote_open] = ACTIONS(4835), - [sym__double_quote_open] = ACTIONS(4835), - [sym__superscript_open] = ACTIONS(4835), - [sym__subscript_open] = ACTIONS(4835), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4835), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4835), - [sym__cite_author_in_text] = ACTIONS(4835), - [sym__cite_suppress_author] = ACTIONS(4835), - [sym__shortcode_open_escaped] = ACTIONS(4835), - [sym__shortcode_open] = ACTIONS(4835), - [sym__unclosed_span] = ACTIONS(4835), - [sym__strong_emphasis_open_star] = ACTIONS(4835), - [sym__strong_emphasis_open_underscore] = ACTIONS(4835), + [sym__backslash_escape] = ACTIONS(4373), + [sym_entity_reference] = ACTIONS(4373), + [sym_numeric_character_reference] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_BSLASH] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_PIPE] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [sym__newline_token] = ACTIONS(4373), + [aux_sym_insert_token1] = ACTIONS(4373), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4373), + [aux_sym_edit_comment_token1] = ACTIONS(4373), + [anon_sym_CARET_LBRACK] = ACTIONS(4373), + [anon_sym_LBRACK_CARET] = ACTIONS(4373), + [sym_uri_autolink] = ACTIONS(4373), + [sym_email_autolink] = ACTIONS(4373), + [sym__whitespace_ge_2] = ACTIONS(4373), + [aux_sym__whitespace_token1] = ACTIONS(4375), + [sym__word_no_digit] = ACTIONS(4373), + [sym__digits] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [sym__code_span_start] = ACTIONS(4373), + [sym__emphasis_open_star] = ACTIONS(4373), + [sym__emphasis_open_underscore] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4415), + [sym__strikeout_open] = ACTIONS(4373), + [sym__latex_span_start] = ACTIONS(4373), + [sym__single_quote_open] = ACTIONS(4373), + [sym__double_quote_open] = ACTIONS(4373), + [sym__superscript_open] = ACTIONS(4373), + [sym__subscript_open] = ACTIONS(4373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4373), + [sym__cite_author_in_text] = ACTIONS(4373), + [sym__cite_suppress_author] = ACTIONS(4373), + [sym__shortcode_open_escaped] = ACTIONS(4373), + [sym__shortcode_open] = ACTIONS(4373), + [sym__unclosed_span] = ACTIONS(4373), + [sym__strong_emphasis_open_star] = ACTIONS(4373), + [sym__strong_emphasis_open_underscore] = ACTIONS(4373), + [sym__strong_emphasis_close_underscore] = ACTIONS(4373), }, [STATE(740)] = { - [sym__backslash_escape] = ACTIONS(4827), - [sym_entity_reference] = ACTIONS(4827), - [sym_numeric_character_reference] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_BSLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__newline_token] = ACTIONS(4827), - [aux_sym_insert_token1] = ACTIONS(4827), - [aux_sym_delete_token1] = ACTIONS(4827), - [aux_sym_highlight_token1] = ACTIONS(4827), - [aux_sym_edit_comment_token1] = ACTIONS(4827), - [anon_sym_CARET_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACK_CARET] = ACTIONS(4827), - [sym_uri_autolink] = ACTIONS(4827), - [sym_email_autolink] = ACTIONS(4827), - [sym__whitespace_ge_2] = ACTIONS(4827), - [aux_sym__whitespace_token1] = ACTIONS(4829), - [sym__word_no_digit] = ACTIONS(4827), - [sym__digits] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4827), - [sym__code_span_start] = ACTIONS(4827), - [sym__emphasis_open_star] = ACTIONS(4827), - [sym__emphasis_open_underscore] = ACTIONS(4827), - [sym__last_token_punctuation] = ACTIONS(4863), - [sym__strikeout_open] = ACTIONS(4827), - [sym__latex_span_start] = ACTIONS(4827), - [sym__single_quote_open] = ACTIONS(4827), - [sym__single_quote_close] = ACTIONS(4827), - [sym__double_quote_open] = ACTIONS(4827), - [sym__superscript_open] = ACTIONS(4827), - [sym__subscript_open] = ACTIONS(4827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4827), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4827), - [sym__cite_author_in_text] = ACTIONS(4827), - [sym__cite_suppress_author] = ACTIONS(4827), - [sym__shortcode_open_escaped] = ACTIONS(4827), - [sym__shortcode_open] = ACTIONS(4827), - [sym__unclosed_span] = ACTIONS(4827), - [sym__strong_emphasis_open_star] = ACTIONS(4827), - [sym__strong_emphasis_open_underscore] = ACTIONS(4827), + [sym__backslash_escape] = ACTIONS(4379), + [sym_entity_reference] = ACTIONS(4379), + [sym_numeric_character_reference] = ACTIONS(4379), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_COMMA] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_PIPE] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_RPAREN] = ACTIONS(4379), + [sym__newline_token] = ACTIONS(4379), + [aux_sym_insert_token1] = ACTIONS(4379), + [aux_sym_delete_token1] = ACTIONS(4379), + [aux_sym_highlight_token1] = ACTIONS(4379), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4379), + [anon_sym_LBRACK_CARET] = ACTIONS(4379), + [sym_uri_autolink] = ACTIONS(4379), + [sym_email_autolink] = ACTIONS(4379), + [sym__whitespace_ge_2] = ACTIONS(4379), + [aux_sym__whitespace_token1] = ACTIONS(4381), + [sym__word_no_digit] = ACTIONS(4379), + [sym__digits] = ACTIONS(4379), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4379), + [sym__code_span_start] = ACTIONS(4379), + [sym__emphasis_open_star] = ACTIONS(4379), + [sym__emphasis_open_underscore] = ACTIONS(4379), + [sym__last_token_punctuation] = ACTIONS(4417), + [sym__strikeout_open] = ACTIONS(4379), + [sym__latex_span_start] = ACTIONS(4379), + [sym__single_quote_open] = ACTIONS(4379), + [sym__double_quote_open] = ACTIONS(4379), + [sym__superscript_open] = ACTIONS(4379), + [sym__subscript_open] = ACTIONS(4379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4379), + [sym__cite_author_in_text] = ACTIONS(4379), + [sym__cite_suppress_author] = ACTIONS(4379), + [sym__shortcode_open_escaped] = ACTIONS(4379), + [sym__shortcode_open] = ACTIONS(4379), + [sym__unclosed_span] = ACTIONS(4379), + [sym__strong_emphasis_open_star] = ACTIONS(4379), + [sym__strong_emphasis_open_underscore] = ACTIONS(4379), + [sym__strong_emphasis_close_underscore] = ACTIONS(4379), }, [STATE(741)] = { - [sym__backslash_escape] = ACTIONS(4827), - [sym_entity_reference] = ACTIONS(4827), - [sym_numeric_character_reference] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_BSLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__newline_token] = ACTIONS(4827), - [aux_sym_insert_token1] = ACTIONS(4827), - [aux_sym_delete_token1] = ACTIONS(4827), - [aux_sym_highlight_token1] = ACTIONS(4827), - [aux_sym_edit_comment_token1] = ACTIONS(4827), - [anon_sym_CARET_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACK_CARET] = ACTIONS(4827), - [sym_uri_autolink] = ACTIONS(4827), - [sym_email_autolink] = ACTIONS(4827), - [sym__whitespace_ge_2] = ACTIONS(4827), - [aux_sym__whitespace_token1] = ACTIONS(4829), - [sym__word_no_digit] = ACTIONS(4827), - [sym__digits] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4827), - [sym__code_span_start] = ACTIONS(4827), - [sym__emphasis_open_star] = ACTIONS(4827), - [sym__emphasis_open_underscore] = ACTIONS(4827), - [sym__last_token_punctuation] = ACTIONS(4865), - [sym__strikeout_open] = ACTIONS(4827), - [sym__latex_span_start] = ACTIONS(4827), - [sym__single_quote_open] = ACTIONS(4827), - [sym__double_quote_open] = ACTIONS(4827), - [sym__superscript_open] = ACTIONS(4827), - [sym__subscript_open] = ACTIONS(4827), - [sym__subscript_close] = ACTIONS(4827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4827), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4827), - [sym__cite_author_in_text] = ACTIONS(4827), - [sym__cite_suppress_author] = ACTIONS(4827), - [sym__shortcode_open_escaped] = ACTIONS(4827), - [sym__shortcode_open] = ACTIONS(4827), - [sym__unclosed_span] = ACTIONS(4827), - [sym__strong_emphasis_open_star] = ACTIONS(4827), - [sym__strong_emphasis_open_underscore] = ACTIONS(4827), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_RBRACK] = ACTIONS(4303), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4351), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(742)] = { - [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_STAR] = 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(4809), - [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__last_token_punctuation] = ACTIONS(4779), - [sym__strikeout_open] = ACTIONS(4747), - [sym__strikeout_close] = 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), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_RBRACK] = ACTIONS(4303), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4351), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(743)] = { - [sym__backslash_escape] = ACTIONS(4835), - [sym_entity_reference] = ACTIONS(4835), - [sym_numeric_character_reference] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4835), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_BSLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4835), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__newline_token] = ACTIONS(4835), - [aux_sym_insert_token1] = ACTIONS(4835), - [aux_sym_delete_token1] = ACTIONS(4835), - [aux_sym_highlight_token1] = ACTIONS(4835), - [aux_sym_edit_comment_token1] = ACTIONS(4835), - [anon_sym_CARET_LBRACK] = ACTIONS(4835), - [anon_sym_LBRACK_CARET] = ACTIONS(4835), - [sym_uri_autolink] = ACTIONS(4835), - [sym_email_autolink] = ACTIONS(4835), - [sym__whitespace_ge_2] = ACTIONS(4835), - [aux_sym__whitespace_token1] = ACTIONS(4837), - [sym__word_no_digit] = ACTIONS(4835), - [sym__digits] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [sym__code_span_start] = ACTIONS(4835), - [sym__emphasis_open_star] = ACTIONS(4835), - [sym__emphasis_open_underscore] = ACTIONS(4835), - [sym__emphasis_close_underscore] = ACTIONS(4835), - [sym__last_token_punctuation] = ACTIONS(4867), - [sym__strikeout_open] = ACTIONS(4835), - [sym__latex_span_start] = ACTIONS(4835), - [sym__single_quote_open] = ACTIONS(4835), - [sym__double_quote_open] = ACTIONS(4835), - [sym__superscript_open] = ACTIONS(4835), - [sym__subscript_open] = ACTIONS(4835), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4835), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4835), - [sym__cite_author_in_text] = ACTIONS(4835), - [sym__cite_suppress_author] = ACTIONS(4835), - [sym__shortcode_open_escaped] = ACTIONS(4835), - [sym__shortcode_open] = ACTIONS(4835), - [sym__unclosed_span] = ACTIONS(4835), - [sym__strong_emphasis_open_star] = ACTIONS(4835), - [sym__strong_emphasis_open_underscore] = ACTIONS(4835), + [sym__backslash_escape] = ACTIONS(4355), + [sym_entity_reference] = ACTIONS(4355), + [sym_numeric_character_reference] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4357), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_BSLASH] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4355), + [aux_sym_insert_token1] = ACTIONS(4355), + [aux_sym_delete_token1] = ACTIONS(4355), + [aux_sym_highlight_token1] = ACTIONS(4355), + [aux_sym_edit_comment_token1] = ACTIONS(4355), + [anon_sym_CARET_LBRACK] = ACTIONS(4355), + [anon_sym_LBRACK_CARET] = ACTIONS(4355), + [sym_uri_autolink] = ACTIONS(4355), + [sym_email_autolink] = ACTIONS(4355), + [sym__whitespace_ge_2] = ACTIONS(4355), + [aux_sym__whitespace_token1] = ACTIONS(4357), + [sym__word_no_digit] = ACTIONS(4355), + [sym__digits] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [sym__code_span_start] = ACTIONS(4355), + [sym__emphasis_open_star] = ACTIONS(4355), + [sym__emphasis_open_underscore] = ACTIONS(4355), + [sym__last_token_whitespace] = ACTIONS(4419), + [sym__strikeout_open] = ACTIONS(4355), + [sym__latex_span_start] = ACTIONS(4355), + [sym__single_quote_open] = ACTIONS(4355), + [sym__double_quote_open] = ACTIONS(4355), + [sym__superscript_open] = ACTIONS(4355), + [sym__subscript_open] = ACTIONS(4355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4355), + [sym__cite_author_in_text] = ACTIONS(4355), + [sym__cite_suppress_author] = ACTIONS(4355), + [sym__shortcode_open_escaped] = ACTIONS(4355), + [sym__shortcode_open] = ACTIONS(4355), + [sym__unclosed_span] = ACTIONS(4355), + [sym__strong_emphasis_open_star] = ACTIONS(4355), + [sym__strong_emphasis_close_star] = ACTIONS(4355), + [sym__strong_emphasis_open_underscore] = ACTIONS(4355), }, [STATE(744)] = { - [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_STAR] = 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(4809), - [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_insert_token2] = 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(4749), - [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__last_token_punctuation] = ACTIONS(4775), - [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), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(4297), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4337), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_close_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(745)] = { - [sym__backslash_escape] = ACTIONS(4815), - [sym_entity_reference] = ACTIONS(4815), - [sym_numeric_character_reference] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4815), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BSLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_TILDE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__newline_token] = ACTIONS(4815), - [aux_sym_insert_token1] = ACTIONS(4815), - [aux_sym_delete_token1] = ACTIONS(4815), - [aux_sym_highlight_token1] = ACTIONS(4815), - [aux_sym_edit_comment_token1] = ACTIONS(4815), - [anon_sym_CARET_LBRACK] = ACTIONS(4815), - [anon_sym_LBRACK_CARET] = ACTIONS(4815), - [sym_uri_autolink] = ACTIONS(4815), - [sym_email_autolink] = ACTIONS(4815), - [sym__whitespace_ge_2] = ACTIONS(4815), - [aux_sym__whitespace_token1] = ACTIONS(4817), - [sym__word_no_digit] = ACTIONS(4815), - [sym__digits] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [sym__code_span_start] = ACTIONS(4815), - [sym__emphasis_open_star] = ACTIONS(4815), - [sym__emphasis_open_underscore] = ACTIONS(4815), - [sym__emphasis_close_star] = ACTIONS(4815), - [sym__last_token_whitespace] = ACTIONS(4869), - [sym__strikeout_open] = ACTIONS(4815), - [sym__latex_span_start] = ACTIONS(4815), - [sym__single_quote_open] = ACTIONS(4815), - [sym__double_quote_open] = ACTIONS(4815), - [sym__superscript_open] = ACTIONS(4815), - [sym__subscript_open] = ACTIONS(4815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4815), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4815), - [sym__cite_author_in_text] = ACTIONS(4815), - [sym__cite_suppress_author] = ACTIONS(4815), - [sym__shortcode_open_escaped] = ACTIONS(4815), - [sym__shortcode_open] = ACTIONS(4815), - [sym__unclosed_span] = ACTIONS(4815), - [sym__strong_emphasis_open_star] = ACTIONS(4815), - [sym__strong_emphasis_open_underscore] = ACTIONS(4815), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__emphasis_close_star] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4421), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(746)] = { - [sym__backslash_escape] = ACTIONS(4815), - [sym_entity_reference] = ACTIONS(4815), - [sym_numeric_character_reference] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4815), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BSLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_TILDE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__newline_token] = ACTIONS(4815), - [aux_sym_insert_token1] = ACTIONS(4815), - [aux_sym_delete_token1] = ACTIONS(4815), - [aux_sym_highlight_token1] = ACTIONS(4815), - [aux_sym_edit_comment_token1] = ACTIONS(4815), - [anon_sym_CARET_LBRACK] = ACTIONS(4815), - [anon_sym_LBRACK_CARET] = ACTIONS(4815), - [sym_uri_autolink] = ACTIONS(4815), - [sym_email_autolink] = ACTIONS(4815), - [sym__whitespace_ge_2] = ACTIONS(4815), - [aux_sym__whitespace_token1] = ACTIONS(4817), - [sym__word_no_digit] = ACTIONS(4815), - [sym__digits] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [sym__code_span_start] = ACTIONS(4815), - [sym__emphasis_open_star] = ACTIONS(4815), - [sym__emphasis_open_underscore] = ACTIONS(4815), - [sym__last_token_whitespace] = ACTIONS(4871), - [sym__strikeout_open] = ACTIONS(4815), - [sym__latex_span_start] = ACTIONS(4815), - [sym__single_quote_open] = ACTIONS(4815), - [sym__double_quote_open] = ACTIONS(4815), - [sym__superscript_open] = ACTIONS(4815), - [sym__subscript_open] = ACTIONS(4815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4815), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4815), - [sym__cite_author_in_text] = ACTIONS(4815), - [sym__cite_suppress_author] = ACTIONS(4815), - [sym__shortcode_open_escaped] = ACTIONS(4815), - [sym__shortcode_open] = ACTIONS(4815), - [sym__unclosed_span] = ACTIONS(4815), - [sym__strong_emphasis_open_star] = ACTIONS(4815), - [sym__strong_emphasis_open_underscore] = ACTIONS(4815), - [sym__strong_emphasis_close_underscore] = ACTIONS(4815), + [sym__backslash_escape] = ACTIONS(4373), + [sym_entity_reference] = ACTIONS(4373), + [sym_numeric_character_reference] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_BSLASH] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_PIPE] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [sym__newline_token] = ACTIONS(4373), + [aux_sym_insert_token1] = ACTIONS(4373), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4373), + [aux_sym_edit_comment_token1] = ACTIONS(4373), + [anon_sym_CARET_LBRACK] = ACTIONS(4373), + [anon_sym_LBRACK_CARET] = ACTIONS(4373), + [sym_uri_autolink] = ACTIONS(4373), + [sym_email_autolink] = ACTIONS(4373), + [sym__whitespace_ge_2] = ACTIONS(4373), + [aux_sym__whitespace_token1] = ACTIONS(4375), + [sym__word_no_digit] = ACTIONS(4373), + [sym__digits] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [sym__code_span_start] = ACTIONS(4373), + [sym__emphasis_open_star] = ACTIONS(4373), + [sym__emphasis_open_underscore] = ACTIONS(4373), + [sym__emphasis_close_star] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4423), + [sym__strikeout_open] = ACTIONS(4373), + [sym__latex_span_start] = ACTIONS(4373), + [sym__single_quote_open] = ACTIONS(4373), + [sym__double_quote_open] = ACTIONS(4373), + [sym__superscript_open] = ACTIONS(4373), + [sym__subscript_open] = ACTIONS(4373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4373), + [sym__cite_author_in_text] = ACTIONS(4373), + [sym__cite_suppress_author] = ACTIONS(4373), + [sym__shortcode_open_escaped] = ACTIONS(4373), + [sym__shortcode_open] = ACTIONS(4373), + [sym__unclosed_span] = ACTIONS(4373), + [sym__strong_emphasis_open_star] = ACTIONS(4373), + [sym__strong_emphasis_open_underscore] = ACTIONS(4373), }, [STATE(747)] = { - [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_STAR] = 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(4809), - [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__last_token_punctuation] = ACTIONS(4751), - [sym__strikeout_open] = ACTIONS(4747), - [sym__latex_span_start] = ACTIONS(4747), - [sym__single_quote_open] = ACTIONS(4747), - [sym__double_quote_open] = ACTIONS(4747), - [sym__double_quote_close] = 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), + [sym__backslash_escape] = ACTIONS(4361), + [sym_entity_reference] = ACTIONS(4361), + [sym_numeric_character_reference] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_BSLASH] = ACTIONS(4363), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [sym__newline_token] = ACTIONS(4361), + [aux_sym_insert_token1] = ACTIONS(4361), + [aux_sym_delete_token1] = ACTIONS(4361), + [aux_sym_highlight_token1] = ACTIONS(4361), + [aux_sym_edit_comment_token1] = ACTIONS(4361), + [anon_sym_CARET_LBRACK] = ACTIONS(4361), + [anon_sym_LBRACK_CARET] = ACTIONS(4361), + [sym_uri_autolink] = ACTIONS(4361), + [sym_email_autolink] = ACTIONS(4361), + [sym__whitespace_ge_2] = ACTIONS(4361), + [aux_sym__whitespace_token1] = ACTIONS(4363), + [sym__word_no_digit] = ACTIONS(4361), + [sym__digits] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4363), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4361), + [sym__code_span_start] = ACTIONS(4361), + [sym__emphasis_open_star] = ACTIONS(4361), + [sym__emphasis_open_underscore] = ACTIONS(4361), + [sym__last_token_punctuation] = ACTIONS(4425), + [sym__strikeout_open] = ACTIONS(4361), + [sym__latex_span_start] = ACTIONS(4361), + [sym__single_quote_open] = ACTIONS(4361), + [sym__double_quote_open] = ACTIONS(4361), + [sym__superscript_open] = ACTIONS(4361), + [sym__subscript_open] = ACTIONS(4361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4361), + [sym__cite_author_in_text] = ACTIONS(4361), + [sym__cite_suppress_author] = ACTIONS(4361), + [sym__shortcode_open_escaped] = ACTIONS(4361), + [sym__shortcode_open] = ACTIONS(4361), + [sym__unclosed_span] = ACTIONS(4361), + [sym__strong_emphasis_open_star] = ACTIONS(4361), + [sym__strong_emphasis_open_underscore] = ACTIONS(4361), }, [STATE(748)] = { - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(4741), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4757), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), - [sym__strong_emphasis_close_underscore] = ACTIONS(4741), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_RBRACK] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4427), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(749)] = { - [sym__backslash_escape] = ACTIONS(4827), - [sym_entity_reference] = ACTIONS(4827), - [sym_numeric_character_reference] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_BSLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__newline_token] = ACTIONS(4827), - [aux_sym_insert_token1] = ACTIONS(4827), - [aux_sym_delete_token1] = ACTIONS(4827), - [aux_sym_highlight_token1] = ACTIONS(4827), - [aux_sym_edit_comment_token1] = ACTIONS(4827), - [anon_sym_CARET_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACK_CARET] = ACTIONS(4827), - [sym_uri_autolink] = ACTIONS(4827), - [sym_email_autolink] = ACTIONS(4827), - [sym__whitespace_ge_2] = ACTIONS(4827), - [aux_sym__whitespace_token1] = ACTIONS(4829), - [sym__word_no_digit] = ACTIONS(4827), - [sym__digits] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4827), - [sym__code_span_start] = ACTIONS(4827), - [sym__emphasis_open_star] = ACTIONS(4827), - [sym__emphasis_open_underscore] = ACTIONS(4827), - [sym__last_token_punctuation] = ACTIONS(4873), - [sym__strikeout_open] = ACTIONS(4827), - [sym__strikeout_close] = ACTIONS(4827), - [sym__latex_span_start] = ACTIONS(4827), - [sym__single_quote_open] = ACTIONS(4827), - [sym__double_quote_open] = ACTIONS(4827), - [sym__superscript_open] = ACTIONS(4827), - [sym__subscript_open] = ACTIONS(4827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4827), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4827), - [sym__cite_author_in_text] = ACTIONS(4827), - [sym__cite_suppress_author] = ACTIONS(4827), - [sym__shortcode_open_escaped] = ACTIONS(4827), - [sym__shortcode_open] = ACTIONS(4827), - [sym__unclosed_span] = ACTIONS(4827), - [sym__strong_emphasis_open_star] = ACTIONS(4827), - [sym__strong_emphasis_open_underscore] = ACTIONS(4827), + [sym__backslash_escape] = ACTIONS(4373), + [sym_entity_reference] = ACTIONS(4373), + [sym_numeric_character_reference] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_BSLASH] = ACTIONS(4375), + [anon_sym_RBRACK] = ACTIONS(4373), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_PIPE] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [sym__newline_token] = ACTIONS(4373), + [aux_sym_insert_token1] = ACTIONS(4373), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4373), + [aux_sym_edit_comment_token1] = ACTIONS(4373), + [anon_sym_CARET_LBRACK] = ACTIONS(4373), + [anon_sym_LBRACK_CARET] = ACTIONS(4373), + [sym_uri_autolink] = ACTIONS(4373), + [sym_email_autolink] = ACTIONS(4373), + [sym__whitespace_ge_2] = ACTIONS(4373), + [aux_sym__whitespace_token1] = ACTIONS(4375), + [sym__word_no_digit] = ACTIONS(4373), + [sym__digits] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [sym__code_span_start] = ACTIONS(4373), + [sym__emphasis_open_star] = ACTIONS(4373), + [sym__emphasis_open_underscore] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4429), + [sym__strikeout_open] = ACTIONS(4373), + [sym__latex_span_start] = ACTIONS(4373), + [sym__single_quote_open] = ACTIONS(4373), + [sym__double_quote_open] = ACTIONS(4373), + [sym__superscript_open] = ACTIONS(4373), + [sym__subscript_open] = ACTIONS(4373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4373), + [sym__cite_author_in_text] = ACTIONS(4373), + [sym__cite_suppress_author] = ACTIONS(4373), + [sym__shortcode_open_escaped] = ACTIONS(4373), + [sym__shortcode_open] = ACTIONS(4373), + [sym__unclosed_span] = ACTIONS(4373), + [sym__strong_emphasis_open_star] = ACTIONS(4373), + [sym__strong_emphasis_open_underscore] = ACTIONS(4373), }, [STATE(750)] = { - [ts_builtin_sym_end] = ACTIONS(4827), - [sym__backslash_escape] = ACTIONS(4827), - [sym_entity_reference] = ACTIONS(4827), - [sym_numeric_character_reference] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_BSLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__newline_token] = ACTIONS(4827), - [aux_sym_insert_token1] = ACTIONS(4827), - [aux_sym_delete_token1] = ACTIONS(4827), - [aux_sym_highlight_token1] = ACTIONS(4827), - [aux_sym_edit_comment_token1] = ACTIONS(4827), - [anon_sym_CARET_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACK_CARET] = ACTIONS(4827), - [sym_uri_autolink] = ACTIONS(4827), - [sym_email_autolink] = ACTIONS(4827), - [sym__whitespace_ge_2] = ACTIONS(4827), - [aux_sym__whitespace_token1] = ACTIONS(4829), - [sym__word_no_digit] = ACTIONS(4827), - [sym__digits] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4827), - [sym__code_span_start] = ACTIONS(4827), - [sym__emphasis_open_star] = ACTIONS(4827), - [sym__emphasis_open_underscore] = ACTIONS(4827), - [sym__last_token_punctuation] = ACTIONS(4875), - [sym__strikeout_open] = ACTIONS(4827), - [sym__latex_span_start] = ACTIONS(4827), - [sym__single_quote_open] = ACTIONS(4827), - [sym__double_quote_open] = ACTIONS(4827), - [sym__superscript_open] = ACTIONS(4827), - [sym__subscript_open] = ACTIONS(4827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4827), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4827), - [sym__cite_author_in_text] = ACTIONS(4827), - [sym__cite_suppress_author] = ACTIONS(4827), - [sym__shortcode_open_escaped] = ACTIONS(4827), - [sym__shortcode_open] = ACTIONS(4827), - [sym__unclosed_span] = ACTIONS(4827), - [sym__strong_emphasis_open_star] = ACTIONS(4827), - [sym__strong_emphasis_open_underscore] = ACTIONS(4827), + [sym__backslash_escape] = ACTIONS(4379), + [sym_entity_reference] = ACTIONS(4379), + [sym_numeric_character_reference] = ACTIONS(4379), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_COMMA] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(4381), + [anon_sym_RBRACK] = ACTIONS(4379), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_PIPE] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_RPAREN] = ACTIONS(4379), + [sym__newline_token] = ACTIONS(4379), + [aux_sym_insert_token1] = ACTIONS(4379), + [aux_sym_delete_token1] = ACTIONS(4379), + [aux_sym_highlight_token1] = ACTIONS(4379), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4379), + [anon_sym_LBRACK_CARET] = ACTIONS(4379), + [sym_uri_autolink] = ACTIONS(4379), + [sym_email_autolink] = ACTIONS(4379), + [sym__whitespace_ge_2] = ACTIONS(4379), + [aux_sym__whitespace_token1] = ACTIONS(4381), + [sym__word_no_digit] = ACTIONS(4379), + [sym__digits] = ACTIONS(4379), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4379), + [sym__code_span_start] = ACTIONS(4379), + [sym__emphasis_open_star] = ACTIONS(4379), + [sym__emphasis_open_underscore] = ACTIONS(4379), + [sym__last_token_punctuation] = ACTIONS(4431), + [sym__strikeout_open] = ACTIONS(4379), + [sym__latex_span_start] = ACTIONS(4379), + [sym__single_quote_open] = ACTIONS(4379), + [sym__double_quote_open] = ACTIONS(4379), + [sym__superscript_open] = ACTIONS(4379), + [sym__subscript_open] = ACTIONS(4379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4379), + [sym__cite_author_in_text] = ACTIONS(4379), + [sym__cite_suppress_author] = ACTIONS(4379), + [sym__shortcode_open_escaped] = ACTIONS(4379), + [sym__shortcode_open] = ACTIONS(4379), + [sym__unclosed_span] = ACTIONS(4379), + [sym__strong_emphasis_open_star] = ACTIONS(4379), + [sym__strong_emphasis_open_underscore] = ACTIONS(4379), }, [STATE(751)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__last_token_punctuation] = ACTIONS(4877), - [sym__strikeout_open] = ACTIONS(4797), - [sym__strikeout_close] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4379), + [sym_entity_reference] = ACTIONS(4379), + [sym_numeric_character_reference] = ACTIONS(4379), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_COMMA] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_PIPE] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_RPAREN] = ACTIONS(4379), + [sym__newline_token] = ACTIONS(4379), + [aux_sym_insert_token1] = ACTIONS(4379), + [aux_sym_delete_token1] = ACTIONS(4379), + [aux_sym_highlight_token1] = ACTIONS(4379), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4379), + [anon_sym_LBRACK_CARET] = ACTIONS(4379), + [sym_uri_autolink] = ACTIONS(4379), + [sym_email_autolink] = ACTIONS(4379), + [sym__whitespace_ge_2] = ACTIONS(4379), + [aux_sym__whitespace_token1] = ACTIONS(4381), + [sym__word_no_digit] = ACTIONS(4379), + [sym__digits] = ACTIONS(4379), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4379), + [sym__code_span_start] = ACTIONS(4379), + [sym__emphasis_open_star] = ACTIONS(4379), + [sym__emphasis_open_underscore] = ACTIONS(4379), + [sym__emphasis_close_star] = ACTIONS(4379), + [sym__last_token_punctuation] = ACTIONS(4433), + [sym__strikeout_open] = ACTIONS(4379), + [sym__latex_span_start] = ACTIONS(4379), + [sym__single_quote_open] = ACTIONS(4379), + [sym__double_quote_open] = ACTIONS(4379), + [sym__superscript_open] = ACTIONS(4379), + [sym__subscript_open] = ACTIONS(4379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4379), + [sym__cite_author_in_text] = ACTIONS(4379), + [sym__cite_suppress_author] = ACTIONS(4379), + [sym__shortcode_open_escaped] = ACTIONS(4379), + [sym__shortcode_open] = ACTIONS(4379), + [sym__unclosed_span] = ACTIONS(4379), + [sym__strong_emphasis_open_star] = ACTIONS(4379), + [sym__strong_emphasis_open_underscore] = ACTIONS(4379), }, [STATE(752)] = { - [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_STAR] = 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__last_token_punctuation] = ACTIONS(4763), - [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), + [sym__backslash_escape] = ACTIONS(4379), + [sym_entity_reference] = ACTIONS(4379), + [sym_numeric_character_reference] = ACTIONS(4379), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_COMMA] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_PIPE] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_RPAREN] = ACTIONS(4379), + [sym__newline_token] = ACTIONS(4379), + [aux_sym_insert_token1] = ACTIONS(4379), + [aux_sym_delete_token1] = ACTIONS(4379), + [aux_sym_highlight_token1] = ACTIONS(4379), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4379), + [anon_sym_LBRACK_CARET] = ACTIONS(4379), + [sym_uri_autolink] = ACTIONS(4379), + [sym_email_autolink] = ACTIONS(4379), + [sym__whitespace_ge_2] = ACTIONS(4379), + [aux_sym__whitespace_token1] = ACTIONS(4381), + [sym__word_no_digit] = ACTIONS(4379), + [sym__digits] = ACTIONS(4379), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4379), + [sym__code_span_start] = ACTIONS(4379), + [sym__emphasis_open_star] = ACTIONS(4379), + [sym__emphasis_open_underscore] = ACTIONS(4379), + [sym__last_token_punctuation] = ACTIONS(4435), + [sym__strikeout_open] = ACTIONS(4379), + [sym__latex_span_start] = ACTIONS(4379), + [sym__single_quote_open] = ACTIONS(4379), + [sym__double_quote_open] = ACTIONS(4379), + [sym__double_quote_close] = ACTIONS(4379), + [sym__superscript_open] = ACTIONS(4379), + [sym__subscript_open] = ACTIONS(4379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4379), + [sym__cite_author_in_text] = ACTIONS(4379), + [sym__cite_suppress_author] = ACTIONS(4379), + [sym__shortcode_open_escaped] = ACTIONS(4379), + [sym__shortcode_open] = ACTIONS(4379), + [sym__unclosed_span] = ACTIONS(4379), + [sym__strong_emphasis_open_star] = ACTIONS(4379), + [sym__strong_emphasis_open_underscore] = ACTIONS(4379), }, [STATE(753)] = { - [sym__backslash_escape] = ACTIONS(4803), - [sym_entity_reference] = ACTIONS(4803), - [sym_numeric_character_reference] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4803), - [anon_sym_BANG] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4803), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR] = ACTIONS(4803), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4803), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4805), - [anon_sym_BSLASH] = ACTIONS(4805), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LBRACE] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4803), - [anon_sym_TILDE] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [sym__newline_token] = ACTIONS(4803), - [aux_sym_insert_token1] = ACTIONS(4803), - [aux_sym_delete_token1] = ACTIONS(4803), - [aux_sym_highlight_token1] = ACTIONS(4803), - [aux_sym_edit_comment_token1] = ACTIONS(4803), - [anon_sym_CARET_LBRACK] = ACTIONS(4803), - [anon_sym_LBRACK_CARET] = ACTIONS(4803), - [sym_uri_autolink] = ACTIONS(4803), - [sym_email_autolink] = ACTIONS(4803), - [sym__whitespace_ge_2] = ACTIONS(4803), - [aux_sym__whitespace_token1] = ACTIONS(4805), - [sym__word_no_digit] = ACTIONS(4803), - [sym__digits] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4805), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), - [sym__code_span_start] = ACTIONS(4803), - [sym__emphasis_open_star] = ACTIONS(4803), - [sym__emphasis_open_underscore] = ACTIONS(4803), - [sym__last_token_punctuation] = ACTIONS(4879), - [sym__strikeout_open] = ACTIONS(4803), - [sym__strikeout_close] = ACTIONS(4803), - [sym__latex_span_start] = ACTIONS(4803), - [sym__single_quote_open] = ACTIONS(4803), - [sym__double_quote_open] = ACTIONS(4803), - [sym__superscript_open] = ACTIONS(4803), - [sym__subscript_open] = ACTIONS(4803), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4803), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4803), - [sym__cite_author_in_text] = ACTIONS(4803), - [sym__cite_suppress_author] = ACTIONS(4803), - [sym__shortcode_open_escaped] = ACTIONS(4803), - [sym__shortcode_open] = ACTIONS(4803), - [sym__unclosed_span] = ACTIONS(4803), - [sym__strong_emphasis_open_star] = ACTIONS(4803), - [sym__strong_emphasis_open_underscore] = ACTIONS(4803), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_insert_token2] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4305), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4319), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(754)] = { - [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_STAR] = 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__last_token_punctuation] = ACTIONS(4781), - [sym__strikeout_open] = ACTIONS(4747), - [sym__latex_span_start] = ACTIONS(4747), - [sym__single_quote_open] = ACTIONS(4747), - [sym__single_quote_close] = 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), + [sym__backslash_escape] = ACTIONS(4355), + [sym_entity_reference] = ACTIONS(4355), + [sym_numeric_character_reference] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4357), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_BSLASH] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4355), + [aux_sym_insert_token1] = ACTIONS(4355), + [aux_sym_delete_token1] = ACTIONS(4355), + [aux_sym_highlight_token1] = ACTIONS(4355), + [aux_sym_edit_comment_token1] = ACTIONS(4355), + [anon_sym_CARET_LBRACK] = ACTIONS(4355), + [anon_sym_LBRACK_CARET] = ACTIONS(4355), + [sym_uri_autolink] = ACTIONS(4355), + [sym_email_autolink] = ACTIONS(4355), + [sym__whitespace_ge_2] = ACTIONS(4355), + [aux_sym__whitespace_token1] = ACTIONS(4357), + [sym__word_no_digit] = ACTIONS(4355), + [sym__digits] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [sym__code_span_start] = ACTIONS(4355), + [sym__emphasis_open_star] = ACTIONS(4355), + [sym__emphasis_open_underscore] = ACTIONS(4355), + [sym__last_token_whitespace] = ACTIONS(4437), + [sym__strikeout_open] = ACTIONS(4355), + [sym__latex_span_start] = ACTIONS(4355), + [sym__single_quote_open] = ACTIONS(4355), + [sym__double_quote_open] = ACTIONS(4355), + [sym__superscript_open] = ACTIONS(4355), + [sym__subscript_open] = ACTIONS(4355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4355), + [sym__cite_author_in_text] = ACTIONS(4355), + [sym__cite_suppress_author] = ACTIONS(4355), + [sym__shortcode_open_escaped] = ACTIONS(4355), + [sym__shortcode_open] = ACTIONS(4355), + [sym__unclosed_span] = ACTIONS(4355), + [sym__strong_emphasis_open_star] = ACTIONS(4355), + [sym__strong_emphasis_open_underscore] = ACTIONS(4355), + [sym__strong_emphasis_close_underscore] = ACTIONS(4355), }, [STATE(755)] = { - [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_STAR] = 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(4809), - [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__last_token_punctuation] = ACTIONS(4781), - [sym__strikeout_open] = ACTIONS(4747), - [sym__latex_span_start] = ACTIONS(4747), - [sym__single_quote_open] = ACTIONS(4747), - [sym__single_quote_close] = 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), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(4297), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4345), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), + [sym__strong_emphasis_close_underscore] = ACTIONS(4297), }, [STATE(756)] = { - [sym__backslash_escape] = ACTIONS(4835), - [sym_entity_reference] = ACTIONS(4835), - [sym_numeric_character_reference] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4835), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_BSLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4835), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__newline_token] = ACTIONS(4835), - [aux_sym_insert_token1] = ACTIONS(4835), - [aux_sym_delete_token1] = ACTIONS(4835), - [aux_sym_highlight_token1] = ACTIONS(4835), - [aux_sym_edit_comment_token1] = ACTIONS(4835), - [anon_sym_CARET_LBRACK] = ACTIONS(4835), - [anon_sym_LBRACK_CARET] = ACTIONS(4835), - [sym_uri_autolink] = ACTIONS(4835), - [sym_email_autolink] = ACTIONS(4835), - [sym__whitespace_ge_2] = ACTIONS(4835), - [aux_sym__whitespace_token1] = ACTIONS(4837), - [sym__word_no_digit] = ACTIONS(4835), - [sym__digits] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [sym__code_span_start] = ACTIONS(4835), - [sym__emphasis_open_star] = ACTIONS(4835), - [sym__emphasis_open_underscore] = ACTIONS(4835), - [sym__last_token_punctuation] = ACTIONS(4881), - [sym__strikeout_open] = ACTIONS(4835), - [sym__latex_span_start] = ACTIONS(4835), - [sym__single_quote_open] = ACTIONS(4835), - [sym__double_quote_open] = ACTIONS(4835), - [sym__superscript_open] = ACTIONS(4835), - [sym__subscript_open] = ACTIONS(4835), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4835), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4835), - [sym__cite_author_in_text] = ACTIONS(4835), - [sym__cite_suppress_author] = ACTIONS(4835), - [sym__shortcode_open_escaped] = ACTIONS(4835), - [sym__shortcode_open] = ACTIONS(4835), - [sym__unclosed_span] = ACTIONS(4835), - [sym__strong_emphasis_open_star] = ACTIONS(4835), - [sym__strong_emphasis_open_underscore] = ACTIONS(4835), - [sym__strong_emphasis_close_underscore] = ACTIONS(4835), + [sym__backslash_escape] = ACTIONS(4361), + [sym_entity_reference] = ACTIONS(4361), + [sym_numeric_character_reference] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_BSLASH] = ACTIONS(4363), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [sym__newline_token] = ACTIONS(4361), + [aux_sym_insert_token1] = ACTIONS(4361), + [aux_sym_insert_token2] = ACTIONS(4361), + [aux_sym_delete_token1] = ACTIONS(4361), + [aux_sym_highlight_token1] = ACTIONS(4361), + [aux_sym_edit_comment_token1] = ACTIONS(4361), + [anon_sym_CARET_LBRACK] = ACTIONS(4361), + [anon_sym_LBRACK_CARET] = ACTIONS(4361), + [sym_uri_autolink] = ACTIONS(4361), + [sym_email_autolink] = ACTIONS(4361), + [sym__whitespace_ge_2] = ACTIONS(4363), + [aux_sym__whitespace_token1] = ACTIONS(4363), + [sym__word_no_digit] = ACTIONS(4361), + [sym__digits] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4363), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4361), + [sym__code_span_start] = ACTIONS(4361), + [sym__emphasis_open_star] = ACTIONS(4361), + [sym__emphasis_open_underscore] = ACTIONS(4361), + [sym__last_token_punctuation] = ACTIONS(4439), + [sym__strikeout_open] = ACTIONS(4361), + [sym__latex_span_start] = ACTIONS(4361), + [sym__single_quote_open] = ACTIONS(4361), + [sym__double_quote_open] = ACTIONS(4361), + [sym__superscript_open] = ACTIONS(4361), + [sym__subscript_open] = ACTIONS(4361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4361), + [sym__cite_author_in_text] = ACTIONS(4361), + [sym__cite_suppress_author] = ACTIONS(4361), + [sym__shortcode_open_escaped] = ACTIONS(4361), + [sym__shortcode_open] = ACTIONS(4361), + [sym__unclosed_span] = ACTIONS(4361), + [sym__strong_emphasis_open_star] = ACTIONS(4361), + [sym__strong_emphasis_open_underscore] = ACTIONS(4361), }, [STATE(757)] = { - [sym__backslash_escape] = ACTIONS(4835), - [sym_entity_reference] = ACTIONS(4835), - [sym_numeric_character_reference] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4835), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_BSLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4835), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__newline_token] = ACTIONS(4835), - [aux_sym_insert_token1] = ACTIONS(4835), - [aux_sym_insert_token2] = ACTIONS(4835), - [aux_sym_delete_token1] = ACTIONS(4835), - [aux_sym_highlight_token1] = ACTIONS(4835), - [aux_sym_edit_comment_token1] = ACTIONS(4835), - [anon_sym_CARET_LBRACK] = ACTIONS(4835), - [anon_sym_LBRACK_CARET] = ACTIONS(4835), - [sym_uri_autolink] = ACTIONS(4835), - [sym_email_autolink] = ACTIONS(4835), - [sym__whitespace_ge_2] = ACTIONS(4837), - [aux_sym__whitespace_token1] = ACTIONS(4837), - [sym__word_no_digit] = ACTIONS(4835), - [sym__digits] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [sym__code_span_start] = ACTIONS(4835), - [sym__emphasis_open_star] = ACTIONS(4835), - [sym__emphasis_open_underscore] = ACTIONS(4835), - [sym__last_token_punctuation] = ACTIONS(4883), - [sym__strikeout_open] = ACTIONS(4835), - [sym__latex_span_start] = ACTIONS(4835), - [sym__single_quote_open] = ACTIONS(4835), - [sym__double_quote_open] = ACTIONS(4835), - [sym__superscript_open] = ACTIONS(4835), - [sym__subscript_open] = ACTIONS(4835), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4835), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4835), - [sym__cite_author_in_text] = ACTIONS(4835), - [sym__cite_suppress_author] = ACTIONS(4835), - [sym__shortcode_open_escaped] = ACTIONS(4835), - [sym__shortcode_open] = ACTIONS(4835), - [sym__unclosed_span] = ACTIONS(4835), - [sym__strong_emphasis_open_star] = ACTIONS(4835), - [sym__strong_emphasis_open_underscore] = ACTIONS(4835), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_insert_token2] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4369), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4441), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(758)] = { - [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_STAR] = 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__last_token_punctuation] = ACTIONS(4787), - [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__superscript_close] = 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), + [sym__backslash_escape] = ACTIONS(4373), + [sym_entity_reference] = ACTIONS(4373), + [sym_numeric_character_reference] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_BSLASH] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_PIPE] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [sym__newline_token] = ACTIONS(4373), + [aux_sym_insert_token1] = ACTIONS(4373), + [aux_sym_insert_token2] = ACTIONS(4373), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4373), + [aux_sym_edit_comment_token1] = ACTIONS(4373), + [anon_sym_CARET_LBRACK] = ACTIONS(4373), + [anon_sym_LBRACK_CARET] = ACTIONS(4373), + [sym_uri_autolink] = ACTIONS(4373), + [sym_email_autolink] = ACTIONS(4373), + [sym__whitespace_ge_2] = ACTIONS(4375), + [aux_sym__whitespace_token1] = ACTIONS(4375), + [sym__word_no_digit] = ACTIONS(4373), + [sym__digits] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [sym__code_span_start] = ACTIONS(4373), + [sym__emphasis_open_star] = ACTIONS(4373), + [sym__emphasis_open_underscore] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4443), + [sym__strikeout_open] = ACTIONS(4373), + [sym__latex_span_start] = ACTIONS(4373), + [sym__single_quote_open] = ACTIONS(4373), + [sym__double_quote_open] = ACTIONS(4373), + [sym__superscript_open] = ACTIONS(4373), + [sym__subscript_open] = ACTIONS(4373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4373), + [sym__cite_author_in_text] = ACTIONS(4373), + [sym__cite_suppress_author] = ACTIONS(4373), + [sym__shortcode_open_escaped] = ACTIONS(4373), + [sym__shortcode_open] = ACTIONS(4373), + [sym__unclosed_span] = ACTIONS(4373), + [sym__strong_emphasis_open_star] = ACTIONS(4373), + [sym__strong_emphasis_open_underscore] = ACTIONS(4373), }, [STATE(759)] = { - [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_STAR] = 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__last_token_punctuation] = ACTIONS(4783), - [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_close_star] = ACTIONS(4747), - [sym__strong_emphasis_open_underscore] = ACTIONS(4747), + [sym__backslash_escape] = ACTIONS(4379), + [sym_entity_reference] = ACTIONS(4379), + [sym_numeric_character_reference] = ACTIONS(4379), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_COMMA] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_PIPE] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_RPAREN] = ACTIONS(4379), + [sym__newline_token] = ACTIONS(4379), + [aux_sym_insert_token1] = ACTIONS(4379), + [aux_sym_insert_token2] = ACTIONS(4379), + [aux_sym_delete_token1] = ACTIONS(4379), + [aux_sym_highlight_token1] = ACTIONS(4379), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4379), + [anon_sym_LBRACK_CARET] = ACTIONS(4379), + [sym_uri_autolink] = ACTIONS(4379), + [sym_email_autolink] = ACTIONS(4379), + [sym__whitespace_ge_2] = ACTIONS(4381), + [aux_sym__whitespace_token1] = ACTIONS(4381), + [sym__word_no_digit] = ACTIONS(4379), + [sym__digits] = ACTIONS(4379), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4379), + [sym__code_span_start] = ACTIONS(4379), + [sym__emphasis_open_star] = ACTIONS(4379), + [sym__emphasis_open_underscore] = ACTIONS(4379), + [sym__last_token_punctuation] = ACTIONS(4445), + [sym__strikeout_open] = ACTIONS(4379), + [sym__latex_span_start] = ACTIONS(4379), + [sym__single_quote_open] = ACTIONS(4379), + [sym__double_quote_open] = ACTIONS(4379), + [sym__superscript_open] = ACTIONS(4379), + [sym__subscript_open] = ACTIONS(4379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4379), + [sym__cite_author_in_text] = ACTIONS(4379), + [sym__cite_suppress_author] = ACTIONS(4379), + [sym__shortcode_open_escaped] = ACTIONS(4379), + [sym__shortcode_open] = ACTIONS(4379), + [sym__unclosed_span] = ACTIONS(4379), + [sym__strong_emphasis_open_star] = ACTIONS(4379), + [sym__strong_emphasis_open_underscore] = ACTIONS(4379), }, [STATE(760)] = { - [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_STAR] = 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(4809), - [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__last_token_punctuation] = ACTIONS(4783), - [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_close_star] = ACTIONS(4747), - [sym__strong_emphasis_open_underscore] = ACTIONS(4747), + [ts_builtin_sym_end] = ACTIONS(4303), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4339), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(761)] = { - [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_STAR] = 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__last_token_punctuation] = ACTIONS(4755), - [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), - [sym__strong_emphasis_close_underscore] = ACTIONS(4747), + [sym__backslash_escape] = ACTIONS(4355), + [sym_entity_reference] = ACTIONS(4355), + [sym_numeric_character_reference] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4357), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_BSLASH] = ACTIONS(4357), + [anon_sym_RBRACK] = ACTIONS(4355), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4355), + [aux_sym_insert_token1] = ACTIONS(4355), + [aux_sym_delete_token1] = ACTIONS(4355), + [aux_sym_highlight_token1] = ACTIONS(4355), + [aux_sym_edit_comment_token1] = ACTIONS(4355), + [anon_sym_CARET_LBRACK] = ACTIONS(4355), + [anon_sym_LBRACK_CARET] = ACTIONS(4355), + [sym_uri_autolink] = ACTIONS(4355), + [sym_email_autolink] = ACTIONS(4355), + [sym__whitespace_ge_2] = ACTIONS(4355), + [aux_sym__whitespace_token1] = ACTIONS(4357), + [sym__word_no_digit] = ACTIONS(4355), + [sym__digits] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [sym__code_span_start] = ACTIONS(4355), + [sym__emphasis_open_star] = ACTIONS(4355), + [sym__emphasis_open_underscore] = ACTIONS(4355), + [sym__last_token_whitespace] = ACTIONS(4447), + [sym__strikeout_open] = ACTIONS(4355), + [sym__latex_span_start] = ACTIONS(4355), + [sym__single_quote_open] = ACTIONS(4355), + [sym__double_quote_open] = ACTIONS(4355), + [sym__superscript_open] = ACTIONS(4355), + [sym__subscript_open] = ACTIONS(4355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4355), + [sym__cite_author_in_text] = ACTIONS(4355), + [sym__cite_suppress_author] = ACTIONS(4355), + [sym__shortcode_open_escaped] = ACTIONS(4355), + [sym__shortcode_open] = ACTIONS(4355), + [sym__unclosed_span] = ACTIONS(4355), + [sym__strong_emphasis_open_star] = ACTIONS(4355), + [sym__strong_emphasis_open_underscore] = ACTIONS(4355), }, [STATE(762)] = { - [sym__backslash_escape] = ACTIONS(4815), - [sym_entity_reference] = ACTIONS(4815), - [sym_numeric_character_reference] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4815), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BSLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_TILDE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__newline_token] = ACTIONS(4815), - [aux_sym_insert_token1] = ACTIONS(4815), - [aux_sym_delete_token1] = ACTIONS(4815), - [aux_sym_highlight_token1] = ACTIONS(4815), - [aux_sym_edit_comment_token1] = ACTIONS(4815), - [anon_sym_CARET_LBRACK] = ACTIONS(4815), - [anon_sym_LBRACK_CARET] = ACTIONS(4815), - [sym_uri_autolink] = ACTIONS(4815), - [sym_email_autolink] = ACTIONS(4815), - [sym__whitespace_ge_2] = ACTIONS(4815), - [aux_sym__whitespace_token1] = ACTIONS(4817), - [sym__word_no_digit] = ACTIONS(4815), - [sym__digits] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [sym__code_span_start] = ACTIONS(4815), - [sym__emphasis_open_star] = ACTIONS(4815), - [sym__emphasis_open_underscore] = ACTIONS(4815), - [sym__last_token_whitespace] = ACTIONS(4885), - [sym__strikeout_open] = ACTIONS(4815), - [sym__latex_span_start] = ACTIONS(4815), - [sym__single_quote_open] = ACTIONS(4815), - [sym__double_quote_open] = ACTIONS(4815), - [sym__superscript_open] = ACTIONS(4815), - [sym__superscript_close] = ACTIONS(4815), - [sym__subscript_open] = ACTIONS(4815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4815), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4815), - [sym__cite_author_in_text] = ACTIONS(4815), - [sym__cite_suppress_author] = ACTIONS(4815), - [sym__shortcode_open_escaped] = ACTIONS(4815), - [sym__shortcode_open] = ACTIONS(4815), - [sym__unclosed_span] = ACTIONS(4815), - [sym__strong_emphasis_open_star] = ACTIONS(4815), - [sym__strong_emphasis_open_underscore] = ACTIONS(4815), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_RBRACK] = ACTIONS(4297), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(4297), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4301), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(763)] = { - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(4741), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__emphasis_close_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4761), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__backslash_escape] = ACTIONS(4355), + [sym_entity_reference] = ACTIONS(4355), + [sym_numeric_character_reference] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4357), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_BSLASH] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4355), + [aux_sym_insert_token1] = ACTIONS(4355), + [aux_sym_insert_token2] = ACTIONS(4355), + [aux_sym_delete_token1] = ACTIONS(4355), + [aux_sym_highlight_token1] = ACTIONS(4355), + [aux_sym_edit_comment_token1] = ACTIONS(4355), + [anon_sym_CARET_LBRACK] = ACTIONS(4355), + [anon_sym_LBRACK_CARET] = ACTIONS(4355), + [sym_uri_autolink] = ACTIONS(4355), + [sym_email_autolink] = ACTIONS(4355), + [sym__whitespace_ge_2] = ACTIONS(4357), + [aux_sym__whitespace_token1] = ACTIONS(4357), + [sym__word_no_digit] = ACTIONS(4355), + [sym__digits] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [sym__code_span_start] = ACTIONS(4355), + [sym__emphasis_open_star] = ACTIONS(4355), + [sym__emphasis_open_underscore] = ACTIONS(4355), + [sym__last_token_whitespace] = ACTIONS(4449), + [sym__strikeout_open] = ACTIONS(4355), + [sym__latex_span_start] = ACTIONS(4355), + [sym__single_quote_open] = ACTIONS(4355), + [sym__double_quote_open] = ACTIONS(4355), + [sym__superscript_open] = ACTIONS(4355), + [sym__subscript_open] = ACTIONS(4355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4355), + [sym__cite_author_in_text] = ACTIONS(4355), + [sym__cite_suppress_author] = ACTIONS(4355), + [sym__shortcode_open_escaped] = ACTIONS(4355), + [sym__shortcode_open] = ACTIONS(4355), + [sym__unclosed_span] = ACTIONS(4355), + [sym__strong_emphasis_open_star] = ACTIONS(4355), + [sym__strong_emphasis_open_underscore] = ACTIONS(4355), }, [STATE(764)] = { - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(4741), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4773), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__subscript_close] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(4297), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_insert_token2] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4299), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4321), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(765)] = { - [sym__backslash_escape] = ACTIONS(4815), - [sym_entity_reference] = ACTIONS(4815), - [sym_numeric_character_reference] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4815), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BSLASH] = ACTIONS(4817), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_TILDE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__newline_token] = ACTIONS(4815), - [aux_sym_insert_token1] = ACTIONS(4815), - [aux_sym_delete_token1] = ACTIONS(4815), - [aux_sym_highlight_token1] = ACTIONS(4815), - [aux_sym_edit_comment_token1] = ACTIONS(4815), - [anon_sym_CARET_LBRACK] = ACTIONS(4815), - [anon_sym_LBRACK_CARET] = ACTIONS(4815), - [sym_uri_autolink] = ACTIONS(4815), - [sym_email_autolink] = ACTIONS(4815), - [sym__whitespace_ge_2] = ACTIONS(4815), - [aux_sym__whitespace_token1] = ACTIONS(4817), - [sym__word_no_digit] = ACTIONS(4815), - [sym__digits] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [sym__code_span_start] = ACTIONS(4815), - [sym__emphasis_open_star] = ACTIONS(4815), - [sym__emphasis_open_underscore] = ACTIONS(4815), - [sym__last_token_whitespace] = ACTIONS(4887), - [sym__strikeout_open] = ACTIONS(4815), - [sym__latex_span_start] = ACTIONS(4815), - [sym__single_quote_open] = ACTIONS(4815), - [sym__double_quote_open] = ACTIONS(4815), - [sym__superscript_open] = ACTIONS(4815), - [sym__subscript_open] = ACTIONS(4815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4815), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4815), - [sym__cite_author_in_text] = ACTIONS(4815), - [sym__cite_suppress_author] = ACTIONS(4815), - [sym__shortcode_open_escaped] = ACTIONS(4815), - [sym__shortcode_open] = ACTIONS(4815), - [sym__unclosed_span] = ACTIONS(4815), - [sym__strong_emphasis_open_star] = ACTIONS(4815), - [sym__strong_emphasis_open_underscore] = ACTIONS(4815), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__emphasis_close_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4313), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(766)] = { - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_RBRACK] = ACTIONS(4741), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(4741), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4771), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__emphasis_close_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4313), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(767)] = { - [sym__backslash_escape] = ACTIONS(4815), - [sym_entity_reference] = ACTIONS(4815), - [sym_numeric_character_reference] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4815), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BSLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_TILDE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__newline_token] = ACTIONS(4815), - [aux_sym_insert_token1] = ACTIONS(4815), - [aux_sym_insert_token2] = ACTIONS(4815), - [aux_sym_delete_token1] = ACTIONS(4815), - [aux_sym_highlight_token1] = ACTIONS(4815), - [aux_sym_edit_comment_token1] = ACTIONS(4815), - [anon_sym_CARET_LBRACK] = ACTIONS(4815), - [anon_sym_LBRACK_CARET] = ACTIONS(4815), - [sym_uri_autolink] = ACTIONS(4815), - [sym_email_autolink] = ACTIONS(4815), - [sym__whitespace_ge_2] = ACTIONS(4817), - [aux_sym__whitespace_token1] = ACTIONS(4817), - [sym__word_no_digit] = ACTIONS(4815), - [sym__digits] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [sym__code_span_start] = ACTIONS(4815), - [sym__emphasis_open_star] = ACTIONS(4815), - [sym__emphasis_open_underscore] = ACTIONS(4815), - [sym__last_token_whitespace] = ACTIONS(4889), - [sym__strikeout_open] = ACTIONS(4815), - [sym__latex_span_start] = ACTIONS(4815), - [sym__single_quote_open] = ACTIONS(4815), - [sym__double_quote_open] = ACTIONS(4815), - [sym__superscript_open] = ACTIONS(4815), - [sym__subscript_open] = ACTIONS(4815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4815), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4815), - [sym__cite_author_in_text] = ACTIONS(4815), - [sym__cite_suppress_author] = ACTIONS(4815), - [sym__shortcode_open_escaped] = ACTIONS(4815), - [sym__shortcode_open] = ACTIONS(4815), - [sym__unclosed_span] = ACTIONS(4815), - [sym__strong_emphasis_open_star] = ACTIONS(4815), - [sym__strong_emphasis_open_underscore] = ACTIONS(4815), + [sym__backslash_escape] = ACTIONS(4355), + [sym_entity_reference] = ACTIONS(4355), + [sym_numeric_character_reference] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4357), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_BSLASH] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4355), + [aux_sym_insert_token1] = ACTIONS(4355), + [aux_sym_delete_token1] = ACTIONS(4355), + [aux_sym_highlight_token1] = ACTIONS(4355), + [aux_sym_edit_comment_token1] = ACTIONS(4355), + [anon_sym_CARET_LBRACK] = ACTIONS(4355), + [anon_sym_LBRACK_CARET] = ACTIONS(4355), + [sym_uri_autolink] = ACTIONS(4355), + [sym_email_autolink] = ACTIONS(4355), + [sym__whitespace_ge_2] = ACTIONS(4355), + [aux_sym__whitespace_token1] = ACTIONS(4357), + [sym__word_no_digit] = ACTIONS(4355), + [sym__digits] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [sym__code_span_start] = ACTIONS(4355), + [sym__emphasis_open_star] = ACTIONS(4355), + [sym__emphasis_open_underscore] = ACTIONS(4355), + [sym__emphasis_close_star] = ACTIONS(4355), + [sym__last_token_whitespace] = ACTIONS(4451), + [sym__strikeout_open] = ACTIONS(4355), + [sym__latex_span_start] = ACTIONS(4355), + [sym__single_quote_open] = ACTIONS(4355), + [sym__double_quote_open] = ACTIONS(4355), + [sym__superscript_open] = ACTIONS(4355), + [sym__subscript_open] = ACTIONS(4355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4355), + [sym__cite_author_in_text] = ACTIONS(4355), + [sym__cite_suppress_author] = ACTIONS(4355), + [sym__shortcode_open_escaped] = ACTIONS(4355), + [sym__shortcode_open] = ACTIONS(4355), + [sym__unclosed_span] = ACTIONS(4355), + [sym__strong_emphasis_open_star] = ACTIONS(4355), + [sym__strong_emphasis_open_underscore] = ACTIONS(4355), }, [STATE(768)] = { - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(4741), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_insert_token2] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4743), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4777), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(4297), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__emphasis_close_star] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4335), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(769)] = { - [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_STAR] = 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(4809), - [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__last_token_punctuation] = ACTIONS(4787), - [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__superscript_close] = 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), + [sym__backslash_escape] = ACTIONS(4361), + [sym_entity_reference] = ACTIONS(4361), + [sym_numeric_character_reference] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_BSLASH] = ACTIONS(4363), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [sym__newline_token] = ACTIONS(4361), + [aux_sym_insert_token1] = ACTIONS(4361), + [aux_sym_delete_token1] = ACTIONS(4361), + [aux_sym_highlight_token1] = ACTIONS(4361), + [aux_sym_edit_comment_token1] = ACTIONS(4361), + [anon_sym_CARET_LBRACK] = ACTIONS(4361), + [anon_sym_LBRACK_CARET] = ACTIONS(4361), + [sym_uri_autolink] = ACTIONS(4361), + [sym_email_autolink] = ACTIONS(4361), + [sym__whitespace_ge_2] = ACTIONS(4361), + [aux_sym__whitespace_token1] = ACTIONS(4363), + [sym__word_no_digit] = ACTIONS(4361), + [sym__digits] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4363), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4361), + [sym__code_span_start] = ACTIONS(4361), + [sym__emphasis_open_star] = ACTIONS(4361), + [sym__emphasis_open_underscore] = ACTIONS(4361), + [sym__emphasis_close_underscore] = ACTIONS(4361), + [sym__last_token_punctuation] = ACTIONS(4453), + [sym__strikeout_open] = ACTIONS(4361), + [sym__latex_span_start] = ACTIONS(4361), + [sym__single_quote_open] = ACTIONS(4361), + [sym__double_quote_open] = ACTIONS(4361), + [sym__superscript_open] = ACTIONS(4361), + [sym__subscript_open] = ACTIONS(4361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4361), + [sym__cite_author_in_text] = ACTIONS(4361), + [sym__cite_suppress_author] = ACTIONS(4361), + [sym__shortcode_open_escaped] = ACTIONS(4361), + [sym__shortcode_open] = ACTIONS(4361), + [sym__unclosed_span] = ACTIONS(4361), + [sym__strong_emphasis_open_star] = ACTIONS(4361), + [sym__strong_emphasis_open_underscore] = ACTIONS(4361), }, [STATE(770)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__last_token_punctuation] = ACTIONS(4891), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), - [sym__strong_emphasis_close_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__emphasis_close_underscore] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4455), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(771)] = { - [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_STAR] = 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(4809), - [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_underscore] = ACTIONS(4747), - [sym__last_token_punctuation] = ACTIONS(4795), - [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), + [sym__backslash_escape] = ACTIONS(4373), + [sym_entity_reference] = ACTIONS(4373), + [sym_numeric_character_reference] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_BSLASH] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_PIPE] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [sym__newline_token] = ACTIONS(4373), + [aux_sym_insert_token1] = ACTIONS(4373), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4373), + [aux_sym_edit_comment_token1] = ACTIONS(4373), + [anon_sym_CARET_LBRACK] = ACTIONS(4373), + [anon_sym_LBRACK_CARET] = ACTIONS(4373), + [sym_uri_autolink] = ACTIONS(4373), + [sym_email_autolink] = ACTIONS(4373), + [sym__whitespace_ge_2] = ACTIONS(4373), + [aux_sym__whitespace_token1] = ACTIONS(4375), + [sym__word_no_digit] = ACTIONS(4373), + [sym__digits] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [sym__code_span_start] = ACTIONS(4373), + [sym__emphasis_open_star] = ACTIONS(4373), + [sym__emphasis_open_underscore] = ACTIONS(4373), + [sym__emphasis_close_underscore] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4457), + [sym__strikeout_open] = ACTIONS(4373), + [sym__latex_span_start] = ACTIONS(4373), + [sym__single_quote_open] = ACTIONS(4373), + [sym__double_quote_open] = ACTIONS(4373), + [sym__superscript_open] = ACTIONS(4373), + [sym__subscript_open] = ACTIONS(4373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4373), + [sym__cite_author_in_text] = ACTIONS(4373), + [sym__cite_suppress_author] = ACTIONS(4373), + [sym__shortcode_open_escaped] = ACTIONS(4373), + [sym__shortcode_open] = ACTIONS(4373), + [sym__unclosed_span] = ACTIONS(4373), + [sym__strong_emphasis_open_star] = ACTIONS(4373), + [sym__strong_emphasis_open_underscore] = ACTIONS(4373), }, [STATE(772)] = { - [sym__backslash_escape] = ACTIONS(4815), - [sym_entity_reference] = ACTIONS(4815), - [sym_numeric_character_reference] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4815), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BSLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_TILDE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__newline_token] = ACTIONS(4815), - [aux_sym_insert_token1] = ACTIONS(4815), - [aux_sym_delete_token1] = ACTIONS(4815), - [aux_sym_highlight_token1] = ACTIONS(4815), - [aux_sym_edit_comment_token1] = ACTIONS(4815), - [anon_sym_CARET_LBRACK] = ACTIONS(4815), - [anon_sym_LBRACK_CARET] = ACTIONS(4815), - [sym_uri_autolink] = ACTIONS(4815), - [sym_email_autolink] = ACTIONS(4815), - [sym__whitespace_ge_2] = ACTIONS(4815), - [aux_sym__whitespace_token1] = ACTIONS(4817), - [sym__word_no_digit] = ACTIONS(4815), - [sym__digits] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [sym__code_span_start] = ACTIONS(4815), - [sym__emphasis_open_star] = ACTIONS(4815), - [sym__emphasis_open_underscore] = ACTIONS(4815), - [sym__last_token_whitespace] = ACTIONS(4893), - [sym__strikeout_open] = ACTIONS(4815), - [sym__latex_span_start] = ACTIONS(4815), - [sym__single_quote_open] = ACTIONS(4815), - [sym__single_quote_close] = ACTIONS(4815), - [sym__double_quote_open] = ACTIONS(4815), - [sym__superscript_open] = ACTIONS(4815), - [sym__subscript_open] = ACTIONS(4815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4815), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4815), - [sym__cite_author_in_text] = ACTIONS(4815), - [sym__cite_suppress_author] = ACTIONS(4815), - [sym__shortcode_open_escaped] = ACTIONS(4815), - [sym__shortcode_open] = ACTIONS(4815), - [sym__unclosed_span] = ACTIONS(4815), - [sym__strong_emphasis_open_star] = ACTIONS(4815), - [sym__strong_emphasis_open_underscore] = ACTIONS(4815), + [ts_builtin_sym_end] = ACTIONS(4367), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4459), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(773)] = { - [sym__backslash_escape] = ACTIONS(4803), - [sym_entity_reference] = ACTIONS(4803), - [sym_numeric_character_reference] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4803), - [anon_sym_BANG] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4803), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR] = ACTIONS(4803), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4803), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4805), - [anon_sym_BSLASH] = ACTIONS(4805), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LBRACE] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4803), - [anon_sym_TILDE] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [sym__newline_token] = ACTIONS(4803), - [aux_sym_insert_token1] = ACTIONS(4803), - [aux_sym_delete_token1] = ACTIONS(4803), - [aux_sym_highlight_token1] = ACTIONS(4803), - [aux_sym_edit_comment_token1] = ACTIONS(4803), - [anon_sym_CARET_LBRACK] = ACTIONS(4803), - [anon_sym_LBRACK_CARET] = ACTIONS(4803), - [sym_uri_autolink] = ACTIONS(4803), - [sym_email_autolink] = ACTIONS(4803), - [sym__whitespace_ge_2] = ACTIONS(4803), - [aux_sym__whitespace_token1] = ACTIONS(4805), - [sym__word_no_digit] = ACTIONS(4803), - [sym__digits] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4805), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), - [sym__code_span_start] = ACTIONS(4803), - [sym__emphasis_open_star] = ACTIONS(4803), - [sym__emphasis_open_underscore] = ACTIONS(4803), - [sym__last_token_punctuation] = ACTIONS(4895), - [sym__strikeout_open] = ACTIONS(4803), - [sym__latex_span_start] = ACTIONS(4803), - [sym__single_quote_open] = ACTIONS(4803), - [sym__double_quote_open] = ACTIONS(4803), - [sym__superscript_open] = ACTIONS(4803), - [sym__subscript_open] = ACTIONS(4803), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4803), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4803), - [sym__cite_author_in_text] = ACTIONS(4803), - [sym__cite_suppress_author] = ACTIONS(4803), - [sym__shortcode_open_escaped] = ACTIONS(4803), - [sym__shortcode_open] = ACTIONS(4803), - [sym__unclosed_span] = ACTIONS(4803), - [sym__strong_emphasis_open_star] = ACTIONS(4803), - [sym__strong_emphasis_open_underscore] = ACTIONS(4803), - [sym__strong_emphasis_close_underscore] = ACTIONS(4803), + [sym__backslash_escape] = ACTIONS(4379), + [sym_entity_reference] = ACTIONS(4379), + [sym_numeric_character_reference] = ACTIONS(4379), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_COMMA] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_PIPE] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_RPAREN] = ACTIONS(4379), + [sym__newline_token] = ACTIONS(4379), + [aux_sym_insert_token1] = ACTIONS(4379), + [aux_sym_delete_token1] = ACTIONS(4379), + [aux_sym_highlight_token1] = ACTIONS(4379), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4379), + [anon_sym_LBRACK_CARET] = ACTIONS(4379), + [sym_uri_autolink] = ACTIONS(4379), + [sym_email_autolink] = ACTIONS(4379), + [sym__whitespace_ge_2] = ACTIONS(4379), + [aux_sym__whitespace_token1] = ACTIONS(4381), + [sym__word_no_digit] = ACTIONS(4379), + [sym__digits] = ACTIONS(4379), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4379), + [sym__code_span_start] = ACTIONS(4379), + [sym__emphasis_open_star] = ACTIONS(4379), + [sym__emphasis_open_underscore] = ACTIONS(4379), + [sym__emphasis_close_underscore] = ACTIONS(4379), + [sym__last_token_punctuation] = ACTIONS(4461), + [sym__strikeout_open] = ACTIONS(4379), + [sym__latex_span_start] = ACTIONS(4379), + [sym__single_quote_open] = ACTIONS(4379), + [sym__double_quote_open] = ACTIONS(4379), + [sym__superscript_open] = ACTIONS(4379), + [sym__subscript_open] = ACTIONS(4379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4379), + [sym__cite_author_in_text] = ACTIONS(4379), + [sym__cite_suppress_author] = ACTIONS(4379), + [sym__shortcode_open_escaped] = ACTIONS(4379), + [sym__shortcode_open] = ACTIONS(4379), + [sym__unclosed_span] = ACTIONS(4379), + [sym__strong_emphasis_open_star] = ACTIONS(4379), + [sym__strong_emphasis_open_underscore] = ACTIONS(4379), }, [STATE(774)] = { - [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_STAR] = 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__last_token_punctuation] = ACTIONS(4791), - [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), + [ts_builtin_sym_end] = ACTIONS(4355), + [sym__backslash_escape] = ACTIONS(4355), + [sym_entity_reference] = ACTIONS(4355), + [sym_numeric_character_reference] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4357), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_BSLASH] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4355), + [aux_sym_insert_token1] = ACTIONS(4355), + [aux_sym_delete_token1] = ACTIONS(4355), + [aux_sym_highlight_token1] = ACTIONS(4355), + [aux_sym_edit_comment_token1] = ACTIONS(4355), + [anon_sym_CARET_LBRACK] = ACTIONS(4355), + [anon_sym_LBRACK_CARET] = ACTIONS(4355), + [sym_uri_autolink] = ACTIONS(4355), + [sym_email_autolink] = ACTIONS(4355), + [sym__whitespace_ge_2] = ACTIONS(4355), + [aux_sym__whitespace_token1] = ACTIONS(4357), + [sym__word_no_digit] = ACTIONS(4355), + [sym__digits] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [sym__code_span_start] = ACTIONS(4355), + [sym__emphasis_open_star] = ACTIONS(4355), + [sym__emphasis_open_underscore] = ACTIONS(4355), + [sym__last_token_whitespace] = ACTIONS(4463), + [sym__strikeout_open] = ACTIONS(4355), + [sym__latex_span_start] = ACTIONS(4355), + [sym__single_quote_open] = ACTIONS(4355), + [sym__double_quote_open] = ACTIONS(4355), + [sym__superscript_open] = ACTIONS(4355), + [sym__subscript_open] = ACTIONS(4355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4355), + [sym__cite_author_in_text] = ACTIONS(4355), + [sym__cite_suppress_author] = ACTIONS(4355), + [sym__shortcode_open_escaped] = ACTIONS(4355), + [sym__shortcode_open] = ACTIONS(4355), + [sym__unclosed_span] = ACTIONS(4355), + [sym__strong_emphasis_open_star] = ACTIONS(4355), + [sym__strong_emphasis_open_underscore] = ACTIONS(4355), }, [STATE(775)] = { - [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_STAR] = 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(4809), - [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__last_token_punctuation] = ACTIONS(4791), - [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), + [ts_builtin_sym_end] = ACTIONS(4373), + [sym__backslash_escape] = ACTIONS(4373), + [sym_entity_reference] = ACTIONS(4373), + [sym_numeric_character_reference] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_BSLASH] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_PIPE] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [sym__newline_token] = ACTIONS(4373), + [aux_sym_insert_token1] = ACTIONS(4373), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4373), + [aux_sym_edit_comment_token1] = ACTIONS(4373), + [anon_sym_CARET_LBRACK] = ACTIONS(4373), + [anon_sym_LBRACK_CARET] = ACTIONS(4373), + [sym_uri_autolink] = ACTIONS(4373), + [sym_email_autolink] = ACTIONS(4373), + [sym__whitespace_ge_2] = ACTIONS(4373), + [aux_sym__whitespace_token1] = ACTIONS(4375), + [sym__word_no_digit] = ACTIONS(4373), + [sym__digits] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [sym__code_span_start] = ACTIONS(4373), + [sym__emphasis_open_star] = ACTIONS(4373), + [sym__emphasis_open_underscore] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4465), + [sym__strikeout_open] = ACTIONS(4373), + [sym__latex_span_start] = ACTIONS(4373), + [sym__single_quote_open] = ACTIONS(4373), + [sym__double_quote_open] = ACTIONS(4373), + [sym__superscript_open] = ACTIONS(4373), + [sym__subscript_open] = ACTIONS(4373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4373), + [sym__cite_author_in_text] = ACTIONS(4373), + [sym__cite_suppress_author] = ACTIONS(4373), + [sym__shortcode_open_escaped] = ACTIONS(4373), + [sym__shortcode_open] = ACTIONS(4373), + [sym__unclosed_span] = ACTIONS(4373), + [sym__strong_emphasis_open_star] = ACTIONS(4373), + [sym__strong_emphasis_open_underscore] = ACTIONS(4373), }, [STATE(776)] = { - [sym__backslash_escape] = ACTIONS(4827), - [sym_entity_reference] = ACTIONS(4827), - [sym_numeric_character_reference] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_BSLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__newline_token] = ACTIONS(4827), - [aux_sym_insert_token1] = ACTIONS(4827), - [aux_sym_delete_token1] = ACTIONS(4827), - [aux_sym_highlight_token1] = ACTIONS(4827), - [aux_sym_edit_comment_token1] = ACTIONS(4827), - [anon_sym_CARET_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACK_CARET] = ACTIONS(4827), - [sym_uri_autolink] = ACTIONS(4827), - [sym_email_autolink] = ACTIONS(4827), - [sym__whitespace_ge_2] = ACTIONS(4827), - [aux_sym__whitespace_token1] = ACTIONS(4829), - [sym__word_no_digit] = ACTIONS(4827), - [sym__digits] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4827), - [sym__code_span_start] = ACTIONS(4827), - [sym__emphasis_open_star] = ACTIONS(4827), - [sym__emphasis_open_underscore] = ACTIONS(4827), - [sym__emphasis_close_underscore] = ACTIONS(4827), - [sym__last_token_punctuation] = ACTIONS(4897), - [sym__strikeout_open] = ACTIONS(4827), - [sym__latex_span_start] = ACTIONS(4827), - [sym__single_quote_open] = ACTIONS(4827), - [sym__double_quote_open] = ACTIONS(4827), - [sym__superscript_open] = ACTIONS(4827), - [sym__subscript_open] = ACTIONS(4827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4827), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4827), - [sym__cite_author_in_text] = ACTIONS(4827), - [sym__cite_suppress_author] = ACTIONS(4827), - [sym__shortcode_open_escaped] = ACTIONS(4827), - [sym__shortcode_open] = ACTIONS(4827), - [sym__unclosed_span] = ACTIONS(4827), - [sym__strong_emphasis_open_star] = ACTIONS(4827), - [sym__strong_emphasis_open_underscore] = ACTIONS(4827), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4325), + [sym__strikeout_open] = ACTIONS(4303), + [sym__strikeout_close] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(777)] = { - [sym__backslash_escape] = ACTIONS(4835), - [sym_entity_reference] = ACTIONS(4835), - [sym_numeric_character_reference] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4835), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_BSLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4835), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__newline_token] = ACTIONS(4835), - [aux_sym_insert_token1] = ACTIONS(4835), - [aux_sym_delete_token1] = ACTIONS(4835), - [aux_sym_highlight_token1] = ACTIONS(4835), - [aux_sym_edit_comment_token1] = ACTIONS(4835), - [anon_sym_CARET_LBRACK] = ACTIONS(4835), - [anon_sym_LBRACK_CARET] = ACTIONS(4835), - [sym_uri_autolink] = ACTIONS(4835), - [sym_email_autolink] = ACTIONS(4835), - [sym__whitespace_ge_2] = ACTIONS(4835), - [aux_sym__whitespace_token1] = ACTIONS(4837), - [sym__word_no_digit] = ACTIONS(4835), - [sym__digits] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [sym__code_span_start] = ACTIONS(4835), - [sym__emphasis_open_star] = ACTIONS(4835), - [sym__emphasis_open_underscore] = ACTIONS(4835), - [sym__last_token_punctuation] = ACTIONS(4899), - [sym__strikeout_open] = ACTIONS(4835), - [sym__latex_span_start] = ACTIONS(4835), - [sym__single_quote_open] = ACTIONS(4835), - [sym__single_quote_close] = ACTIONS(4835), - [sym__double_quote_open] = ACTIONS(4835), - [sym__superscript_open] = ACTIONS(4835), - [sym__subscript_open] = ACTIONS(4835), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4835), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4835), - [sym__cite_author_in_text] = ACTIONS(4835), - [sym__cite_suppress_author] = ACTIONS(4835), - [sym__shortcode_open_escaped] = ACTIONS(4835), - [sym__shortcode_open] = ACTIONS(4835), - [sym__unclosed_span] = ACTIONS(4835), - [sym__strong_emphasis_open_star] = ACTIONS(4835), - [sym__strong_emphasis_open_underscore] = ACTIONS(4835), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4325), + [sym__strikeout_open] = ACTIONS(4303), + [sym__strikeout_close] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(778)] = { - [sym__backslash_escape] = ACTIONS(4835), - [sym_entity_reference] = ACTIONS(4835), - [sym_numeric_character_reference] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4835), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_BSLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4835), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__newline_token] = ACTIONS(4835), - [aux_sym_insert_token1] = ACTIONS(4835), - [aux_sym_delete_token1] = ACTIONS(4835), - [aux_sym_highlight_token1] = ACTIONS(4835), - [aux_sym_edit_comment_token1] = ACTIONS(4835), - [anon_sym_CARET_LBRACK] = ACTIONS(4835), - [anon_sym_LBRACK_CARET] = ACTIONS(4835), - [sym_uri_autolink] = ACTIONS(4835), - [sym_email_autolink] = ACTIONS(4835), - [sym__whitespace_ge_2] = ACTIONS(4835), - [aux_sym__whitespace_token1] = ACTIONS(4837), - [sym__word_no_digit] = ACTIONS(4835), - [sym__digits] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [sym__code_span_start] = ACTIONS(4835), - [sym__emphasis_open_star] = ACTIONS(4835), - [sym__emphasis_open_underscore] = ACTIONS(4835), - [sym__last_token_punctuation] = ACTIONS(4901), - [sym__strikeout_open] = ACTIONS(4835), - [sym__latex_span_start] = ACTIONS(4835), - [sym__single_quote_open] = ACTIONS(4835), - [sym__double_quote_open] = ACTIONS(4835), - [sym__superscript_open] = ACTIONS(4835), - [sym__subscript_open] = ACTIONS(4835), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4835), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4835), - [sym__cite_author_in_text] = ACTIONS(4835), - [sym__cite_suppress_author] = ACTIONS(4835), - [sym__shortcode_open_escaped] = ACTIONS(4835), - [sym__shortcode_open] = ACTIONS(4835), - [sym__unclosed_span] = ACTIONS(4835), - [sym__strong_emphasis_open_star] = ACTIONS(4835), - [sym__strong_emphasis_close_star] = ACTIONS(4835), - [sym__strong_emphasis_open_underscore] = ACTIONS(4835), + [sym__backslash_escape] = ACTIONS(4355), + [sym_entity_reference] = ACTIONS(4355), + [sym_numeric_character_reference] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4357), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_BSLASH] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4355), + [aux_sym_insert_token1] = ACTIONS(4355), + [aux_sym_delete_token1] = ACTIONS(4355), + [aux_sym_highlight_token1] = ACTIONS(4355), + [aux_sym_edit_comment_token1] = ACTIONS(4355), + [anon_sym_CARET_LBRACK] = ACTIONS(4355), + [anon_sym_LBRACK_CARET] = ACTIONS(4355), + [sym_uri_autolink] = ACTIONS(4355), + [sym_email_autolink] = ACTIONS(4355), + [sym__whitespace_ge_2] = ACTIONS(4355), + [aux_sym__whitespace_token1] = ACTIONS(4357), + [sym__word_no_digit] = ACTIONS(4355), + [sym__digits] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [sym__code_span_start] = ACTIONS(4355), + [sym__emphasis_open_star] = ACTIONS(4355), + [sym__emphasis_open_underscore] = ACTIONS(4355), + [sym__emphasis_close_underscore] = ACTIONS(4355), + [sym__last_token_whitespace] = ACTIONS(4467), + [sym__strikeout_open] = ACTIONS(4355), + [sym__latex_span_start] = ACTIONS(4355), + [sym__single_quote_open] = ACTIONS(4355), + [sym__double_quote_open] = ACTIONS(4355), + [sym__superscript_open] = ACTIONS(4355), + [sym__subscript_open] = ACTIONS(4355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4355), + [sym__cite_author_in_text] = ACTIONS(4355), + [sym__cite_suppress_author] = ACTIONS(4355), + [sym__shortcode_open_escaped] = ACTIONS(4355), + [sym__shortcode_open] = ACTIONS(4355), + [sym__unclosed_span] = ACTIONS(4355), + [sym__strong_emphasis_open_star] = ACTIONS(4355), + [sym__strong_emphasis_open_underscore] = ACTIONS(4355), }, [STATE(779)] = { - [sym__backslash_escape] = ACTIONS(4827), - [sym_entity_reference] = ACTIONS(4827), - [sym_numeric_character_reference] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_BSLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__newline_token] = ACTIONS(4827), - [aux_sym_insert_token1] = ACTIONS(4827), - [aux_sym_delete_token1] = ACTIONS(4827), - [aux_sym_highlight_token1] = ACTIONS(4827), - [aux_sym_edit_comment_token1] = ACTIONS(4827), - [anon_sym_CARET_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACK_CARET] = ACTIONS(4827), - [sym_uri_autolink] = ACTIONS(4827), - [sym_email_autolink] = ACTIONS(4827), - [sym__whitespace_ge_2] = ACTIONS(4827), - [aux_sym__whitespace_token1] = ACTIONS(4829), - [sym__word_no_digit] = ACTIONS(4827), - [sym__digits] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4827), - [sym__code_span_start] = ACTIONS(4827), - [sym__emphasis_open_star] = ACTIONS(4827), - [sym__emphasis_open_underscore] = ACTIONS(4827), - [sym__last_token_punctuation] = ACTIONS(4903), - [sym__strikeout_open] = ACTIONS(4827), - [sym__latex_span_start] = ACTIONS(4827), - [sym__single_quote_open] = ACTIONS(4827), - [sym__double_quote_open] = ACTIONS(4827), - [sym__superscript_open] = ACTIONS(4827), - [sym__subscript_open] = ACTIONS(4827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4827), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4827), - [sym__cite_author_in_text] = ACTIONS(4827), - [sym__cite_suppress_author] = ACTIONS(4827), - [sym__shortcode_open_escaped] = ACTIONS(4827), - [sym__shortcode_open] = ACTIONS(4827), - [sym__unclosed_span] = ACTIONS(4827), - [sym__strong_emphasis_open_star] = ACTIONS(4827), - [sym__strong_emphasis_open_underscore] = ACTIONS(4827), - [sym__strong_emphasis_close_underscore] = ACTIONS(4827), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(4297), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__emphasis_close_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4315), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(780)] = { - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(4741), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4753), - [sym__strikeout_open] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__double_quote_close] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__backslash_escape] = ACTIONS(4361), + [sym_entity_reference] = ACTIONS(4361), + [sym_numeric_character_reference] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_BSLASH] = ACTIONS(4363), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [sym__newline_token] = ACTIONS(4361), + [aux_sym_insert_token1] = ACTIONS(4361), + [aux_sym_delete_token1] = ACTIONS(4361), + [aux_sym_highlight_token1] = ACTIONS(4361), + [aux_sym_edit_comment_token1] = ACTIONS(4361), + [anon_sym_CARET_LBRACK] = ACTIONS(4361), + [anon_sym_LBRACK_CARET] = ACTIONS(4361), + [sym_uri_autolink] = ACTIONS(4361), + [sym_email_autolink] = ACTIONS(4361), + [sym__whitespace_ge_2] = ACTIONS(4361), + [aux_sym__whitespace_token1] = ACTIONS(4363), + [sym__word_no_digit] = ACTIONS(4361), + [sym__digits] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4363), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4361), + [sym__code_span_start] = ACTIONS(4361), + [sym__emphasis_open_star] = ACTIONS(4361), + [sym__emphasis_open_underscore] = ACTIONS(4361), + [sym__last_token_punctuation] = ACTIONS(4469), + [sym__strikeout_open] = ACTIONS(4361), + [sym__strikeout_close] = ACTIONS(4361), + [sym__latex_span_start] = ACTIONS(4361), + [sym__single_quote_open] = ACTIONS(4361), + [sym__double_quote_open] = ACTIONS(4361), + [sym__superscript_open] = ACTIONS(4361), + [sym__subscript_open] = ACTIONS(4361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4361), + [sym__cite_author_in_text] = ACTIONS(4361), + [sym__cite_suppress_author] = ACTIONS(4361), + [sym__shortcode_open_escaped] = ACTIONS(4361), + [sym__shortcode_open] = ACTIONS(4361), + [sym__unclosed_span] = ACTIONS(4361), + [sym__strong_emphasis_open_star] = ACTIONS(4361), + [sym__strong_emphasis_open_underscore] = ACTIONS(4361), }, [STATE(781)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__last_token_punctuation] = ACTIONS(4905), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_close_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4471), + [sym__strikeout_open] = ACTIONS(4367), + [sym__strikeout_close] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(782)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_insert_token2] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4799), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__last_token_punctuation] = ACTIONS(4907), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4373), + [sym_entity_reference] = ACTIONS(4373), + [sym_numeric_character_reference] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_BSLASH] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_PIPE] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [sym__newline_token] = ACTIONS(4373), + [aux_sym_insert_token1] = ACTIONS(4373), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4373), + [aux_sym_edit_comment_token1] = ACTIONS(4373), + [anon_sym_CARET_LBRACK] = ACTIONS(4373), + [anon_sym_LBRACK_CARET] = ACTIONS(4373), + [sym_uri_autolink] = ACTIONS(4373), + [sym_email_autolink] = ACTIONS(4373), + [sym__whitespace_ge_2] = ACTIONS(4373), + [aux_sym__whitespace_token1] = ACTIONS(4375), + [sym__word_no_digit] = ACTIONS(4373), + [sym__digits] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [sym__code_span_start] = ACTIONS(4373), + [sym__emphasis_open_star] = ACTIONS(4373), + [sym__emphasis_open_underscore] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4473), + [sym__strikeout_open] = ACTIONS(4373), + [sym__strikeout_close] = ACTIONS(4373), + [sym__latex_span_start] = ACTIONS(4373), + [sym__single_quote_open] = ACTIONS(4373), + [sym__double_quote_open] = ACTIONS(4373), + [sym__superscript_open] = ACTIONS(4373), + [sym__subscript_open] = ACTIONS(4373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4373), + [sym__cite_author_in_text] = ACTIONS(4373), + [sym__cite_suppress_author] = ACTIONS(4373), + [sym__shortcode_open_escaped] = ACTIONS(4373), + [sym__shortcode_open] = ACTIONS(4373), + [sym__unclosed_span] = ACTIONS(4373), + [sym__strong_emphasis_open_star] = ACTIONS(4373), + [sym__strong_emphasis_open_underscore] = ACTIONS(4373), }, [STATE(783)] = { - [sym__backslash_escape] = ACTIONS(4803), - [sym_entity_reference] = ACTIONS(4803), - [sym_numeric_character_reference] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4803), - [anon_sym_BANG] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4803), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR] = ACTIONS(4803), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4803), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4805), - [anon_sym_BSLASH] = ACTIONS(4805), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LBRACE] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4803), - [anon_sym_TILDE] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [sym__newline_token] = ACTIONS(4803), - [aux_sym_insert_token1] = ACTIONS(4803), - [aux_sym_insert_token2] = ACTIONS(4803), - [aux_sym_delete_token1] = ACTIONS(4803), - [aux_sym_highlight_token1] = ACTIONS(4803), - [aux_sym_edit_comment_token1] = ACTIONS(4803), - [anon_sym_CARET_LBRACK] = ACTIONS(4803), - [anon_sym_LBRACK_CARET] = ACTIONS(4803), - [sym_uri_autolink] = ACTIONS(4803), - [sym_email_autolink] = ACTIONS(4803), - [sym__whitespace_ge_2] = ACTIONS(4805), - [aux_sym__whitespace_token1] = ACTIONS(4805), - [sym__word_no_digit] = ACTIONS(4803), - [sym__digits] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4805), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), - [sym__code_span_start] = ACTIONS(4803), - [sym__emphasis_open_star] = ACTIONS(4803), - [sym__emphasis_open_underscore] = ACTIONS(4803), - [sym__last_token_punctuation] = ACTIONS(4909), - [sym__strikeout_open] = ACTIONS(4803), - [sym__latex_span_start] = ACTIONS(4803), - [sym__single_quote_open] = ACTIONS(4803), - [sym__double_quote_open] = ACTIONS(4803), - [sym__superscript_open] = ACTIONS(4803), - [sym__subscript_open] = ACTIONS(4803), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4803), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4803), - [sym__cite_author_in_text] = ACTIONS(4803), - [sym__cite_suppress_author] = ACTIONS(4803), - [sym__shortcode_open_escaped] = ACTIONS(4803), - [sym__shortcode_open] = ACTIONS(4803), - [sym__unclosed_span] = ACTIONS(4803), - [sym__strong_emphasis_open_star] = ACTIONS(4803), - [sym__strong_emphasis_open_underscore] = ACTIONS(4803), + [ts_builtin_sym_end] = ACTIONS(4379), + [sym__backslash_escape] = ACTIONS(4379), + [sym_entity_reference] = ACTIONS(4379), + [sym_numeric_character_reference] = ACTIONS(4379), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_COMMA] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_PIPE] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_RPAREN] = ACTIONS(4379), + [sym__newline_token] = ACTIONS(4379), + [aux_sym_insert_token1] = ACTIONS(4379), + [aux_sym_delete_token1] = ACTIONS(4379), + [aux_sym_highlight_token1] = ACTIONS(4379), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4379), + [anon_sym_LBRACK_CARET] = ACTIONS(4379), + [sym_uri_autolink] = ACTIONS(4379), + [sym_email_autolink] = ACTIONS(4379), + [sym__whitespace_ge_2] = ACTIONS(4379), + [aux_sym__whitespace_token1] = ACTIONS(4381), + [sym__word_no_digit] = ACTIONS(4379), + [sym__digits] = ACTIONS(4379), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4379), + [sym__code_span_start] = ACTIONS(4379), + [sym__emphasis_open_star] = ACTIONS(4379), + [sym__emphasis_open_underscore] = ACTIONS(4379), + [sym__last_token_punctuation] = ACTIONS(4475), + [sym__strikeout_open] = ACTIONS(4379), + [sym__latex_span_start] = ACTIONS(4379), + [sym__single_quote_open] = ACTIONS(4379), + [sym__double_quote_open] = ACTIONS(4379), + [sym__superscript_open] = ACTIONS(4379), + [sym__subscript_open] = ACTIONS(4379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4379), + [sym__cite_author_in_text] = ACTIONS(4379), + [sym__cite_suppress_author] = ACTIONS(4379), + [sym__shortcode_open_escaped] = ACTIONS(4379), + [sym__shortcode_open] = ACTIONS(4379), + [sym__unclosed_span] = ACTIONS(4379), + [sym__strong_emphasis_open_star] = ACTIONS(4379), + [sym__strong_emphasis_open_underscore] = ACTIONS(4379), }, [STATE(784)] = { - [sym__backslash_escape] = ACTIONS(4803), - [sym_entity_reference] = ACTIONS(4803), - [sym_numeric_character_reference] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4803), - [anon_sym_BANG] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4803), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR] = ACTIONS(4803), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4803), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4805), - [anon_sym_BSLASH] = ACTIONS(4805), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LBRACE] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4803), - [anon_sym_TILDE] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [sym__newline_token] = ACTIONS(4803), - [aux_sym_insert_token1] = ACTIONS(4803), - [aux_sym_delete_token1] = ACTIONS(4803), - [aux_sym_highlight_token1] = ACTIONS(4803), - [aux_sym_edit_comment_token1] = ACTIONS(4803), - [anon_sym_CARET_LBRACK] = ACTIONS(4803), - [anon_sym_LBRACK_CARET] = ACTIONS(4803), - [sym_uri_autolink] = ACTIONS(4803), - [sym_email_autolink] = ACTIONS(4803), - [sym__whitespace_ge_2] = ACTIONS(4803), - [aux_sym__whitespace_token1] = ACTIONS(4805), - [sym__word_no_digit] = ACTIONS(4803), - [sym__digits] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4805), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), - [sym__code_span_start] = ACTIONS(4803), - [sym__emphasis_open_star] = ACTIONS(4803), - [sym__emphasis_open_underscore] = ACTIONS(4803), - [sym__last_token_punctuation] = ACTIONS(4911), - [sym__strikeout_open] = ACTIONS(4803), - [sym__latex_span_start] = ACTIONS(4803), - [sym__single_quote_open] = ACTIONS(4803), - [sym__double_quote_open] = ACTIONS(4803), - [sym__superscript_open] = ACTIONS(4803), - [sym__subscript_open] = ACTIONS(4803), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4803), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4803), - [sym__cite_author_in_text] = ACTIONS(4803), - [sym__cite_suppress_author] = ACTIONS(4803), - [sym__shortcode_open_escaped] = ACTIONS(4803), - [sym__shortcode_open] = ACTIONS(4803), - [sym__unclosed_span] = ACTIONS(4803), - [sym__strong_emphasis_open_star] = ACTIONS(4803), - [sym__strong_emphasis_close_star] = ACTIONS(4803), - [sym__strong_emphasis_open_underscore] = ACTIONS(4803), + [sym__backslash_escape] = ACTIONS(4379), + [sym_entity_reference] = ACTIONS(4379), + [sym_numeric_character_reference] = ACTIONS(4379), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_COMMA] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_PIPE] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_RPAREN] = ACTIONS(4379), + [sym__newline_token] = ACTIONS(4379), + [aux_sym_insert_token1] = ACTIONS(4379), + [aux_sym_delete_token1] = ACTIONS(4379), + [aux_sym_highlight_token1] = ACTIONS(4379), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4379), + [anon_sym_LBRACK_CARET] = ACTIONS(4379), + [sym_uri_autolink] = ACTIONS(4379), + [sym_email_autolink] = ACTIONS(4379), + [sym__whitespace_ge_2] = ACTIONS(4379), + [aux_sym__whitespace_token1] = ACTIONS(4381), + [sym__word_no_digit] = ACTIONS(4379), + [sym__digits] = ACTIONS(4379), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4379), + [sym__code_span_start] = ACTIONS(4379), + [sym__emphasis_open_star] = ACTIONS(4379), + [sym__emphasis_open_underscore] = ACTIONS(4379), + [sym__last_token_punctuation] = ACTIONS(4477), + [sym__strikeout_open] = ACTIONS(4379), + [sym__strikeout_close] = ACTIONS(4379), + [sym__latex_span_start] = ACTIONS(4379), + [sym__single_quote_open] = ACTIONS(4379), + [sym__double_quote_open] = ACTIONS(4379), + [sym__superscript_open] = ACTIONS(4379), + [sym__subscript_open] = ACTIONS(4379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4379), + [sym__cite_author_in_text] = ACTIONS(4379), + [sym__cite_suppress_author] = ACTIONS(4379), + [sym__shortcode_open_escaped] = ACTIONS(4379), + [sym__shortcode_open] = ACTIONS(4379), + [sym__unclosed_span] = ACTIONS(4379), + [sym__strong_emphasis_open_star] = ACTIONS(4379), + [sym__strong_emphasis_open_underscore] = ACTIONS(4379), }, [STATE(785)] = { - [sym__backslash_escape] = ACTIONS(4835), - [sym_entity_reference] = ACTIONS(4835), - [sym_numeric_character_reference] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4835), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_BSLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4835), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__newline_token] = ACTIONS(4835), - [aux_sym_insert_token1] = ACTIONS(4835), - [aux_sym_delete_token1] = ACTIONS(4835), - [aux_sym_highlight_token1] = ACTIONS(4835), - [aux_sym_edit_comment_token1] = ACTIONS(4835), - [anon_sym_CARET_LBRACK] = ACTIONS(4835), - [anon_sym_LBRACK_CARET] = ACTIONS(4835), - [sym_uri_autolink] = ACTIONS(4835), - [sym_email_autolink] = ACTIONS(4835), - [sym__whitespace_ge_2] = ACTIONS(4835), - [aux_sym__whitespace_token1] = ACTIONS(4837), - [sym__word_no_digit] = ACTIONS(4835), - [sym__digits] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [sym__code_span_start] = ACTIONS(4835), - [sym__emphasis_open_star] = ACTIONS(4835), - [sym__emphasis_open_underscore] = ACTIONS(4835), - [sym__emphasis_close_star] = ACTIONS(4835), - [sym__last_token_punctuation] = ACTIONS(4913), - [sym__strikeout_open] = ACTIONS(4835), - [sym__latex_span_start] = ACTIONS(4835), - [sym__single_quote_open] = ACTIONS(4835), - [sym__double_quote_open] = ACTIONS(4835), - [sym__superscript_open] = ACTIONS(4835), - [sym__subscript_open] = ACTIONS(4835), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4835), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4835), - [sym__cite_author_in_text] = ACTIONS(4835), - [sym__cite_suppress_author] = ACTIONS(4835), - [sym__shortcode_open_escaped] = ACTIONS(4835), - [sym__shortcode_open] = ACTIONS(4835), - [sym__unclosed_span] = ACTIONS(4835), - [sym__strong_emphasis_open_star] = ACTIONS(4835), - [sym__strong_emphasis_open_underscore] = ACTIONS(4835), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4333), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__single_quote_close] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(786)] = { - [ts_builtin_sym_end] = ACTIONS(4835), - [sym__backslash_escape] = ACTIONS(4835), - [sym_entity_reference] = ACTIONS(4835), - [sym_numeric_character_reference] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4835), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_BSLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4835), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__newline_token] = ACTIONS(4835), - [aux_sym_insert_token1] = ACTIONS(4835), - [aux_sym_delete_token1] = ACTIONS(4835), - [aux_sym_highlight_token1] = ACTIONS(4835), - [aux_sym_edit_comment_token1] = ACTIONS(4835), - [anon_sym_CARET_LBRACK] = ACTIONS(4835), - [anon_sym_LBRACK_CARET] = ACTIONS(4835), - [sym_uri_autolink] = ACTIONS(4835), - [sym_email_autolink] = ACTIONS(4835), - [sym__whitespace_ge_2] = ACTIONS(4835), - [aux_sym__whitespace_token1] = ACTIONS(4837), - [sym__word_no_digit] = ACTIONS(4835), - [sym__digits] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [sym__code_span_start] = ACTIONS(4835), - [sym__emphasis_open_star] = ACTIONS(4835), - [sym__emphasis_open_underscore] = ACTIONS(4835), - [sym__last_token_punctuation] = ACTIONS(4915), - [sym__strikeout_open] = ACTIONS(4835), - [sym__latex_span_start] = ACTIONS(4835), - [sym__single_quote_open] = ACTIONS(4835), - [sym__double_quote_open] = ACTIONS(4835), - [sym__superscript_open] = ACTIONS(4835), - [sym__subscript_open] = ACTIONS(4835), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4835), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4835), - [sym__cite_author_in_text] = ACTIONS(4835), - [sym__cite_suppress_author] = ACTIONS(4835), - [sym__shortcode_open_escaped] = ACTIONS(4835), - [sym__shortcode_open] = ACTIONS(4835), - [sym__unclosed_span] = ACTIONS(4835), - [sym__strong_emphasis_open_star] = ACTIONS(4835), - [sym__strong_emphasis_open_underscore] = ACTIONS(4835), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4333), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__single_quote_close] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(787)] = { - [sym__backslash_escape] = ACTIONS(4815), - [sym_entity_reference] = ACTIONS(4815), - [sym_numeric_character_reference] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4815), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BSLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_TILDE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__newline_token] = ACTIONS(4815), - [aux_sym_insert_token1] = ACTIONS(4815), - [aux_sym_delete_token1] = ACTIONS(4815), - [aux_sym_highlight_token1] = ACTIONS(4815), - [aux_sym_edit_comment_token1] = ACTIONS(4815), - [anon_sym_CARET_LBRACK] = ACTIONS(4815), - [anon_sym_LBRACK_CARET] = ACTIONS(4815), - [sym_uri_autolink] = ACTIONS(4815), - [sym_email_autolink] = ACTIONS(4815), - [sym__whitespace_ge_2] = ACTIONS(4815), - [aux_sym__whitespace_token1] = ACTIONS(4817), - [sym__word_no_digit] = ACTIONS(4815), - [sym__digits] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [sym__code_span_start] = ACTIONS(4815), - [sym__emphasis_open_star] = ACTIONS(4815), - [sym__emphasis_open_underscore] = ACTIONS(4815), - [sym__last_token_whitespace] = ACTIONS(4917), - [sym__strikeout_open] = ACTIONS(4815), - [sym__strikeout_close] = ACTIONS(4815), - [sym__latex_span_start] = ACTIONS(4815), - [sym__single_quote_open] = ACTIONS(4815), - [sym__double_quote_open] = ACTIONS(4815), - [sym__superscript_open] = ACTIONS(4815), - [sym__subscript_open] = ACTIONS(4815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4815), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4815), - [sym__cite_author_in_text] = ACTIONS(4815), - [sym__cite_suppress_author] = ACTIONS(4815), - [sym__shortcode_open_escaped] = ACTIONS(4815), - [sym__shortcode_open] = ACTIONS(4815), - [sym__unclosed_span] = ACTIONS(4815), - [sym__strong_emphasis_open_star] = ACTIONS(4815), - [sym__strong_emphasis_open_underscore] = ACTIONS(4815), + [sym__backslash_escape] = ACTIONS(4355), + [sym_entity_reference] = ACTIONS(4355), + [sym_numeric_character_reference] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4357), + [anon_sym_GT] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_DOLLAR] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_LBRACK] = ACTIONS(4357), + [anon_sym_BSLASH] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_BQUOTE] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_PIPE] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [sym__newline_token] = ACTIONS(4355), + [aux_sym_insert_token1] = ACTIONS(4355), + [aux_sym_delete_token1] = ACTIONS(4355), + [aux_sym_highlight_token1] = ACTIONS(4355), + [aux_sym_edit_comment_token1] = ACTIONS(4355), + [anon_sym_CARET_LBRACK] = ACTIONS(4355), + [anon_sym_LBRACK_CARET] = ACTIONS(4355), + [sym_uri_autolink] = ACTIONS(4355), + [sym_email_autolink] = ACTIONS(4355), + [sym__whitespace_ge_2] = ACTIONS(4355), + [aux_sym__whitespace_token1] = ACTIONS(4357), + [sym__word_no_digit] = ACTIONS(4355), + [sym__digits] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4357), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4355), + [sym__code_span_start] = ACTIONS(4355), + [sym__emphasis_open_star] = ACTIONS(4355), + [sym__emphasis_open_underscore] = ACTIONS(4355), + [sym__last_token_whitespace] = ACTIONS(4479), + [sym__strikeout_open] = ACTIONS(4355), + [sym__strikeout_close] = ACTIONS(4355), + [sym__latex_span_start] = ACTIONS(4355), + [sym__single_quote_open] = ACTIONS(4355), + [sym__double_quote_open] = ACTIONS(4355), + [sym__superscript_open] = ACTIONS(4355), + [sym__subscript_open] = ACTIONS(4355), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4355), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4355), + [sym__cite_author_in_text] = ACTIONS(4355), + [sym__cite_suppress_author] = ACTIONS(4355), + [sym__shortcode_open_escaped] = ACTIONS(4355), + [sym__shortcode_open] = ACTIONS(4355), + [sym__unclosed_span] = ACTIONS(4355), + [sym__strong_emphasis_open_star] = ACTIONS(4355), + [sym__strong_emphasis_open_underscore] = ACTIONS(4355), }, [STATE(788)] = { - [sym__backslash_escape] = ACTIONS(4835), - [sym_entity_reference] = ACTIONS(4835), - [sym_numeric_character_reference] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4835), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_BSLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4835), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__newline_token] = ACTIONS(4835), - [aux_sym_insert_token1] = ACTIONS(4835), - [aux_sym_delete_token1] = ACTIONS(4835), - [aux_sym_highlight_token1] = ACTIONS(4835), - [aux_sym_edit_comment_token1] = ACTIONS(4835), - [anon_sym_CARET_LBRACK] = ACTIONS(4835), - [anon_sym_LBRACK_CARET] = ACTIONS(4835), - [sym_uri_autolink] = ACTIONS(4835), - [sym_email_autolink] = ACTIONS(4835), - [sym__whitespace_ge_2] = ACTIONS(4835), - [aux_sym__whitespace_token1] = ACTIONS(4837), - [sym__word_no_digit] = ACTIONS(4835), - [sym__digits] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [sym__code_span_start] = ACTIONS(4835), - [sym__emphasis_open_star] = ACTIONS(4835), - [sym__emphasis_open_underscore] = ACTIONS(4835), - [sym__last_token_punctuation] = ACTIONS(4919), - [sym__strikeout_open] = ACTIONS(4835), - [sym__latex_span_start] = ACTIONS(4835), - [sym__single_quote_open] = ACTIONS(4835), - [sym__double_quote_open] = ACTIONS(4835), - [sym__double_quote_close] = ACTIONS(4835), - [sym__superscript_open] = ACTIONS(4835), - [sym__subscript_open] = ACTIONS(4835), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4835), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4835), - [sym__cite_author_in_text] = ACTIONS(4835), - [sym__cite_suppress_author] = ACTIONS(4835), - [sym__shortcode_open_escaped] = ACTIONS(4835), - [sym__shortcode_open] = ACTIONS(4835), - [sym__unclosed_span] = ACTIONS(4835), - [sym__strong_emphasis_open_star] = ACTIONS(4835), - [sym__strong_emphasis_open_underscore] = ACTIONS(4835), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(4297), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4327), + [sym__strikeout_open] = ACTIONS(4297), + [sym__strikeout_close] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(789)] = { - [ts_builtin_sym_end] = ACTIONS(4797), - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__last_token_punctuation] = ACTIONS(4921), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4361), + [sym_entity_reference] = ACTIONS(4361), + [sym_numeric_character_reference] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_BSLASH] = ACTIONS(4363), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [sym__newline_token] = ACTIONS(4361), + [aux_sym_insert_token1] = ACTIONS(4361), + [aux_sym_delete_token1] = ACTIONS(4361), + [aux_sym_highlight_token1] = ACTIONS(4361), + [aux_sym_edit_comment_token1] = ACTIONS(4361), + [anon_sym_CARET_LBRACK] = ACTIONS(4361), + [anon_sym_LBRACK_CARET] = ACTIONS(4361), + [sym_uri_autolink] = ACTIONS(4361), + [sym_email_autolink] = ACTIONS(4361), + [sym__whitespace_ge_2] = ACTIONS(4361), + [aux_sym__whitespace_token1] = ACTIONS(4363), + [sym__word_no_digit] = ACTIONS(4361), + [sym__digits] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4363), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4361), + [sym__code_span_start] = ACTIONS(4361), + [sym__emphasis_open_star] = ACTIONS(4361), + [sym__emphasis_open_underscore] = ACTIONS(4361), + [sym__last_token_punctuation] = ACTIONS(4481), + [sym__strikeout_open] = ACTIONS(4361), + [sym__latex_span_start] = ACTIONS(4361), + [sym__single_quote_open] = ACTIONS(4361), + [sym__single_quote_close] = ACTIONS(4361), + [sym__double_quote_open] = ACTIONS(4361), + [sym__superscript_open] = ACTIONS(4361), + [sym__subscript_open] = ACTIONS(4361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4361), + [sym__cite_author_in_text] = ACTIONS(4361), + [sym__cite_suppress_author] = ACTIONS(4361), + [sym__shortcode_open_escaped] = ACTIONS(4361), + [sym__shortcode_open] = ACTIONS(4361), + [sym__unclosed_span] = ACTIONS(4361), + [sym__strong_emphasis_open_star] = ACTIONS(4361), + [sym__strong_emphasis_open_underscore] = ACTIONS(4361), }, [STATE(790)] = { - [sym__backslash_escape] = ACTIONS(4827), - [sym_entity_reference] = ACTIONS(4827), - [sym_numeric_character_reference] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_BSLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__newline_token] = ACTIONS(4827), - [aux_sym_insert_token1] = ACTIONS(4827), - [aux_sym_delete_token1] = ACTIONS(4827), - [aux_sym_highlight_token1] = ACTIONS(4827), - [aux_sym_edit_comment_token1] = ACTIONS(4827), - [anon_sym_CARET_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACK_CARET] = ACTIONS(4827), - [sym_uri_autolink] = ACTIONS(4827), - [sym_email_autolink] = ACTIONS(4827), - [sym__whitespace_ge_2] = ACTIONS(4827), - [aux_sym__whitespace_token1] = ACTIONS(4829), - [sym__word_no_digit] = ACTIONS(4827), - [sym__digits] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4827), - [sym__code_span_start] = ACTIONS(4827), - [sym__emphasis_open_star] = ACTIONS(4827), - [sym__emphasis_open_underscore] = ACTIONS(4827), - [sym__last_token_punctuation] = ACTIONS(4923), - [sym__strikeout_open] = ACTIONS(4827), - [sym__latex_span_start] = ACTIONS(4827), - [sym__single_quote_open] = ACTIONS(4827), - [sym__double_quote_open] = ACTIONS(4827), - [sym__superscript_open] = ACTIONS(4827), - [sym__subscript_open] = ACTIONS(4827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4827), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4827), - [sym__cite_author_in_text] = ACTIONS(4827), - [sym__cite_suppress_author] = ACTIONS(4827), - [sym__shortcode_open_escaped] = ACTIONS(4827), - [sym__shortcode_open] = ACTIONS(4827), - [sym__unclosed_span] = ACTIONS(4827), - [sym__strong_emphasis_open_star] = ACTIONS(4827), - [sym__strong_emphasis_close_star] = ACTIONS(4827), - [sym__strong_emphasis_open_underscore] = ACTIONS(4827), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4483), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__single_quote_close] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(791)] = { - [ts_builtin_sym_end] = ACTIONS(4803), - [sym__backslash_escape] = ACTIONS(4803), - [sym_entity_reference] = ACTIONS(4803), - [sym_numeric_character_reference] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4803), - [anon_sym_BANG] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4803), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR] = ACTIONS(4803), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4803), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4805), - [anon_sym_BSLASH] = ACTIONS(4805), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LBRACE] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4803), - [anon_sym_TILDE] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [sym__newline_token] = ACTIONS(4803), - [aux_sym_insert_token1] = ACTIONS(4803), - [aux_sym_delete_token1] = ACTIONS(4803), - [aux_sym_highlight_token1] = ACTIONS(4803), - [aux_sym_edit_comment_token1] = ACTIONS(4803), - [anon_sym_CARET_LBRACK] = ACTIONS(4803), - [anon_sym_LBRACK_CARET] = ACTIONS(4803), - [sym_uri_autolink] = ACTIONS(4803), - [sym_email_autolink] = ACTIONS(4803), - [sym__whitespace_ge_2] = ACTIONS(4803), - [aux_sym__whitespace_token1] = ACTIONS(4805), - [sym__word_no_digit] = ACTIONS(4803), - [sym__digits] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4805), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), - [sym__code_span_start] = ACTIONS(4803), - [sym__emphasis_open_star] = ACTIONS(4803), - [sym__emphasis_open_underscore] = ACTIONS(4803), - [sym__last_token_punctuation] = ACTIONS(4925), - [sym__strikeout_open] = ACTIONS(4803), - [sym__latex_span_start] = ACTIONS(4803), - [sym__single_quote_open] = ACTIONS(4803), - [sym__double_quote_open] = ACTIONS(4803), - [sym__superscript_open] = ACTIONS(4803), - [sym__subscript_open] = ACTIONS(4803), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4803), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4803), - [sym__cite_author_in_text] = ACTIONS(4803), - [sym__cite_suppress_author] = ACTIONS(4803), - [sym__shortcode_open_escaped] = ACTIONS(4803), - [sym__shortcode_open] = ACTIONS(4803), - [sym__unclosed_span] = ACTIONS(4803), - [sym__strong_emphasis_open_star] = ACTIONS(4803), - [sym__strong_emphasis_open_underscore] = ACTIONS(4803), + [sym__backslash_escape] = ACTIONS(4373), + [sym_entity_reference] = ACTIONS(4373), + [sym_numeric_character_reference] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_BSLASH] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_PIPE] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [sym__newline_token] = ACTIONS(4373), + [aux_sym_insert_token1] = ACTIONS(4373), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4373), + [aux_sym_edit_comment_token1] = ACTIONS(4373), + [anon_sym_CARET_LBRACK] = ACTIONS(4373), + [anon_sym_LBRACK_CARET] = ACTIONS(4373), + [sym_uri_autolink] = ACTIONS(4373), + [sym_email_autolink] = ACTIONS(4373), + [sym__whitespace_ge_2] = ACTIONS(4373), + [aux_sym__whitespace_token1] = ACTIONS(4375), + [sym__word_no_digit] = ACTIONS(4373), + [sym__digits] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [sym__code_span_start] = ACTIONS(4373), + [sym__emphasis_open_star] = ACTIONS(4373), + [sym__emphasis_open_underscore] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4485), + [sym__strikeout_open] = ACTIONS(4373), + [sym__latex_span_start] = ACTIONS(4373), + [sym__single_quote_open] = ACTIONS(4373), + [sym__single_quote_close] = ACTIONS(4373), + [sym__double_quote_open] = ACTIONS(4373), + [sym__superscript_open] = ACTIONS(4373), + [sym__subscript_open] = ACTIONS(4373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4373), + [sym__cite_author_in_text] = ACTIONS(4373), + [sym__cite_suppress_author] = ACTIONS(4373), + [sym__shortcode_open_escaped] = ACTIONS(4373), + [sym__shortcode_open] = ACTIONS(4373), + [sym__unclosed_span] = ACTIONS(4373), + [sym__strong_emphasis_open_star] = ACTIONS(4373), + [sym__strong_emphasis_open_underscore] = ACTIONS(4373), }, [STATE(792)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__emphasis_close_star] = ACTIONS(4797), - [sym__last_token_punctuation] = ACTIONS(4927), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4379), + [sym_entity_reference] = ACTIONS(4379), + [sym_numeric_character_reference] = ACTIONS(4379), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_COMMA] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_COLON] = ACTIONS(4379), + [anon_sym_SEMI] = ACTIONS(4379), + [anon_sym_EQ] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_BSLASH] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_PIPE] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym_RPAREN] = ACTIONS(4379), + [sym__newline_token] = ACTIONS(4379), + [aux_sym_insert_token1] = ACTIONS(4379), + [aux_sym_delete_token1] = ACTIONS(4379), + [aux_sym_highlight_token1] = ACTIONS(4379), + [aux_sym_edit_comment_token1] = ACTIONS(4379), + [anon_sym_CARET_LBRACK] = ACTIONS(4379), + [anon_sym_LBRACK_CARET] = ACTIONS(4379), + [sym_uri_autolink] = ACTIONS(4379), + [sym_email_autolink] = ACTIONS(4379), + [sym__whitespace_ge_2] = ACTIONS(4379), + [aux_sym__whitespace_token1] = ACTIONS(4381), + [sym__word_no_digit] = ACTIONS(4379), + [sym__digits] = ACTIONS(4379), + [anon_sym_DASH_DASH] = ACTIONS(4381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4379), + [sym__code_span_start] = ACTIONS(4379), + [sym__emphasis_open_star] = ACTIONS(4379), + [sym__emphasis_open_underscore] = ACTIONS(4379), + [sym__last_token_punctuation] = ACTIONS(4487), + [sym__strikeout_open] = ACTIONS(4379), + [sym__latex_span_start] = ACTIONS(4379), + [sym__single_quote_open] = ACTIONS(4379), + [sym__single_quote_close] = ACTIONS(4379), + [sym__double_quote_open] = ACTIONS(4379), + [sym__superscript_open] = ACTIONS(4379), + [sym__subscript_open] = ACTIONS(4379), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4379), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4379), + [sym__cite_author_in_text] = ACTIONS(4379), + [sym__cite_suppress_author] = ACTIONS(4379), + [sym__shortcode_open_escaped] = ACTIONS(4379), + [sym__shortcode_open] = ACTIONS(4379), + [sym__unclosed_span] = ACTIONS(4379), + [sym__strong_emphasis_open_star] = ACTIONS(4379), + [sym__strong_emphasis_open_underscore] = ACTIONS(4379), }, [STATE(793)] = { - [sym__backslash_escape] = ACTIONS(4803), - [sym_entity_reference] = ACTIONS(4803), - [sym_numeric_character_reference] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4803), - [anon_sym_BANG] = ACTIONS(4803), - [anon_sym_DQUOTE] = ACTIONS(4803), - [anon_sym_POUND] = ACTIONS(4803), - [anon_sym_DOLLAR] = ACTIONS(4803), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_SQUOTE] = ACTIONS(4803), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_SLASH] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_EQ] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4805), - [anon_sym_BSLASH] = ACTIONS(4805), - [anon_sym_CARET] = ACTIONS(4805), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LBRACE] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4803), - [anon_sym_TILDE] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [sym__newline_token] = ACTIONS(4803), - [aux_sym_insert_token1] = ACTIONS(4803), - [aux_sym_delete_token1] = ACTIONS(4803), - [aux_sym_highlight_token1] = ACTIONS(4803), - [aux_sym_edit_comment_token1] = ACTIONS(4803), - [anon_sym_CARET_LBRACK] = ACTIONS(4803), - [anon_sym_LBRACK_CARET] = ACTIONS(4803), - [sym_uri_autolink] = ACTIONS(4803), - [sym_email_autolink] = ACTIONS(4803), - [sym__whitespace_ge_2] = ACTIONS(4803), - [aux_sym__whitespace_token1] = ACTIONS(4805), - [sym__word_no_digit] = ACTIONS(4803), - [sym__digits] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4805), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4803), - [sym__code_span_start] = ACTIONS(4803), - [sym__emphasis_open_star] = ACTIONS(4803), - [sym__emphasis_open_underscore] = ACTIONS(4803), - [sym__emphasis_close_star] = ACTIONS(4803), - [sym__last_token_punctuation] = ACTIONS(4929), - [sym__strikeout_open] = ACTIONS(4803), - [sym__latex_span_start] = ACTIONS(4803), - [sym__single_quote_open] = ACTIONS(4803), - [sym__double_quote_open] = ACTIONS(4803), - [sym__superscript_open] = ACTIONS(4803), - [sym__subscript_open] = ACTIONS(4803), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4803), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4803), - [sym__cite_author_in_text] = ACTIONS(4803), - [sym__cite_suppress_author] = ACTIONS(4803), - [sym__shortcode_open_escaped] = ACTIONS(4803), - [sym__shortcode_open] = ACTIONS(4803), - [sym__unclosed_span] = ACTIONS(4803), - [sym__strong_emphasis_open_star] = ACTIONS(4803), - [sym__strong_emphasis_open_underscore] = ACTIONS(4803), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4307), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__double_quote_close] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(794)] = { - [sym__backslash_escape] = ACTIONS(4741), - [sym_entity_reference] = ACTIONS(4741), - [sym_numeric_character_reference] = ACTIONS(4741), - [anon_sym_LT] = ACTIONS(4743), - [anon_sym_GT] = ACTIONS(4741), - [anon_sym_BANG] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(4741), - [anon_sym_POUND] = ACTIONS(4741), - [anon_sym_DOLLAR] = ACTIONS(4741), - [anon_sym_PERCENT] = ACTIONS(4741), - [anon_sym_AMP] = ACTIONS(4743), - [anon_sym_SQUOTE] = ACTIONS(4741), - [anon_sym_STAR] = ACTIONS(4741), - [anon_sym_PLUS] = ACTIONS(4741), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_DASH] = ACTIONS(4743), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_SLASH] = ACTIONS(4741), - [anon_sym_COLON] = ACTIONS(4741), - [anon_sym_SEMI] = ACTIONS(4741), - [anon_sym_EQ] = ACTIONS(4741), - [anon_sym_QMARK] = ACTIONS(4741), - [anon_sym_LBRACK] = ACTIONS(4743), - [anon_sym_BSLASH] = ACTIONS(4743), - [anon_sym_CARET] = ACTIONS(4743), - [anon_sym_BQUOTE] = ACTIONS(4741), - [anon_sym_LBRACE] = ACTIONS(4741), - [anon_sym_PIPE] = ACTIONS(4741), - [anon_sym_TILDE] = ACTIONS(4741), - [anon_sym_LPAREN] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4741), - [sym__newline_token] = ACTIONS(4741), - [aux_sym_insert_token1] = ACTIONS(4741), - [aux_sym_delete_token1] = ACTIONS(4741), - [aux_sym_highlight_token1] = ACTIONS(4741), - [aux_sym_edit_comment_token1] = ACTIONS(4741), - [anon_sym_CARET_LBRACK] = ACTIONS(4741), - [anon_sym_LBRACK_CARET] = ACTIONS(4741), - [sym_uri_autolink] = ACTIONS(4741), - [sym_email_autolink] = ACTIONS(4741), - [sym__whitespace_ge_2] = ACTIONS(4741), - [aux_sym__whitespace_token1] = ACTIONS(4743), - [sym__word_no_digit] = ACTIONS(4741), - [sym__digits] = ACTIONS(4741), - [anon_sym_DASH_DASH] = ACTIONS(4743), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4741), - [sym__code_span_start] = ACTIONS(4741), - [sym__emphasis_open_star] = ACTIONS(4741), - [sym__emphasis_open_underscore] = ACTIONS(4741), - [sym__last_token_whitespace] = ACTIONS(4759), - [sym__strikeout_open] = ACTIONS(4741), - [sym__strikeout_close] = ACTIONS(4741), - [sym__latex_span_start] = ACTIONS(4741), - [sym__single_quote_open] = ACTIONS(4741), - [sym__double_quote_open] = ACTIONS(4741), - [sym__superscript_open] = ACTIONS(4741), - [sym__subscript_open] = ACTIONS(4741), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4741), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4741), - [sym__cite_author_in_text] = ACTIONS(4741), - [sym__cite_suppress_author] = ACTIONS(4741), - [sym__shortcode_open_escaped] = ACTIONS(4741), - [sym__shortcode_open] = ACTIONS(4741), - [sym__unclosed_span] = ACTIONS(4741), - [sym__strong_emphasis_open_star] = ACTIONS(4741), - [sym__strong_emphasis_open_underscore] = ACTIONS(4741), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4353), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4307), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__double_quote_close] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(795)] = { - [sym__backslash_escape] = ACTIONS(4815), - [sym_entity_reference] = ACTIONS(4815), - [sym_numeric_character_reference] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4815), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BSLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_TILDE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__newline_token] = ACTIONS(4815), - [aux_sym_insert_token1] = ACTIONS(4815), - [aux_sym_delete_token1] = ACTIONS(4815), - [aux_sym_highlight_token1] = ACTIONS(4815), - [aux_sym_edit_comment_token1] = ACTIONS(4815), - [anon_sym_CARET_LBRACK] = ACTIONS(4815), - [anon_sym_LBRACK_CARET] = ACTIONS(4815), - [sym_uri_autolink] = ACTIONS(4815), - [sym_email_autolink] = ACTIONS(4815), - [sym__whitespace_ge_2] = ACTIONS(4815), - [aux_sym__whitespace_token1] = ACTIONS(4817), - [sym__word_no_digit] = ACTIONS(4815), - [sym__digits] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [sym__code_span_start] = ACTIONS(4815), - [sym__emphasis_open_star] = ACTIONS(4815), - [sym__emphasis_open_underscore] = ACTIONS(4815), - [sym__emphasis_close_underscore] = ACTIONS(4815), - [sym__last_token_whitespace] = ACTIONS(4931), - [sym__strikeout_open] = ACTIONS(4815), - [sym__latex_span_start] = ACTIONS(4815), - [sym__single_quote_open] = ACTIONS(4815), - [sym__double_quote_open] = ACTIONS(4815), - [sym__superscript_open] = ACTIONS(4815), - [sym__subscript_open] = ACTIONS(4815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4815), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4815), - [sym__cite_author_in_text] = ACTIONS(4815), - [sym__cite_suppress_author] = ACTIONS(4815), - [sym__shortcode_open_escaped] = ACTIONS(4815), - [sym__shortcode_open] = ACTIONS(4815), - [sym__unclosed_span] = ACTIONS(4815), - [sym__strong_emphasis_open_star] = ACTIONS(4815), - [sym__strong_emphasis_open_underscore] = ACTIONS(4815), + [sym__backslash_escape] = ACTIONS(4297), + [sym_entity_reference] = ACTIONS(4297), + [sym_numeric_character_reference] = ACTIONS(4297), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_DOLLAR] = ACTIONS(4297), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_COMMA] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4297), + [anon_sym_COLON] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4297), + [anon_sym_EQ] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4299), + [anon_sym_BSLASH] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_PIPE] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym_RPAREN] = ACTIONS(4297), + [sym__newline_token] = ACTIONS(4297), + [aux_sym_insert_token1] = ACTIONS(4297), + [aux_sym_delete_token1] = ACTIONS(4297), + [aux_sym_highlight_token1] = ACTIONS(4297), + [aux_sym_edit_comment_token1] = ACTIONS(4297), + [anon_sym_CARET_LBRACK] = ACTIONS(4297), + [anon_sym_LBRACK_CARET] = ACTIONS(4297), + [sym_uri_autolink] = ACTIONS(4297), + [sym_email_autolink] = ACTIONS(4297), + [sym__whitespace_ge_2] = ACTIONS(4297), + [aux_sym__whitespace_token1] = ACTIONS(4299), + [sym__word_no_digit] = ACTIONS(4297), + [sym__digits] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [sym__code_span_start] = ACTIONS(4297), + [sym__emphasis_open_star] = ACTIONS(4297), + [sym__emphasis_open_underscore] = ACTIONS(4297), + [sym__last_token_whitespace] = ACTIONS(4343), + [sym__strikeout_open] = ACTIONS(4297), + [sym__latex_span_start] = ACTIONS(4297), + [sym__single_quote_open] = ACTIONS(4297), + [sym__single_quote_close] = ACTIONS(4297), + [sym__double_quote_open] = ACTIONS(4297), + [sym__superscript_open] = ACTIONS(4297), + [sym__subscript_open] = ACTIONS(4297), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4297), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4297), + [sym__cite_author_in_text] = ACTIONS(4297), + [sym__cite_suppress_author] = ACTIONS(4297), + [sym__shortcode_open_escaped] = ACTIONS(4297), + [sym__shortcode_open] = ACTIONS(4297), + [sym__unclosed_span] = ACTIONS(4297), + [sym__strong_emphasis_open_star] = ACTIONS(4297), + [sym__strong_emphasis_open_underscore] = ACTIONS(4297), }, [STATE(796)] = { - [sym__backslash_escape] = ACTIONS(4827), - [sym_entity_reference] = ACTIONS(4827), - [sym_numeric_character_reference] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4829), - [anon_sym_GT] = ACTIONS(4827), - [anon_sym_BANG] = ACTIONS(4827), - [anon_sym_DQUOTE] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(4827), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_PERCENT] = ACTIONS(4827), - [anon_sym_AMP] = ACTIONS(4829), - [anon_sym_SQUOTE] = ACTIONS(4827), - [anon_sym_STAR] = ACTIONS(4827), - [anon_sym_PLUS] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_DASH] = ACTIONS(4829), - [anon_sym_DOT] = ACTIONS(4829), - [anon_sym_SLASH] = ACTIONS(4827), - [anon_sym_COLON] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(4827), - [anon_sym_EQ] = ACTIONS(4827), - [anon_sym_QMARK] = ACTIONS(4827), - [anon_sym_LBRACK] = ACTIONS(4829), - [anon_sym_BSLASH] = ACTIONS(4829), - [anon_sym_CARET] = ACTIONS(4829), - [anon_sym_BQUOTE] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4827), - [anon_sym_PIPE] = ACTIONS(4827), - [anon_sym_TILDE] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4827), - [sym__newline_token] = ACTIONS(4827), - [aux_sym_insert_token1] = ACTIONS(4827), - [aux_sym_delete_token1] = ACTIONS(4827), - [aux_sym_highlight_token1] = ACTIONS(4827), - [aux_sym_edit_comment_token1] = ACTIONS(4827), - [anon_sym_CARET_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACK_CARET] = ACTIONS(4827), - [sym_uri_autolink] = ACTIONS(4827), - [sym_email_autolink] = ACTIONS(4827), - [sym__whitespace_ge_2] = ACTIONS(4827), - [aux_sym__whitespace_token1] = ACTIONS(4829), - [sym__word_no_digit] = ACTIONS(4827), - [sym__digits] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4829), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4827), - [sym__code_span_start] = ACTIONS(4827), - [sym__emphasis_open_star] = ACTIONS(4827), - [sym__emphasis_open_underscore] = ACTIONS(4827), - [sym__emphasis_close_star] = ACTIONS(4827), - [sym__last_token_punctuation] = ACTIONS(4933), - [sym__strikeout_open] = ACTIONS(4827), - [sym__latex_span_start] = ACTIONS(4827), - [sym__single_quote_open] = ACTIONS(4827), - [sym__double_quote_open] = ACTIONS(4827), - [sym__superscript_open] = ACTIONS(4827), - [sym__subscript_open] = ACTIONS(4827), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4827), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4827), - [sym__cite_author_in_text] = ACTIONS(4827), - [sym__cite_suppress_author] = ACTIONS(4827), - [sym__shortcode_open_escaped] = ACTIONS(4827), - [sym__shortcode_open] = ACTIONS(4827), - [sym__unclosed_span] = ACTIONS(4827), - [sym__strong_emphasis_open_star] = ACTIONS(4827), - [sym__strong_emphasis_open_underscore] = ACTIONS(4827), + [sym__backslash_escape] = ACTIONS(4361), + [sym_entity_reference] = ACTIONS(4361), + [sym_numeric_character_reference] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4361), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4363), + [anon_sym_BSLASH] = ACTIONS(4363), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_BQUOTE] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_PIPE] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [sym__newline_token] = ACTIONS(4361), + [aux_sym_insert_token1] = ACTIONS(4361), + [aux_sym_delete_token1] = ACTIONS(4361), + [aux_sym_highlight_token1] = ACTIONS(4361), + [aux_sym_edit_comment_token1] = ACTIONS(4361), + [anon_sym_CARET_LBRACK] = ACTIONS(4361), + [anon_sym_LBRACK_CARET] = ACTIONS(4361), + [sym_uri_autolink] = ACTIONS(4361), + [sym_email_autolink] = ACTIONS(4361), + [sym__whitespace_ge_2] = ACTIONS(4361), + [aux_sym__whitespace_token1] = ACTIONS(4363), + [sym__word_no_digit] = ACTIONS(4361), + [sym__digits] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4363), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4361), + [sym__code_span_start] = ACTIONS(4361), + [sym__emphasis_open_star] = ACTIONS(4361), + [sym__emphasis_open_underscore] = ACTIONS(4361), + [sym__last_token_punctuation] = ACTIONS(4489), + [sym__strikeout_open] = ACTIONS(4361), + [sym__latex_span_start] = ACTIONS(4361), + [sym__single_quote_open] = ACTIONS(4361), + [sym__double_quote_open] = ACTIONS(4361), + [sym__double_quote_close] = ACTIONS(4361), + [sym__superscript_open] = ACTIONS(4361), + [sym__subscript_open] = ACTIONS(4361), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4361), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4361), + [sym__cite_author_in_text] = ACTIONS(4361), + [sym__cite_suppress_author] = ACTIONS(4361), + [sym__shortcode_open_escaped] = ACTIONS(4361), + [sym__shortcode_open] = ACTIONS(4361), + [sym__unclosed_span] = ACTIONS(4361), + [sym__strong_emphasis_open_star] = ACTIONS(4361), + [sym__strong_emphasis_open_underscore] = ACTIONS(4361), }, [STATE(797)] = { - [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_STAR] = 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__last_token_punctuation] = ACTIONS(4751), - [sym__strikeout_open] = ACTIONS(4747), - [sym__latex_span_start] = ACTIONS(4747), - [sym__single_quote_open] = ACTIONS(4747), - [sym__double_quote_open] = ACTIONS(4747), - [sym__double_quote_close] = 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), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__last_token_punctuation] = ACTIONS(4491), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__double_quote_close] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(798)] = { - [sym__backslash_escape] = ACTIONS(4835), - [sym_entity_reference] = ACTIONS(4835), - [sym_numeric_character_reference] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4835), - [anon_sym_BANG] = ACTIONS(4835), - [anon_sym_DQUOTE] = ACTIONS(4835), - [anon_sym_POUND] = ACTIONS(4835), - [anon_sym_DOLLAR] = ACTIONS(4835), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_SQUOTE] = ACTIONS(4835), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_SLASH] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4837), - [anon_sym_BSLASH] = ACTIONS(4837), - [anon_sym_CARET] = ACTIONS(4837), - [anon_sym_BQUOTE] = ACTIONS(4835), - [anon_sym_LBRACE] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4835), - [anon_sym_TILDE] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [sym__newline_token] = ACTIONS(4835), - [aux_sym_insert_token1] = ACTIONS(4835), - [aux_sym_delete_token1] = ACTIONS(4835), - [aux_sym_highlight_token1] = ACTIONS(4835), - [aux_sym_edit_comment_token1] = ACTIONS(4835), - [anon_sym_CARET_LBRACK] = ACTIONS(4835), - [anon_sym_LBRACK_CARET] = ACTIONS(4835), - [sym_uri_autolink] = ACTIONS(4835), - [sym_email_autolink] = ACTIONS(4835), - [sym__whitespace_ge_2] = ACTIONS(4835), - [aux_sym__whitespace_token1] = ACTIONS(4837), - [sym__word_no_digit] = ACTIONS(4835), - [sym__digits] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4837), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4835), - [sym__code_span_start] = ACTIONS(4835), - [sym__emphasis_open_star] = ACTIONS(4835), - [sym__emphasis_open_underscore] = ACTIONS(4835), - [sym__last_token_punctuation] = ACTIONS(4935), - [sym__strikeout_open] = ACTIONS(4835), - [sym__latex_span_start] = ACTIONS(4835), - [sym__single_quote_open] = ACTIONS(4835), - [sym__double_quote_open] = ACTIONS(4835), - [sym__superscript_open] = ACTIONS(4835), - [sym__superscript_close] = ACTIONS(4835), - [sym__subscript_open] = ACTIONS(4835), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4835), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4835), - [sym__cite_author_in_text] = ACTIONS(4835), - [sym__cite_suppress_author] = ACTIONS(4835), - [sym__shortcode_open_escaped] = ACTIONS(4835), - [sym__shortcode_open] = ACTIONS(4835), - [sym__unclosed_span] = ACTIONS(4835), - [sym__strong_emphasis_open_star] = ACTIONS(4835), - [sym__strong_emphasis_open_underscore] = ACTIONS(4835), + [sym__backslash_escape] = ACTIONS(4373), + [sym_entity_reference] = ACTIONS(4373), + [sym_numeric_character_reference] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_COMMA] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_BSLASH] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_PIPE] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_RPAREN] = ACTIONS(4373), + [sym__newline_token] = ACTIONS(4373), + [aux_sym_insert_token1] = ACTIONS(4373), + [aux_sym_delete_token1] = ACTIONS(4373), + [aux_sym_highlight_token1] = ACTIONS(4373), + [aux_sym_edit_comment_token1] = ACTIONS(4373), + [anon_sym_CARET_LBRACK] = ACTIONS(4373), + [anon_sym_LBRACK_CARET] = ACTIONS(4373), + [sym_uri_autolink] = ACTIONS(4373), + [sym_email_autolink] = ACTIONS(4373), + [sym__whitespace_ge_2] = ACTIONS(4373), + [aux_sym__whitespace_token1] = ACTIONS(4375), + [sym__word_no_digit] = ACTIONS(4373), + [sym__digits] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4373), + [sym__code_span_start] = ACTIONS(4373), + [sym__emphasis_open_star] = ACTIONS(4373), + [sym__emphasis_open_underscore] = ACTIONS(4373), + [sym__last_token_punctuation] = ACTIONS(4493), + [sym__strikeout_open] = ACTIONS(4373), + [sym__latex_span_start] = ACTIONS(4373), + [sym__single_quote_open] = ACTIONS(4373), + [sym__double_quote_open] = ACTIONS(4373), + [sym__double_quote_close] = ACTIONS(4373), + [sym__superscript_open] = ACTIONS(4373), + [sym__subscript_open] = ACTIONS(4373), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4373), + [sym__cite_author_in_text] = ACTIONS(4373), + [sym__cite_suppress_author] = ACTIONS(4373), + [sym__shortcode_open_escaped] = ACTIONS(4373), + [sym__shortcode_open] = ACTIONS(4373), + [sym__unclosed_span] = ACTIONS(4373), + [sym__strong_emphasis_open_star] = ACTIONS(4373), + [sym__strong_emphasis_open_underscore] = ACTIONS(4373), }, [STATE(799)] = { - [ts_builtin_sym_end] = ACTIONS(4815), - [sym__backslash_escape] = ACTIONS(4815), - [sym_entity_reference] = ACTIONS(4815), - [sym_numeric_character_reference] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4815), - [anon_sym_BANG] = ACTIONS(4815), - [anon_sym_DQUOTE] = ACTIONS(4815), - [anon_sym_POUND] = ACTIONS(4815), - [anon_sym_DOLLAR] = ACTIONS(4815), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_SQUOTE] = ACTIONS(4815), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_SLASH] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BSLASH] = ACTIONS(4817), - [anon_sym_CARET] = ACTIONS(4817), - [anon_sym_BQUOTE] = ACTIONS(4815), - [anon_sym_LBRACE] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_TILDE] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym__newline_token] = ACTIONS(4815), - [aux_sym_insert_token1] = ACTIONS(4815), - [aux_sym_delete_token1] = ACTIONS(4815), - [aux_sym_highlight_token1] = ACTIONS(4815), - [aux_sym_edit_comment_token1] = ACTIONS(4815), - [anon_sym_CARET_LBRACK] = ACTIONS(4815), - [anon_sym_LBRACK_CARET] = ACTIONS(4815), - [sym_uri_autolink] = ACTIONS(4815), - [sym_email_autolink] = ACTIONS(4815), - [sym__whitespace_ge_2] = ACTIONS(4815), - [aux_sym__whitespace_token1] = ACTIONS(4817), - [sym__word_no_digit] = ACTIONS(4815), - [sym__digits] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4815), - [sym__code_span_start] = ACTIONS(4815), - [sym__emphasis_open_star] = ACTIONS(4815), - [sym__emphasis_open_underscore] = ACTIONS(4815), - [sym__last_token_whitespace] = ACTIONS(4937), - [sym__strikeout_open] = ACTIONS(4815), - [sym__latex_span_start] = ACTIONS(4815), - [sym__single_quote_open] = ACTIONS(4815), - [sym__double_quote_open] = ACTIONS(4815), - [sym__superscript_open] = ACTIONS(4815), - [sym__subscript_open] = ACTIONS(4815), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4815), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4815), - [sym__cite_author_in_text] = ACTIONS(4815), - [sym__cite_suppress_author] = ACTIONS(4815), - [sym__shortcode_open_escaped] = ACTIONS(4815), - [sym__shortcode_open] = ACTIONS(4815), - [sym__unclosed_span] = ACTIONS(4815), - [sym__strong_emphasis_open_star] = ACTIONS(4815), - [sym__strong_emphasis_open_underscore] = ACTIONS(4815), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_insert_token2] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4305), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__last_token_punctuation] = ACTIONS(4319), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(800)] = { - [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_STAR] = 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), + [sym__backslash_escape] = ACTIONS(4495), + [sym_entity_reference] = ACTIONS(4495), + [sym_numeric_character_reference] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_QMARK] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_BSLASH] = ACTIONS(4497), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_BQUOTE] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [sym__newline_token] = ACTIONS(4495), + [aux_sym_insert_token1] = ACTIONS(4495), + [aux_sym_insert_token2] = ACTIONS(4495), + [aux_sym_delete_token1] = ACTIONS(4495), + [aux_sym_highlight_token1] = ACTIONS(4495), + [aux_sym_edit_comment_token1] = ACTIONS(4495), + [anon_sym_CARET_LBRACK] = ACTIONS(4495), + [anon_sym_LBRACK_CARET] = ACTIONS(4495), + [sym_uri_autolink] = ACTIONS(4495), + [sym_email_autolink] = ACTIONS(4495), + [sym__whitespace_ge_2] = ACTIONS(4497), + [aux_sym__whitespace_token1] = ACTIONS(4497), + [sym__word_no_digit] = ACTIONS(4495), + [sym__digits] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4495), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(4495), + [sym__emphasis_open_underscore] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4495), + [sym__latex_span_start] = ACTIONS(4495), + [sym__single_quote_open] = ACTIONS(4495), + [sym__double_quote_open] = ACTIONS(4495), + [sym__superscript_open] = ACTIONS(4495), + [sym__subscript_open] = ACTIONS(4495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4495), + [sym__cite_author_in_text] = ACTIONS(4495), + [sym__cite_suppress_author] = ACTIONS(4495), + [sym__shortcode_open_escaped] = ACTIONS(4495), + [sym__shortcode_open] = ACTIONS(4495), + [sym__unclosed_span] = ACTIONS(4495), + [sym__strong_emphasis_open_star] = ACTIONS(4495), + [sym__strong_emphasis_open_underscore] = ACTIONS(4495), }, [STATE(801)] = { - [sym__backslash_escape] = ACTIONS(4939), - [sym_entity_reference] = ACTIONS(4939), - [sym_numeric_character_reference] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_POUND] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [sym__newline_token] = ACTIONS(4939), - [aux_sym_insert_token1] = ACTIONS(4939), - [aux_sym_delete_token1] = ACTIONS(4939), - [aux_sym_highlight_token1] = ACTIONS(4939), - [aux_sym_edit_comment_token1] = ACTIONS(4939), - [anon_sym_CARET_LBRACK] = ACTIONS(4939), - [anon_sym_LBRACK_CARET] = ACTIONS(4939), - [sym_uri_autolink] = ACTIONS(4939), - [sym_email_autolink] = ACTIONS(4939), - [sym__whitespace_ge_2] = ACTIONS(4939), - [aux_sym__whitespace_token1] = ACTIONS(4941), - [sym__word_no_digit] = ACTIONS(4939), - [sym__digits] = ACTIONS(4939), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4939), - [sym__code_span_start] = ACTIONS(4939), - [sym__emphasis_open_star] = ACTIONS(4939), - [sym__emphasis_open_underscore] = ACTIONS(4939), - [sym__strikeout_open] = ACTIONS(4939), - [sym__latex_span_start] = ACTIONS(4939), - [sym__single_quote_open] = ACTIONS(4939), - [sym__single_quote_close] = ACTIONS(4939), - [sym__double_quote_open] = ACTIONS(4939), - [sym__superscript_open] = ACTIONS(4939), - [sym__subscript_open] = ACTIONS(4939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4939), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4939), - [sym__cite_author_in_text] = ACTIONS(4939), - [sym__cite_suppress_author] = ACTIONS(4939), - [sym__shortcode_open_escaped] = ACTIONS(4939), - [sym__shortcode_open] = ACTIONS(4939), - [sym__unclosed_span] = ACTIONS(4939), - [sym__strong_emphasis_open_star] = ACTIONS(4939), - [sym__strong_emphasis_open_underscore] = ACTIONS(4939), + [sym__backslash_escape] = ACTIONS(4499), + [sym_entity_reference] = ACTIONS(4499), + [sym_numeric_character_reference] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4501), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_BSLASH] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_PIPE] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [sym__newline_token] = ACTIONS(4499), + [aux_sym_insert_token1] = ACTIONS(4499), + [aux_sym_delete_token1] = ACTIONS(4499), + [aux_sym_highlight_token1] = ACTIONS(4499), + [aux_sym_edit_comment_token1] = ACTIONS(4499), + [anon_sym_CARET_LBRACK] = ACTIONS(4499), + [anon_sym_LBRACK_CARET] = ACTIONS(4499), + [sym_uri_autolink] = ACTIONS(4499), + [sym_email_autolink] = ACTIONS(4499), + [sym__whitespace_ge_2] = ACTIONS(4499), + [aux_sym__whitespace_token1] = ACTIONS(4501), + [sym__word_no_digit] = ACTIONS(4499), + [sym__digits] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4499), + [sym__code_span_start] = ACTIONS(4499), + [sym__emphasis_open_star] = ACTIONS(4499), + [sym__emphasis_open_underscore] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4499), + [sym__latex_span_start] = ACTIONS(4499), + [sym__single_quote_open] = ACTIONS(4499), + [sym__double_quote_open] = ACTIONS(4499), + [sym__superscript_open] = ACTIONS(4499), + [sym__superscript_close] = ACTIONS(4499), + [sym__subscript_open] = ACTIONS(4499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4499), + [sym__cite_author_in_text] = ACTIONS(4499), + [sym__cite_suppress_author] = ACTIONS(4499), + [sym__shortcode_open_escaped] = ACTIONS(4499), + [sym__shortcode_open] = ACTIONS(4499), + [sym__unclosed_span] = ACTIONS(4499), + [sym__strong_emphasis_open_star] = ACTIONS(4499), + [sym__strong_emphasis_open_underscore] = ACTIONS(4499), }, [STATE(802)] = { - [sym__backslash_escape] = ACTIONS(4943), - [sym_entity_reference] = ACTIONS(4943), - [sym_numeric_character_reference] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [sym__newline_token] = ACTIONS(4943), - [aux_sym_insert_token1] = ACTIONS(4943), - [aux_sym_delete_token1] = ACTIONS(4943), - [aux_sym_highlight_token1] = ACTIONS(4943), - [aux_sym_edit_comment_token1] = ACTIONS(4943), - [anon_sym_CARET_LBRACK] = ACTIONS(4943), - [anon_sym_LBRACK_CARET] = ACTIONS(4943), - [sym_uri_autolink] = ACTIONS(4943), - [sym_email_autolink] = ACTIONS(4943), - [sym__whitespace_ge_2] = ACTIONS(4943), - [aux_sym__whitespace_token1] = ACTIONS(4945), - [sym__word_no_digit] = ACTIONS(4943), - [sym__digits] = ACTIONS(4943), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4943), - [sym__code_span_start] = ACTIONS(4943), - [sym__emphasis_open_star] = ACTIONS(4943), - [sym__emphasis_open_underscore] = ACTIONS(4943), - [sym__strikeout_open] = ACTIONS(4943), - [sym__latex_span_start] = ACTIONS(4943), - [sym__single_quote_open] = ACTIONS(4943), - [sym__double_quote_open] = ACTIONS(4943), - [sym__double_quote_close] = ACTIONS(4943), - [sym__superscript_open] = ACTIONS(4943), - [sym__subscript_open] = ACTIONS(4943), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4943), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4943), - [sym__cite_author_in_text] = ACTIONS(4943), - [sym__cite_suppress_author] = ACTIONS(4943), - [sym__shortcode_open_escaped] = ACTIONS(4943), - [sym__shortcode_open] = ACTIONS(4943), - [sym__unclosed_span] = ACTIONS(4943), - [sym__strong_emphasis_open_star] = ACTIONS(4943), - [sym__strong_emphasis_open_underscore] = ACTIONS(4943), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__superscript_close] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(803)] = { - [sym__backslash_escape] = ACTIONS(4947), - [sym_entity_reference] = ACTIONS(4947), - [sym_numeric_character_reference] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_DQUOTE] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [sym__newline_token] = ACTIONS(4947), - [aux_sym_insert_token1] = ACTIONS(4947), - [aux_sym_delete_token1] = ACTIONS(4947), - [aux_sym_highlight_token1] = ACTIONS(4947), - [aux_sym_edit_comment_token1] = ACTIONS(4947), - [anon_sym_CARET_LBRACK] = ACTIONS(4947), - [anon_sym_LBRACK_CARET] = ACTIONS(4947), - [sym_uri_autolink] = ACTIONS(4947), - [sym_email_autolink] = ACTIONS(4947), - [sym__whitespace_ge_2] = ACTIONS(4947), - [aux_sym__whitespace_token1] = ACTIONS(4949), - [sym__word_no_digit] = ACTIONS(4947), - [sym__digits] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4947), - [sym__code_span_start] = ACTIONS(4947), - [sym__emphasis_open_star] = ACTIONS(4947), - [sym__emphasis_open_underscore] = ACTIONS(4947), - [sym__strikeout_open] = ACTIONS(4947), - [sym__latex_span_start] = ACTIONS(4947), - [sym__single_quote_open] = ACTIONS(4947), - [sym__double_quote_open] = ACTIONS(4947), - [sym__double_quote_close] = ACTIONS(4947), - [sym__superscript_open] = ACTIONS(4947), - [sym__subscript_open] = ACTIONS(4947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4947), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4947), - [sym__cite_author_in_text] = ACTIONS(4947), - [sym__cite_suppress_author] = ACTIONS(4947), - [sym__shortcode_open_escaped] = ACTIONS(4947), - [sym__shortcode_open] = ACTIONS(4947), - [sym__unclosed_span] = ACTIONS(4947), - [sym__strong_emphasis_open_star] = ACTIONS(4947), - [sym__strong_emphasis_open_underscore] = ACTIONS(4947), + [ts_builtin_sym_end] = ACTIONS(4503), + [sym__backslash_escape] = ACTIONS(4503), + [sym_entity_reference] = ACTIONS(4503), + [sym_numeric_character_reference] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_BQUOTE] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_PIPE] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [sym__newline_token] = ACTIONS(4503), + [aux_sym_insert_token1] = ACTIONS(4503), + [aux_sym_delete_token1] = ACTIONS(4503), + [aux_sym_highlight_token1] = ACTIONS(4503), + [aux_sym_edit_comment_token1] = ACTIONS(4503), + [anon_sym_CARET_LBRACK] = ACTIONS(4503), + [anon_sym_LBRACK_CARET] = ACTIONS(4503), + [sym_uri_autolink] = ACTIONS(4503), + [sym_email_autolink] = ACTIONS(4503), + [sym__whitespace_ge_2] = ACTIONS(4503), + [aux_sym__whitespace_token1] = ACTIONS(4505), + [sym__word_no_digit] = ACTIONS(4503), + [sym__digits] = ACTIONS(4503), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4503), + [sym__code_span_start] = ACTIONS(4503), + [sym__emphasis_open_star] = ACTIONS(4503), + [sym__emphasis_open_underscore] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4503), + [sym__latex_span_start] = ACTIONS(4503), + [sym__single_quote_open] = ACTIONS(4503), + [sym__double_quote_open] = ACTIONS(4503), + [sym__superscript_open] = ACTIONS(4503), + [sym__subscript_open] = ACTIONS(4503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4503), + [sym__cite_author_in_text] = ACTIONS(4503), + [sym__cite_suppress_author] = ACTIONS(4503), + [sym__shortcode_open_escaped] = ACTIONS(4503), + [sym__shortcode_open] = ACTIONS(4503), + [sym__unclosed_span] = ACTIONS(4503), + [sym__strong_emphasis_open_star] = ACTIONS(4503), + [sym__strong_emphasis_open_underscore] = ACTIONS(4503), }, [STATE(804)] = { - [sym__backslash_escape] = ACTIONS(4951), - [sym_entity_reference] = ACTIONS(4951), - [sym_numeric_character_reference] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [sym__newline_token] = ACTIONS(4951), - [aux_sym_insert_token1] = ACTIONS(4951), - [aux_sym_delete_token1] = ACTIONS(4951), - [aux_sym_highlight_token1] = ACTIONS(4951), - [aux_sym_edit_comment_token1] = ACTIONS(4951), - [anon_sym_CARET_LBRACK] = ACTIONS(4951), - [anon_sym_LBRACK_CARET] = ACTIONS(4951), - [sym_uri_autolink] = ACTIONS(4951), - [sym_email_autolink] = ACTIONS(4951), - [sym__whitespace_ge_2] = ACTIONS(4951), - [aux_sym__whitespace_token1] = ACTIONS(4953), - [sym__word_no_digit] = ACTIONS(4951), - [sym__digits] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4951), - [sym__code_span_start] = ACTIONS(4951), - [sym__emphasis_open_star] = ACTIONS(4951), - [sym__emphasis_open_underscore] = ACTIONS(4951), - [sym__strikeout_open] = ACTIONS(4951), - [sym__latex_span_start] = ACTIONS(4951), - [sym__single_quote_open] = ACTIONS(4951), - [sym__double_quote_open] = ACTIONS(4951), - [sym__double_quote_close] = ACTIONS(4951), - [sym__superscript_open] = ACTIONS(4951), - [sym__subscript_open] = ACTIONS(4951), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4951), - [sym__cite_author_in_text] = ACTIONS(4951), - [sym__cite_suppress_author] = ACTIONS(4951), - [sym__shortcode_open_escaped] = ACTIONS(4951), - [sym__shortcode_open] = ACTIONS(4951), - [sym__unclosed_span] = ACTIONS(4951), - [sym__strong_emphasis_open_star] = ACTIONS(4951), - [sym__strong_emphasis_open_underscore] = ACTIONS(4951), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__superscript_close] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(805)] = { - [sym__backslash_escape] = ACTIONS(4955), - [sym_entity_reference] = ACTIONS(4955), - [sym_numeric_character_reference] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_DQUOTE] = ACTIONS(4955), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4957), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [sym__newline_token] = ACTIONS(4955), - [aux_sym_insert_token1] = ACTIONS(4955), - [aux_sym_delete_token1] = ACTIONS(4955), - [aux_sym_highlight_token1] = ACTIONS(4955), - [aux_sym_edit_comment_token1] = ACTIONS(4955), - [anon_sym_CARET_LBRACK] = ACTIONS(4955), - [anon_sym_LBRACK_CARET] = ACTIONS(4955), - [sym_uri_autolink] = ACTIONS(4955), - [sym_email_autolink] = ACTIONS(4955), - [sym__whitespace_ge_2] = ACTIONS(4955), - [aux_sym__whitespace_token1] = ACTIONS(4957), - [sym__word_no_digit] = ACTIONS(4955), - [sym__digits] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4955), - [sym__code_span_start] = ACTIONS(4955), - [sym__emphasis_open_star] = ACTIONS(4955), - [sym__emphasis_open_underscore] = ACTIONS(4955), - [sym__strikeout_open] = ACTIONS(4955), - [sym__latex_span_start] = ACTIONS(4955), - [sym__single_quote_open] = ACTIONS(4955), - [sym__double_quote_open] = ACTIONS(4955), - [sym__double_quote_close] = ACTIONS(4955), - [sym__superscript_open] = ACTIONS(4955), - [sym__subscript_open] = ACTIONS(4955), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4955), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4955), - [sym__cite_author_in_text] = ACTIONS(4955), - [sym__cite_suppress_author] = ACTIONS(4955), - [sym__shortcode_open_escaped] = ACTIONS(4955), - [sym__shortcode_open] = ACTIONS(4955), - [sym__unclosed_span] = ACTIONS(4955), - [sym__strong_emphasis_open_star] = ACTIONS(4955), - [sym__strong_emphasis_open_underscore] = ACTIONS(4955), + [sym__backslash_escape] = ACTIONS(4507), + [sym_entity_reference] = ACTIONS(4507), + [sym_numeric_character_reference] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(4507), + [anon_sym_DOLLAR] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_QMARK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_BSLASH] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [sym__newline_token] = ACTIONS(4507), + [aux_sym_insert_token1] = ACTIONS(4507), + [aux_sym_delete_token1] = ACTIONS(4507), + [aux_sym_highlight_token1] = ACTIONS(4507), + [aux_sym_edit_comment_token1] = ACTIONS(4507), + [anon_sym_CARET_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK_CARET] = ACTIONS(4507), + [sym_uri_autolink] = ACTIONS(4507), + [sym_email_autolink] = ACTIONS(4507), + [sym__whitespace_ge_2] = ACTIONS(4507), + [aux_sym__whitespace_token1] = ACTIONS(4509), + [sym__word_no_digit] = ACTIONS(4507), + [sym__digits] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4507), + [sym__code_span_start] = ACTIONS(4507), + [sym__emphasis_open_star] = ACTIONS(4507), + [sym__emphasis_open_underscore] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4507), + [sym__latex_span_start] = ACTIONS(4507), + [sym__single_quote_open] = ACTIONS(4507), + [sym__double_quote_open] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4507), + [sym__superscript_close] = ACTIONS(4507), + [sym__subscript_open] = ACTIONS(4507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4507), + [sym__cite_author_in_text] = ACTIONS(4507), + [sym__cite_suppress_author] = ACTIONS(4507), + [sym__shortcode_open_escaped] = ACTIONS(4507), + [sym__shortcode_open] = ACTIONS(4507), + [sym__unclosed_span] = ACTIONS(4507), + [sym__strong_emphasis_open_star] = ACTIONS(4507), + [sym__strong_emphasis_open_underscore] = ACTIONS(4507), }, [STATE(806)] = { - [sym__backslash_escape] = ACTIONS(4959), - [sym_entity_reference] = ACTIONS(4959), - [sym_numeric_character_reference] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_DQUOTE] = ACTIONS(4959), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4961), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_TILDE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4959), - [sym__newline_token] = ACTIONS(4959), - [aux_sym_insert_token1] = ACTIONS(4959), - [aux_sym_delete_token1] = ACTIONS(4959), - [aux_sym_highlight_token1] = ACTIONS(4959), - [aux_sym_edit_comment_token1] = ACTIONS(4959), - [anon_sym_CARET_LBRACK] = ACTIONS(4959), - [anon_sym_LBRACK_CARET] = ACTIONS(4959), - [sym_uri_autolink] = ACTIONS(4959), - [sym_email_autolink] = ACTIONS(4959), - [sym__whitespace_ge_2] = ACTIONS(4959), - [aux_sym__whitespace_token1] = ACTIONS(4961), - [sym__word_no_digit] = ACTIONS(4959), - [sym__digits] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4959), - [sym__code_span_start] = ACTIONS(4959), - [sym__emphasis_open_star] = ACTIONS(4959), - [sym__emphasis_open_underscore] = ACTIONS(4959), - [sym__strikeout_open] = ACTIONS(4959), - [sym__latex_span_start] = ACTIONS(4959), - [sym__single_quote_open] = ACTIONS(4959), - [sym__double_quote_open] = ACTIONS(4959), - [sym__double_quote_close] = ACTIONS(4959), - [sym__superscript_open] = ACTIONS(4959), - [sym__subscript_open] = ACTIONS(4959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4959), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4959), - [sym__cite_author_in_text] = ACTIONS(4959), - [sym__cite_suppress_author] = ACTIONS(4959), - [sym__shortcode_open_escaped] = ACTIONS(4959), - [sym__shortcode_open] = ACTIONS(4959), - [sym__unclosed_span] = ACTIONS(4959), - [sym__strong_emphasis_open_star] = ACTIONS(4959), - [sym__strong_emphasis_open_underscore] = ACTIONS(4959), + [sym__backslash_escape] = ACTIONS(4511), + [sym_entity_reference] = ACTIONS(4511), + [sym_numeric_character_reference] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4511), + [anon_sym_POUND] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_COMMA] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_QMARK] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_BQUOTE] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(4511), + [sym__newline_token] = ACTIONS(4511), + [aux_sym_insert_token1] = ACTIONS(4511), + [aux_sym_delete_token1] = ACTIONS(4511), + [aux_sym_highlight_token1] = ACTIONS(4511), + [aux_sym_edit_comment_token1] = ACTIONS(4511), + [anon_sym_CARET_LBRACK] = ACTIONS(4511), + [anon_sym_LBRACK_CARET] = ACTIONS(4511), + [sym_uri_autolink] = ACTIONS(4511), + [sym_email_autolink] = ACTIONS(4511), + [sym__whitespace_ge_2] = ACTIONS(4511), + [aux_sym__whitespace_token1] = ACTIONS(4513), + [sym__word_no_digit] = ACTIONS(4511), + [sym__digits] = ACTIONS(4511), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), + [sym__code_span_start] = ACTIONS(4511), + [sym__emphasis_open_star] = ACTIONS(4511), + [sym__emphasis_open_underscore] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4511), + [sym__latex_span_start] = ACTIONS(4511), + [sym__single_quote_open] = ACTIONS(4511), + [sym__double_quote_open] = ACTIONS(4511), + [sym__superscript_open] = ACTIONS(4511), + [sym__superscript_close] = ACTIONS(4511), + [sym__subscript_open] = ACTIONS(4511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), + [sym__cite_author_in_text] = ACTIONS(4511), + [sym__cite_suppress_author] = ACTIONS(4511), + [sym__shortcode_open_escaped] = ACTIONS(4511), + [sym__shortcode_open] = ACTIONS(4511), + [sym__unclosed_span] = ACTIONS(4511), + [sym__strong_emphasis_open_star] = ACTIONS(4511), + [sym__strong_emphasis_open_underscore] = ACTIONS(4511), }, [STATE(807)] = { - [sym__backslash_escape] = ACTIONS(4963), - [sym_entity_reference] = ACTIONS(4963), - [sym_numeric_character_reference] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_DQUOTE] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4963), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_RPAREN] = ACTIONS(4963), - [sym__newline_token] = ACTIONS(4963), - [aux_sym_insert_token1] = ACTIONS(4963), - [aux_sym_delete_token1] = ACTIONS(4963), - [aux_sym_highlight_token1] = ACTIONS(4963), - [aux_sym_edit_comment_token1] = ACTIONS(4963), - [anon_sym_CARET_LBRACK] = ACTIONS(4963), - [anon_sym_LBRACK_CARET] = ACTIONS(4963), - [sym_uri_autolink] = ACTIONS(4963), - [sym_email_autolink] = ACTIONS(4963), - [sym__whitespace_ge_2] = ACTIONS(4963), - [aux_sym__whitespace_token1] = ACTIONS(4965), - [sym__word_no_digit] = ACTIONS(4963), - [sym__digits] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4963), - [sym__code_span_start] = ACTIONS(4963), - [sym__emphasis_open_star] = ACTIONS(4963), - [sym__emphasis_open_underscore] = ACTIONS(4963), - [sym__strikeout_open] = ACTIONS(4963), - [sym__latex_span_start] = ACTIONS(4963), - [sym__single_quote_open] = ACTIONS(4963), - [sym__double_quote_open] = ACTIONS(4963), - [sym__double_quote_close] = ACTIONS(4963), - [sym__superscript_open] = ACTIONS(4963), - [sym__subscript_open] = ACTIONS(4963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4963), - [sym__cite_author_in_text] = ACTIONS(4963), - [sym__cite_suppress_author] = ACTIONS(4963), - [sym__shortcode_open_escaped] = ACTIONS(4963), - [sym__shortcode_open] = ACTIONS(4963), - [sym__unclosed_span] = ACTIONS(4963), - [sym__strong_emphasis_open_star] = ACTIONS(4963), - [sym__strong_emphasis_open_underscore] = ACTIONS(4963), + [sym__backslash_escape] = ACTIONS(4515), + [sym_entity_reference] = ACTIONS(4515), + [sym_numeric_character_reference] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4515), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_BSLASH] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_RPAREN] = ACTIONS(4515), + [sym__newline_token] = ACTIONS(4515), + [aux_sym_insert_token1] = ACTIONS(4515), + [aux_sym_delete_token1] = ACTIONS(4515), + [aux_sym_highlight_token1] = ACTIONS(4515), + [aux_sym_edit_comment_token1] = ACTIONS(4515), + [anon_sym_CARET_LBRACK] = ACTIONS(4515), + [anon_sym_LBRACK_CARET] = ACTIONS(4515), + [sym_uri_autolink] = ACTIONS(4515), + [sym_email_autolink] = ACTIONS(4515), + [sym__whitespace_ge_2] = ACTIONS(4515), + [aux_sym__whitespace_token1] = ACTIONS(4517), + [sym__word_no_digit] = ACTIONS(4515), + [sym__digits] = ACTIONS(4515), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4515), + [sym__code_span_start] = ACTIONS(4515), + [sym__emphasis_open_star] = ACTIONS(4515), + [sym__emphasis_open_underscore] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4515), + [sym__latex_span_start] = ACTIONS(4515), + [sym__single_quote_open] = ACTIONS(4515), + [sym__double_quote_open] = ACTIONS(4515), + [sym__superscript_open] = ACTIONS(4515), + [sym__superscript_close] = ACTIONS(4515), + [sym__subscript_open] = ACTIONS(4515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4515), + [sym__cite_author_in_text] = ACTIONS(4515), + [sym__cite_suppress_author] = ACTIONS(4515), + [sym__shortcode_open_escaped] = ACTIONS(4515), + [sym__shortcode_open] = ACTIONS(4515), + [sym__unclosed_span] = ACTIONS(4515), + [sym__strong_emphasis_open_star] = ACTIONS(4515), + [sym__strong_emphasis_open_underscore] = ACTIONS(4515), }, [STATE(808)] = { - [sym__backslash_escape] = ACTIONS(4967), - [sym_entity_reference] = ACTIONS(4967), - [sym_numeric_character_reference] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_BQUOTE] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [sym__newline_token] = ACTIONS(4967), - [aux_sym_insert_token1] = ACTIONS(4967), - [aux_sym_delete_token1] = ACTIONS(4967), - [aux_sym_highlight_token1] = ACTIONS(4967), - [aux_sym_edit_comment_token1] = ACTIONS(4967), - [anon_sym_CARET_LBRACK] = ACTIONS(4967), - [anon_sym_LBRACK_CARET] = ACTIONS(4967), - [sym_uri_autolink] = ACTIONS(4967), - [sym_email_autolink] = ACTIONS(4967), - [sym__whitespace_ge_2] = ACTIONS(4967), - [aux_sym__whitespace_token1] = ACTIONS(4969), - [sym__word_no_digit] = ACTIONS(4967), - [sym__digits] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [sym__code_span_start] = ACTIONS(4967), - [sym__emphasis_open_star] = ACTIONS(4967), - [sym__emphasis_open_underscore] = ACTIONS(4967), - [sym__strikeout_open] = ACTIONS(4967), - [sym__latex_span_start] = ACTIONS(4967), - [sym__single_quote_open] = ACTIONS(4967), - [sym__double_quote_open] = ACTIONS(4967), - [sym__double_quote_close] = ACTIONS(4967), - [sym__superscript_open] = ACTIONS(4967), - [sym__subscript_open] = ACTIONS(4967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4967), - [sym__cite_author_in_text] = ACTIONS(4967), - [sym__cite_suppress_author] = ACTIONS(4967), - [sym__shortcode_open_escaped] = ACTIONS(4967), - [sym__shortcode_open] = ACTIONS(4967), - [sym__unclosed_span] = ACTIONS(4967), - [sym__strong_emphasis_open_star] = ACTIONS(4967), - [sym__strong_emphasis_open_underscore] = ACTIONS(4967), + [sym__backslash_escape] = ACTIONS(4519), + [sym_entity_reference] = ACTIONS(4519), + [sym_numeric_character_reference] = ACTIONS(4519), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4519), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_BSLASH] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_BQUOTE] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [sym__newline_token] = ACTIONS(4519), + [aux_sym_insert_token1] = ACTIONS(4519), + [aux_sym_delete_token1] = ACTIONS(4519), + [aux_sym_highlight_token1] = ACTIONS(4519), + [aux_sym_edit_comment_token1] = ACTIONS(4519), + [anon_sym_CARET_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_CARET] = ACTIONS(4519), + [sym_uri_autolink] = ACTIONS(4519), + [sym_email_autolink] = ACTIONS(4519), + [sym__whitespace_ge_2] = ACTIONS(4519), + [aux_sym__whitespace_token1] = ACTIONS(4521), + [sym__word_no_digit] = ACTIONS(4519), + [sym__digits] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [sym__code_span_start] = ACTIONS(4519), + [sym__emphasis_open_star] = ACTIONS(4519), + [sym__emphasis_open_underscore] = ACTIONS(4519), + [sym__strikeout_open] = ACTIONS(4519), + [sym__latex_span_start] = ACTIONS(4519), + [sym__single_quote_open] = ACTIONS(4519), + [sym__double_quote_open] = ACTIONS(4519), + [sym__superscript_open] = ACTIONS(4519), + [sym__superscript_close] = ACTIONS(4519), + [sym__subscript_open] = ACTIONS(4519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4519), + [sym__cite_suppress_author] = ACTIONS(4519), + [sym__shortcode_open_escaped] = ACTIONS(4519), + [sym__shortcode_open] = ACTIONS(4519), + [sym__unclosed_span] = ACTIONS(4519), + [sym__strong_emphasis_open_star] = ACTIONS(4519), + [sym__strong_emphasis_open_underscore] = ACTIONS(4519), }, [STATE(809)] = { - [sym__backslash_escape] = ACTIONS(4971), - [sym_entity_reference] = ACTIONS(4971), - [sym_numeric_character_reference] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym_BQUOTE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [sym__newline_token] = ACTIONS(4971), - [aux_sym_insert_token1] = ACTIONS(4971), - [aux_sym_delete_token1] = ACTIONS(4971), - [aux_sym_highlight_token1] = ACTIONS(4971), - [aux_sym_edit_comment_token1] = ACTIONS(4971), - [anon_sym_CARET_LBRACK] = ACTIONS(4971), - [anon_sym_LBRACK_CARET] = ACTIONS(4971), - [sym_uri_autolink] = ACTIONS(4971), - [sym_email_autolink] = ACTIONS(4971), - [sym__whitespace_ge_2] = ACTIONS(4971), - [aux_sym__whitespace_token1] = ACTIONS(4973), - [sym__word_no_digit] = ACTIONS(4971), - [sym__digits] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4971), - [sym__code_span_start] = ACTIONS(4971), - [sym__emphasis_open_star] = ACTIONS(4971), - [sym__emphasis_open_underscore] = ACTIONS(4971), - [sym__strikeout_open] = ACTIONS(4971), - [sym__latex_span_start] = ACTIONS(4971), - [sym__single_quote_open] = ACTIONS(4971), - [sym__double_quote_open] = ACTIONS(4971), - [sym__double_quote_close] = ACTIONS(4971), - [sym__superscript_open] = ACTIONS(4971), - [sym__subscript_open] = ACTIONS(4971), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4971), - [sym__cite_author_in_text] = ACTIONS(4971), - [sym__cite_suppress_author] = ACTIONS(4971), - [sym__shortcode_open_escaped] = ACTIONS(4971), - [sym__shortcode_open] = ACTIONS(4971), - [sym__unclosed_span] = ACTIONS(4971), - [sym__strong_emphasis_open_star] = ACTIONS(4971), - [sym__strong_emphasis_open_underscore] = ACTIONS(4971), + [sym__backslash_escape] = ACTIONS(4523), + [sym_entity_reference] = ACTIONS(4523), + [sym_numeric_character_reference] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_BSLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [sym__newline_token] = ACTIONS(4523), + [aux_sym_insert_token1] = ACTIONS(4523), + [aux_sym_delete_token1] = ACTIONS(4523), + [aux_sym_highlight_token1] = ACTIONS(4523), + [aux_sym_edit_comment_token1] = ACTIONS(4523), + [anon_sym_CARET_LBRACK] = ACTIONS(4523), + [anon_sym_LBRACK_CARET] = ACTIONS(4523), + [sym_uri_autolink] = ACTIONS(4523), + [sym_email_autolink] = ACTIONS(4523), + [sym__whitespace_ge_2] = ACTIONS(4523), + [aux_sym__whitespace_token1] = ACTIONS(4525), + [sym__word_no_digit] = ACTIONS(4523), + [sym__digits] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4523), + [sym__code_span_start] = ACTIONS(4523), + [sym__emphasis_open_star] = ACTIONS(4523), + [sym__emphasis_open_underscore] = ACTIONS(4523), + [sym__strikeout_open] = ACTIONS(4523), + [sym__latex_span_start] = ACTIONS(4523), + [sym__single_quote_open] = ACTIONS(4523), + [sym__double_quote_open] = ACTIONS(4523), + [sym__superscript_open] = ACTIONS(4523), + [sym__superscript_close] = ACTIONS(4523), + [sym__subscript_open] = ACTIONS(4523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4523), + [sym__cite_author_in_text] = ACTIONS(4523), + [sym__cite_suppress_author] = ACTIONS(4523), + [sym__shortcode_open_escaped] = ACTIONS(4523), + [sym__shortcode_open] = ACTIONS(4523), + [sym__unclosed_span] = ACTIONS(4523), + [sym__strong_emphasis_open_star] = ACTIONS(4523), + [sym__strong_emphasis_open_underscore] = ACTIONS(4523), }, [STATE(810)] = { - [sym__backslash_escape] = ACTIONS(4975), - [sym_entity_reference] = ACTIONS(4975), - [sym_numeric_character_reference] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [sym__newline_token] = ACTIONS(4975), - [aux_sym_insert_token1] = ACTIONS(4975), - [aux_sym_delete_token1] = ACTIONS(4975), - [aux_sym_highlight_token1] = ACTIONS(4975), - [aux_sym_edit_comment_token1] = ACTIONS(4975), - [anon_sym_CARET_LBRACK] = ACTIONS(4975), - [anon_sym_LBRACK_CARET] = ACTIONS(4975), - [sym_uri_autolink] = ACTIONS(4975), - [sym_email_autolink] = ACTIONS(4975), - [sym__whitespace_ge_2] = ACTIONS(4975), - [aux_sym__whitespace_token1] = ACTIONS(4977), - [sym__word_no_digit] = ACTIONS(4975), - [sym__digits] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [sym__code_span_start] = ACTIONS(4975), - [sym__emphasis_open_star] = ACTIONS(4975), - [sym__emphasis_open_underscore] = ACTIONS(4975), - [sym__strikeout_open] = ACTIONS(4975), - [sym__latex_span_start] = ACTIONS(4975), - [sym__single_quote_open] = ACTIONS(4975), - [sym__double_quote_open] = ACTIONS(4975), - [sym__double_quote_close] = ACTIONS(4975), - [sym__superscript_open] = ACTIONS(4975), - [sym__subscript_open] = ACTIONS(4975), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4975), - [sym__cite_author_in_text] = ACTIONS(4975), - [sym__cite_suppress_author] = ACTIONS(4975), - [sym__shortcode_open_escaped] = ACTIONS(4975), - [sym__shortcode_open] = ACTIONS(4975), - [sym__unclosed_span] = ACTIONS(4975), - [sym__strong_emphasis_open_star] = ACTIONS(4975), - [sym__strong_emphasis_open_underscore] = ACTIONS(4975), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__superscript_close] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(811)] = { - [sym__backslash_escape] = ACTIONS(4979), - [sym_entity_reference] = ACTIONS(4979), - [sym_numeric_character_reference] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_COLON] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), - [sym__newline_token] = ACTIONS(4979), - [aux_sym_insert_token1] = ACTIONS(4979), - [aux_sym_delete_token1] = ACTIONS(4979), - [aux_sym_highlight_token1] = ACTIONS(4979), - [aux_sym_edit_comment_token1] = ACTIONS(4979), - [anon_sym_CARET_LBRACK] = ACTIONS(4979), - [anon_sym_LBRACK_CARET] = ACTIONS(4979), - [sym_uri_autolink] = ACTIONS(4979), - [sym_email_autolink] = ACTIONS(4979), - [sym__whitespace_ge_2] = ACTIONS(4979), - [aux_sym__whitespace_token1] = ACTIONS(4981), - [sym__word_no_digit] = ACTIONS(4979), - [sym__digits] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4979), - [sym__code_span_start] = ACTIONS(4979), - [sym__emphasis_open_star] = ACTIONS(4979), - [sym__emphasis_open_underscore] = ACTIONS(4979), - [sym__strikeout_open] = ACTIONS(4979), - [sym__latex_span_start] = ACTIONS(4979), - [sym__single_quote_open] = ACTIONS(4979), - [sym__double_quote_open] = ACTIONS(4979), - [sym__double_quote_close] = ACTIONS(4979), - [sym__superscript_open] = ACTIONS(4979), - [sym__subscript_open] = ACTIONS(4979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4979), - [sym__cite_author_in_text] = ACTIONS(4979), - [sym__cite_suppress_author] = ACTIONS(4979), - [sym__shortcode_open_escaped] = ACTIONS(4979), - [sym__shortcode_open] = ACTIONS(4979), - [sym__unclosed_span] = ACTIONS(4979), - [sym__strong_emphasis_open_star] = ACTIONS(4979), - [sym__strong_emphasis_open_underscore] = ACTIONS(4979), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__superscript_close] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(812)] = { - [sym__backslash_escape] = ACTIONS(4983), - [sym_entity_reference] = ACTIONS(4983), - [sym_numeric_character_reference] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [sym__newline_token] = ACTIONS(4983), - [aux_sym_insert_token1] = ACTIONS(4983), - [aux_sym_delete_token1] = ACTIONS(4983), - [aux_sym_highlight_token1] = ACTIONS(4983), - [aux_sym_edit_comment_token1] = ACTIONS(4983), - [anon_sym_CARET_LBRACK] = ACTIONS(4983), - [anon_sym_LBRACK_CARET] = ACTIONS(4983), - [sym_uri_autolink] = ACTIONS(4983), - [sym_email_autolink] = ACTIONS(4983), - [sym__whitespace_ge_2] = ACTIONS(4983), - [aux_sym__whitespace_token1] = ACTIONS(4985), - [sym__word_no_digit] = ACTIONS(4983), - [sym__digits] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4983), - [sym__code_span_start] = ACTIONS(4983), - [sym__emphasis_open_star] = ACTIONS(4983), - [sym__emphasis_open_underscore] = ACTIONS(4983), - [sym__strikeout_open] = ACTIONS(4983), - [sym__latex_span_start] = ACTIONS(4983), - [sym__single_quote_open] = ACTIONS(4983), - [sym__double_quote_open] = ACTIONS(4983), - [sym__double_quote_close] = ACTIONS(4983), - [sym__superscript_open] = ACTIONS(4983), - [sym__subscript_open] = ACTIONS(4983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4983), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4983), - [sym__cite_author_in_text] = ACTIONS(4983), - [sym__cite_suppress_author] = ACTIONS(4983), - [sym__shortcode_open_escaped] = ACTIONS(4983), - [sym__shortcode_open] = ACTIONS(4983), - [sym__unclosed_span] = ACTIONS(4983), - [sym__strong_emphasis_open_star] = ACTIONS(4983), - [sym__strong_emphasis_open_underscore] = ACTIONS(4983), + [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(813)] = { - [sym__backslash_escape] = ACTIONS(4987), - [sym_entity_reference] = ACTIONS(4987), - [sym_numeric_character_reference] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym__newline_token] = ACTIONS(4987), - [aux_sym_insert_token1] = ACTIONS(4987), - [aux_sym_delete_token1] = ACTIONS(4987), - [aux_sym_highlight_token1] = ACTIONS(4987), - [aux_sym_edit_comment_token1] = ACTIONS(4987), - [anon_sym_CARET_LBRACK] = ACTIONS(4987), - [anon_sym_LBRACK_CARET] = ACTIONS(4987), - [sym_uri_autolink] = ACTIONS(4987), - [sym_email_autolink] = ACTIONS(4987), - [sym__whitespace_ge_2] = ACTIONS(4987), - [aux_sym__whitespace_token1] = ACTIONS(4989), - [sym__word_no_digit] = ACTIONS(4987), - [sym__digits] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4987), - [sym__code_span_start] = ACTIONS(4987), - [sym__emphasis_open_star] = ACTIONS(4987), - [sym__emphasis_open_underscore] = ACTIONS(4987), - [sym__strikeout_open] = ACTIONS(4987), - [sym__latex_span_start] = ACTIONS(4987), - [sym__single_quote_open] = ACTIONS(4987), - [sym__double_quote_open] = ACTIONS(4987), - [sym__double_quote_close] = ACTIONS(4987), - [sym__superscript_open] = ACTIONS(4987), - [sym__subscript_open] = ACTIONS(4987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4987), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4987), - [sym__cite_author_in_text] = ACTIONS(4987), - [sym__cite_suppress_author] = ACTIONS(4987), - [sym__shortcode_open_escaped] = ACTIONS(4987), - [sym__shortcode_open] = ACTIONS(4987), - [sym__unclosed_span] = ACTIONS(4987), - [sym__strong_emphasis_open_star] = ACTIONS(4987), - [sym__strong_emphasis_open_underscore] = ACTIONS(4987), + [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(814)] = { - [sym__backslash_escape] = ACTIONS(4991), - [sym_entity_reference] = ACTIONS(4991), - [sym_numeric_character_reference] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH] = ACTIONS(4993), - [anon_sym_CARET] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym__newline_token] = ACTIONS(4991), - [aux_sym_insert_token1] = ACTIONS(4991), - [aux_sym_delete_token1] = ACTIONS(4991), - [aux_sym_highlight_token1] = ACTIONS(4991), - [aux_sym_edit_comment_token1] = ACTIONS(4991), - [anon_sym_CARET_LBRACK] = ACTIONS(4991), - [anon_sym_LBRACK_CARET] = ACTIONS(4991), - [sym_uri_autolink] = ACTIONS(4991), - [sym_email_autolink] = ACTIONS(4991), - [sym__whitespace_ge_2] = ACTIONS(4991), - [aux_sym__whitespace_token1] = ACTIONS(4993), - [sym__word_no_digit] = ACTIONS(4991), - [sym__digits] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), - [sym__code_span_start] = ACTIONS(4991), - [sym__emphasis_open_star] = ACTIONS(4991), - [sym__emphasis_open_underscore] = ACTIONS(4991), - [sym__strikeout_open] = ACTIONS(4991), - [sym__latex_span_start] = ACTIONS(4991), - [sym__single_quote_open] = ACTIONS(4991), - [sym__double_quote_open] = ACTIONS(4991), - [sym__double_quote_close] = ACTIONS(4991), - [sym__superscript_open] = ACTIONS(4991), - [sym__subscript_open] = ACTIONS(4991), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4991), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4991), - [sym__cite_author_in_text] = ACTIONS(4991), - [sym__cite_suppress_author] = ACTIONS(4991), - [sym__shortcode_open_escaped] = ACTIONS(4991), - [sym__shortcode_open] = ACTIONS(4991), - [sym__unclosed_span] = ACTIONS(4991), - [sym__strong_emphasis_open_star] = ACTIONS(4991), - [sym__strong_emphasis_open_underscore] = ACTIONS(4991), + [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__superscript_close] = 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(815)] = { - [sym__backslash_escape] = ACTIONS(4995), - [sym_entity_reference] = ACTIONS(4995), - [sym_numeric_character_reference] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym__newline_token] = ACTIONS(4995), - [aux_sym_insert_token1] = ACTIONS(4995), - [aux_sym_delete_token1] = ACTIONS(4995), - [aux_sym_highlight_token1] = ACTIONS(4995), - [aux_sym_edit_comment_token1] = ACTIONS(4995), - [anon_sym_CARET_LBRACK] = ACTIONS(4995), - [anon_sym_LBRACK_CARET] = ACTIONS(4995), - [sym_uri_autolink] = ACTIONS(4995), - [sym_email_autolink] = ACTIONS(4995), - [sym__whitespace_ge_2] = ACTIONS(4995), - [aux_sym__whitespace_token1] = ACTIONS(4997), - [sym__word_no_digit] = ACTIONS(4995), - [sym__digits] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4995), - [sym__code_span_start] = ACTIONS(4995), - [sym__emphasis_open_star] = ACTIONS(4995), - [sym__emphasis_open_underscore] = ACTIONS(4995), - [sym__strikeout_open] = ACTIONS(4995), - [sym__latex_span_start] = ACTIONS(4995), - [sym__single_quote_open] = ACTIONS(4995), - [sym__double_quote_open] = ACTIONS(4995), - [sym__double_quote_close] = ACTIONS(4995), - [sym__superscript_open] = ACTIONS(4995), - [sym__subscript_open] = ACTIONS(4995), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4995), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4995), - [sym__cite_author_in_text] = ACTIONS(4995), - [sym__cite_suppress_author] = ACTIONS(4995), - [sym__shortcode_open_escaped] = ACTIONS(4995), - [sym__shortcode_open] = ACTIONS(4995), - [sym__unclosed_span] = ACTIONS(4995), - [sym__strong_emphasis_open_star] = ACTIONS(4995), - [sym__strong_emphasis_open_underscore] = ACTIONS(4995), + [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__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__superscript_close] = 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(816)] = { - [sym__backslash_escape] = ACTIONS(4999), - [sym_entity_reference] = ACTIONS(4999), - [sym_numeric_character_reference] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [sym__newline_token] = ACTIONS(4999), - [aux_sym_insert_token1] = ACTIONS(4999), - [aux_sym_delete_token1] = ACTIONS(4999), - [aux_sym_highlight_token1] = ACTIONS(4999), - [aux_sym_edit_comment_token1] = ACTIONS(4999), - [anon_sym_CARET_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_CARET] = ACTIONS(4999), - [sym_uri_autolink] = ACTIONS(4999), - [sym_email_autolink] = ACTIONS(4999), - [sym__whitespace_ge_2] = ACTIONS(4999), - [aux_sym__whitespace_token1] = ACTIONS(5001), - [sym__word_no_digit] = ACTIONS(4999), - [sym__digits] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4999), - [sym__code_span_start] = ACTIONS(4999), - [sym__emphasis_open_star] = ACTIONS(4999), - [sym__emphasis_open_underscore] = ACTIONS(4999), - [sym__strikeout_open] = ACTIONS(4999), - [sym__latex_span_start] = ACTIONS(4999), - [sym__single_quote_open] = ACTIONS(4999), - [sym__double_quote_open] = ACTIONS(4999), - [sym__double_quote_close] = ACTIONS(4999), - [sym__superscript_open] = ACTIONS(4999), - [sym__subscript_open] = ACTIONS(4999), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4999), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4999), - [sym__cite_author_in_text] = ACTIONS(4999), - [sym__cite_suppress_author] = ACTIONS(4999), - [sym__shortcode_open_escaped] = ACTIONS(4999), - [sym__shortcode_open] = ACTIONS(4999), - [sym__unclosed_span] = ACTIONS(4999), - [sym__strong_emphasis_open_star] = ACTIONS(4999), - [sym__strong_emphasis_open_underscore] = ACTIONS(4999), + [sym__backslash_escape] = ACTIONS(4503), + [sym_entity_reference] = ACTIONS(4503), + [sym_numeric_character_reference] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_BQUOTE] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_PIPE] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [sym__newline_token] = ACTIONS(4503), + [aux_sym_insert_token1] = ACTIONS(4503), + [aux_sym_delete_token1] = ACTIONS(4503), + [aux_sym_highlight_token1] = ACTIONS(4503), + [aux_sym_edit_comment_token1] = ACTIONS(4503), + [anon_sym_CARET_LBRACK] = ACTIONS(4503), + [anon_sym_LBRACK_CARET] = ACTIONS(4503), + [sym_uri_autolink] = ACTIONS(4503), + [sym_email_autolink] = ACTIONS(4503), + [sym__whitespace_ge_2] = ACTIONS(4503), + [aux_sym__whitespace_token1] = ACTIONS(4505), + [sym__word_no_digit] = ACTIONS(4503), + [sym__digits] = ACTIONS(4503), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4503), + [sym__code_span_start] = ACTIONS(4503), + [sym__emphasis_open_star] = ACTIONS(4503), + [sym__emphasis_open_underscore] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4503), + [sym__latex_span_start] = ACTIONS(4503), + [sym__single_quote_open] = ACTIONS(4503), + [sym__double_quote_open] = ACTIONS(4503), + [sym__superscript_open] = ACTIONS(4503), + [sym__superscript_close] = ACTIONS(4503), + [sym__subscript_open] = ACTIONS(4503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4503), + [sym__cite_author_in_text] = ACTIONS(4503), + [sym__cite_suppress_author] = ACTIONS(4503), + [sym__shortcode_open_escaped] = ACTIONS(4503), + [sym__shortcode_open] = ACTIONS(4503), + [sym__unclosed_span] = ACTIONS(4503), + [sym__strong_emphasis_open_star] = ACTIONS(4503), + [sym__strong_emphasis_open_underscore] = ACTIONS(4503), }, [STATE(817)] = { - [sym__backslash_escape] = ACTIONS(5003), - [sym_entity_reference] = ACTIONS(5003), - [sym_numeric_character_reference] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym__newline_token] = ACTIONS(5003), - [aux_sym_insert_token1] = ACTIONS(5003), - [aux_sym_delete_token1] = ACTIONS(5003), - [aux_sym_highlight_token1] = ACTIONS(5003), - [aux_sym_edit_comment_token1] = ACTIONS(5003), - [anon_sym_CARET_LBRACK] = ACTIONS(5003), - [anon_sym_LBRACK_CARET] = ACTIONS(5003), - [sym_uri_autolink] = ACTIONS(5003), - [sym_email_autolink] = ACTIONS(5003), - [sym__whitespace_ge_2] = ACTIONS(5003), - [aux_sym__whitespace_token1] = ACTIONS(5005), - [sym__word_no_digit] = ACTIONS(5003), - [sym__digits] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [sym__code_span_start] = ACTIONS(5003), - [sym__emphasis_open_star] = ACTIONS(5003), - [sym__emphasis_open_underscore] = ACTIONS(5003), - [sym__strikeout_open] = ACTIONS(5003), - [sym__latex_span_start] = ACTIONS(5003), - [sym__single_quote_open] = ACTIONS(5003), - [sym__double_quote_open] = ACTIONS(5003), - [sym__double_quote_close] = ACTIONS(5003), - [sym__superscript_open] = ACTIONS(5003), - [sym__subscript_open] = ACTIONS(5003), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5003), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5003), - [sym__cite_author_in_text] = ACTIONS(5003), - [sym__cite_suppress_author] = ACTIONS(5003), - [sym__shortcode_open_escaped] = ACTIONS(5003), - [sym__shortcode_open] = ACTIONS(5003), - [sym__unclosed_span] = ACTIONS(5003), - [sym__strong_emphasis_open_star] = ACTIONS(5003), - [sym__strong_emphasis_open_underscore] = ACTIONS(5003), + [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(4251), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(818)] = { - [sym__backslash_escape] = ACTIONS(5007), - [sym_entity_reference] = ACTIONS(5007), - [sym_numeric_character_reference] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH] = ACTIONS(5009), - [anon_sym_CARET] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym__newline_token] = ACTIONS(5007), - [aux_sym_insert_token1] = ACTIONS(5007), - [aux_sym_delete_token1] = ACTIONS(5007), - [aux_sym_highlight_token1] = ACTIONS(5007), - [aux_sym_edit_comment_token1] = ACTIONS(5007), - [anon_sym_CARET_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_CARET] = ACTIONS(5007), - [sym_uri_autolink] = ACTIONS(5007), - [sym_email_autolink] = ACTIONS(5007), - [sym__whitespace_ge_2] = ACTIONS(5007), - [aux_sym__whitespace_token1] = ACTIONS(5009), - [sym__word_no_digit] = ACTIONS(5007), - [sym__digits] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), - [sym__code_span_start] = ACTIONS(5007), - [sym__emphasis_open_star] = ACTIONS(5007), - [sym__emphasis_open_underscore] = ACTIONS(5007), - [sym__strikeout_open] = ACTIONS(5007), - [sym__latex_span_start] = ACTIONS(5007), - [sym__single_quote_open] = ACTIONS(5007), - [sym__single_quote_close] = ACTIONS(5007), - [sym__double_quote_open] = ACTIONS(5007), - [sym__superscript_open] = ACTIONS(5007), - [sym__subscript_open] = ACTIONS(5007), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5007), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5007), - [sym__cite_author_in_text] = ACTIONS(5007), - [sym__cite_suppress_author] = ACTIONS(5007), - [sym__shortcode_open_escaped] = ACTIONS(5007), - [sym__shortcode_open] = ACTIONS(5007), - [sym__unclosed_span] = ACTIONS(5007), - [sym__strong_emphasis_open_star] = ACTIONS(5007), - [sym__strong_emphasis_open_underscore] = ACTIONS(5007), + [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(4251), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(819)] = { - [sym__backslash_escape] = ACTIONS(5011), - [sym_entity_reference] = ACTIONS(5011), - [sym_numeric_character_reference] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_AMP] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym_BQUOTE] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym__newline_token] = ACTIONS(5011), - [aux_sym_insert_token1] = ACTIONS(5011), - [aux_sym_delete_token1] = ACTIONS(5011), - [aux_sym_highlight_token1] = ACTIONS(5011), - [aux_sym_edit_comment_token1] = ACTIONS(5011), - [anon_sym_CARET_LBRACK] = ACTIONS(5011), - [anon_sym_LBRACK_CARET] = ACTIONS(5011), - [sym_uri_autolink] = ACTIONS(5011), - [sym_email_autolink] = ACTIONS(5011), - [sym__whitespace_ge_2] = ACTIONS(5011), - [aux_sym__whitespace_token1] = ACTIONS(5013), - [sym__word_no_digit] = ACTIONS(5011), - [sym__digits] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5011), - [sym__code_span_start] = ACTIONS(5011), - [sym__emphasis_open_star] = ACTIONS(5011), - [sym__emphasis_open_underscore] = ACTIONS(5011), - [sym__strikeout_open] = ACTIONS(5011), - [sym__latex_span_start] = ACTIONS(5011), - [sym__single_quote_open] = ACTIONS(5011), - [sym__double_quote_open] = ACTIONS(5011), - [sym__double_quote_close] = ACTIONS(5011), - [sym__superscript_open] = ACTIONS(5011), - [sym__subscript_open] = ACTIONS(5011), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5011), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5011), - [sym__cite_author_in_text] = ACTIONS(5011), - [sym__cite_suppress_author] = ACTIONS(5011), - [sym__shortcode_open_escaped] = ACTIONS(5011), - [sym__shortcode_open] = ACTIONS(5011), - [sym__unclosed_span] = ACTIONS(5011), - [sym__strong_emphasis_open_star] = ACTIONS(5011), - [sym__strong_emphasis_open_underscore] = ACTIONS(5011), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__superscript_close] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(820)] = { - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__double_quote_close] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [ts_builtin_sym_end] = ACTIONS(4495), + [sym__backslash_escape] = ACTIONS(4495), + [sym_entity_reference] = ACTIONS(4495), + [sym_numeric_character_reference] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_QMARK] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_BSLASH] = ACTIONS(4497), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_BQUOTE] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [sym__newline_token] = ACTIONS(4495), + [aux_sym_insert_token1] = ACTIONS(4495), + [aux_sym_delete_token1] = ACTIONS(4495), + [aux_sym_highlight_token1] = ACTIONS(4495), + [aux_sym_edit_comment_token1] = ACTIONS(4495), + [anon_sym_CARET_LBRACK] = ACTIONS(4495), + [anon_sym_LBRACK_CARET] = ACTIONS(4495), + [sym_uri_autolink] = ACTIONS(4495), + [sym_email_autolink] = ACTIONS(4495), + [sym__whitespace_ge_2] = ACTIONS(4495), + [aux_sym__whitespace_token1] = ACTIONS(4497), + [sym__word_no_digit] = ACTIONS(4495), + [sym__digits] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4495), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(4495), + [sym__emphasis_open_underscore] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4495), + [sym__latex_span_start] = ACTIONS(4495), + [sym__single_quote_open] = ACTIONS(4495), + [sym__double_quote_open] = ACTIONS(4495), + [sym__superscript_open] = ACTIONS(4495), + [sym__subscript_open] = ACTIONS(4495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4495), + [sym__cite_author_in_text] = ACTIONS(4495), + [sym__cite_suppress_author] = ACTIONS(4495), + [sym__shortcode_open_escaped] = ACTIONS(4495), + [sym__shortcode_open] = ACTIONS(4495), + [sym__unclosed_span] = ACTIONS(4495), + [sym__strong_emphasis_open_star] = ACTIONS(4495), + [sym__strong_emphasis_open_underscore] = ACTIONS(4495), }, [STATE(821)] = { - [sym__backslash_escape] = ACTIONS(5015), - [sym_entity_reference] = ACTIONS(5015), - [sym_numeric_character_reference] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym_BQUOTE] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__newline_token] = ACTIONS(5015), - [aux_sym_insert_token1] = ACTIONS(5015), - [aux_sym_delete_token1] = ACTIONS(5015), - [aux_sym_highlight_token1] = ACTIONS(5015), - [aux_sym_edit_comment_token1] = ACTIONS(5015), - [anon_sym_CARET_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_CARET] = ACTIONS(5015), - [sym_uri_autolink] = ACTIONS(5015), - [sym_email_autolink] = ACTIONS(5015), - [sym__whitespace_ge_2] = ACTIONS(5015), - [aux_sym__whitespace_token1] = ACTIONS(5017), - [sym__word_no_digit] = ACTIONS(5015), - [sym__digits] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5015), - [sym__code_span_start] = ACTIONS(5015), - [sym__emphasis_open_star] = ACTIONS(5015), - [sym__emphasis_open_underscore] = ACTIONS(5015), - [sym__strikeout_open] = ACTIONS(5015), - [sym__latex_span_start] = ACTIONS(5015), - [sym__single_quote_open] = ACTIONS(5015), - [sym__double_quote_open] = ACTIONS(5015), - [sym__double_quote_close] = ACTIONS(5015), - [sym__superscript_open] = ACTIONS(5015), - [sym__subscript_open] = ACTIONS(5015), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5015), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5015), - [sym__cite_author_in_text] = ACTIONS(5015), - [sym__cite_suppress_author] = ACTIONS(5015), - [sym__shortcode_open_escaped] = ACTIONS(5015), - [sym__shortcode_open] = ACTIONS(5015), - [sym__unclosed_span] = ACTIONS(5015), - [sym__strong_emphasis_open_star] = ACTIONS(5015), - [sym__strong_emphasis_open_underscore] = ACTIONS(5015), + [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__superscript_close] = 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(822)] = { - [sym__backslash_escape] = ACTIONS(5019), - [sym_entity_reference] = ACTIONS(5019), - [sym_numeric_character_reference] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_DQUOTE] = ACTIONS(5019), - [anon_sym_POUND] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym__newline_token] = ACTIONS(5019), - [aux_sym_insert_token1] = ACTIONS(5019), - [aux_sym_delete_token1] = ACTIONS(5019), - [aux_sym_highlight_token1] = ACTIONS(5019), - [aux_sym_edit_comment_token1] = ACTIONS(5019), - [anon_sym_CARET_LBRACK] = ACTIONS(5019), - [anon_sym_LBRACK_CARET] = ACTIONS(5019), - [sym_uri_autolink] = ACTIONS(5019), - [sym_email_autolink] = ACTIONS(5019), - [sym__whitespace_ge_2] = ACTIONS(5019), - [aux_sym__whitespace_token1] = ACTIONS(5021), - [sym__word_no_digit] = ACTIONS(5019), - [sym__digits] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [sym__code_span_start] = ACTIONS(5019), - [sym__emphasis_open_star] = ACTIONS(5019), - [sym__emphasis_open_underscore] = ACTIONS(5019), - [sym__strikeout_open] = ACTIONS(5019), - [sym__latex_span_start] = ACTIONS(5019), - [sym__single_quote_open] = ACTIONS(5019), - [sym__double_quote_open] = ACTIONS(5019), - [sym__double_quote_close] = ACTIONS(5019), - [sym__superscript_open] = ACTIONS(5019), - [sym__subscript_open] = ACTIONS(5019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5019), - [sym__cite_author_in_text] = ACTIONS(5019), - [sym__cite_suppress_author] = ACTIONS(5019), - [sym__shortcode_open_escaped] = ACTIONS(5019), - [sym__shortcode_open] = ACTIONS(5019), - [sym__unclosed_span] = ACTIONS(5019), - [sym__strong_emphasis_open_star] = ACTIONS(5019), - [sym__strong_emphasis_open_underscore] = ACTIONS(5019), + [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__superscript_close] = 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(823)] = { - [sym__backslash_escape] = ACTIONS(5023), - [sym_entity_reference] = ACTIONS(5023), - [sym_numeric_character_reference] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [sym__newline_token] = ACTIONS(5023), - [aux_sym_insert_token1] = ACTIONS(5023), - [aux_sym_delete_token1] = ACTIONS(5023), - [aux_sym_highlight_token1] = ACTIONS(5023), - [aux_sym_edit_comment_token1] = ACTIONS(5023), - [anon_sym_CARET_LBRACK] = ACTIONS(5023), - [anon_sym_LBRACK_CARET] = ACTIONS(5023), - [sym_uri_autolink] = ACTIONS(5023), - [sym_email_autolink] = ACTIONS(5023), - [sym__whitespace_ge_2] = ACTIONS(5023), - [aux_sym__whitespace_token1] = ACTIONS(5025), - [sym__word_no_digit] = ACTIONS(5023), - [sym__digits] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5023), - [sym__code_span_start] = ACTIONS(5023), - [sym__emphasis_open_star] = ACTIONS(5023), - [sym__emphasis_open_underscore] = ACTIONS(5023), - [sym__strikeout_open] = ACTIONS(5023), - [sym__latex_span_start] = ACTIONS(5023), - [sym__single_quote_open] = ACTIONS(5023), - [sym__double_quote_open] = ACTIONS(5023), - [sym__double_quote_close] = ACTIONS(5023), - [sym__superscript_open] = ACTIONS(5023), - [sym__subscript_open] = ACTIONS(5023), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5023), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5023), - [sym__cite_author_in_text] = ACTIONS(5023), - [sym__cite_suppress_author] = ACTIONS(5023), - [sym__shortcode_open_escaped] = ACTIONS(5023), - [sym__shortcode_open] = ACTIONS(5023), - [sym__unclosed_span] = ACTIONS(5023), - [sym__strong_emphasis_open_star] = ACTIONS(5023), - [sym__strong_emphasis_open_underscore] = ACTIONS(5023), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__superscript_close] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(824)] = { - [sym__backslash_escape] = ACTIONS(5027), - [sym_entity_reference] = ACTIONS(5027), - [sym_numeric_character_reference] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [sym__newline_token] = ACTIONS(5027), - [aux_sym_insert_token1] = ACTIONS(5027), - [aux_sym_delete_token1] = ACTIONS(5027), - [aux_sym_highlight_token1] = ACTIONS(5027), - [aux_sym_edit_comment_token1] = ACTIONS(5027), - [anon_sym_CARET_LBRACK] = ACTIONS(5027), - [anon_sym_LBRACK_CARET] = ACTIONS(5027), - [sym_uri_autolink] = ACTIONS(5027), - [sym_email_autolink] = ACTIONS(5027), - [sym__whitespace_ge_2] = ACTIONS(5027), - [aux_sym__whitespace_token1] = ACTIONS(5029), - [sym__word_no_digit] = ACTIONS(5027), - [sym__digits] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5027), - [sym__code_span_start] = ACTIONS(5027), - [sym__emphasis_open_star] = ACTIONS(5027), - [sym__emphasis_open_underscore] = ACTIONS(5027), - [sym__strikeout_open] = ACTIONS(5027), - [sym__latex_span_start] = ACTIONS(5027), - [sym__single_quote_open] = ACTIONS(5027), - [sym__double_quote_open] = ACTIONS(5027), - [sym__double_quote_close] = ACTIONS(5027), - [sym__superscript_open] = ACTIONS(5027), - [sym__subscript_open] = ACTIONS(5027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5027), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5027), - [sym__cite_author_in_text] = ACTIONS(5027), - [sym__cite_suppress_author] = ACTIONS(5027), - [sym__shortcode_open_escaped] = ACTIONS(5027), - [sym__shortcode_open] = ACTIONS(5027), - [sym__unclosed_span] = ACTIONS(5027), - [sym__strong_emphasis_open_star] = ACTIONS(5027), - [sym__strong_emphasis_open_underscore] = ACTIONS(5027), + [ts_builtin_sym_end] = ACTIONS(4255), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(825)] = { - [sym__backslash_escape] = ACTIONS(5031), - [sym_entity_reference] = ACTIONS(5031), - [sym_numeric_character_reference] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_BSLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_BQUOTE] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [sym__newline_token] = ACTIONS(5031), - [aux_sym_insert_token1] = ACTIONS(5031), - [aux_sym_delete_token1] = ACTIONS(5031), - [aux_sym_highlight_token1] = ACTIONS(5031), - [aux_sym_edit_comment_token1] = ACTIONS(5031), - [anon_sym_CARET_LBRACK] = ACTIONS(5031), - [anon_sym_LBRACK_CARET] = ACTIONS(5031), - [sym_uri_autolink] = ACTIONS(5031), - [sym_email_autolink] = ACTIONS(5031), - [sym__whitespace_ge_2] = ACTIONS(5031), - [aux_sym__whitespace_token1] = ACTIONS(5033), - [sym__word_no_digit] = ACTIONS(5031), - [sym__digits] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [sym__code_span_start] = ACTIONS(5031), - [sym__emphasis_open_star] = ACTIONS(5031), - [sym__emphasis_open_underscore] = ACTIONS(5031), - [sym__strikeout_open] = ACTIONS(5031), - [sym__latex_span_start] = ACTIONS(5031), - [sym__single_quote_open] = ACTIONS(5031), - [sym__double_quote_open] = ACTIONS(5031), - [sym__double_quote_close] = ACTIONS(5031), - [sym__superscript_open] = ACTIONS(5031), - [sym__subscript_open] = ACTIONS(5031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5031), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5031), - [sym__cite_author_in_text] = ACTIONS(5031), - [sym__cite_suppress_author] = ACTIONS(5031), - [sym__shortcode_open_escaped] = ACTIONS(5031), - [sym__shortcode_open] = ACTIONS(5031), - [sym__unclosed_span] = ACTIONS(5031), - [sym__strong_emphasis_open_star] = ACTIONS(5031), - [sym__strong_emphasis_open_underscore] = ACTIONS(5031), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__superscript_close] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(826)] = { - [sym__backslash_escape] = ACTIONS(5035), - [sym_entity_reference] = ACTIONS(5035), - [sym_numeric_character_reference] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_DQUOTE] = ACTIONS(5035), - [anon_sym_POUND] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_BSLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [sym__newline_token] = ACTIONS(5035), - [aux_sym_insert_token1] = ACTIONS(5035), - [aux_sym_delete_token1] = ACTIONS(5035), - [aux_sym_highlight_token1] = ACTIONS(5035), - [aux_sym_edit_comment_token1] = ACTIONS(5035), - [anon_sym_CARET_LBRACK] = ACTIONS(5035), - [anon_sym_LBRACK_CARET] = ACTIONS(5035), - [sym_uri_autolink] = ACTIONS(5035), - [sym_email_autolink] = ACTIONS(5035), - [sym__whitespace_ge_2] = ACTIONS(5035), - [aux_sym__whitespace_token1] = ACTIONS(5037), - [sym__word_no_digit] = ACTIONS(5035), - [sym__digits] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5035), - [sym__code_span_start] = ACTIONS(5035), - [sym__emphasis_open_star] = ACTIONS(5035), - [sym__emphasis_open_underscore] = ACTIONS(5035), - [sym__strikeout_open] = ACTIONS(5035), - [sym__latex_span_start] = ACTIONS(5035), - [sym__single_quote_open] = ACTIONS(5035), - [sym__double_quote_open] = ACTIONS(5035), - [sym__double_quote_close] = ACTIONS(5035), - [sym__superscript_open] = ACTIONS(5035), - [sym__subscript_open] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5035), - [sym__cite_author_in_text] = ACTIONS(5035), - [sym__cite_suppress_author] = ACTIONS(5035), - [sym__shortcode_open_escaped] = ACTIONS(5035), - [sym__shortcode_open] = ACTIONS(5035), - [sym__unclosed_span] = ACTIONS(5035), - [sym__strong_emphasis_open_star] = ACTIONS(5035), - [sym__strong_emphasis_open_underscore] = ACTIONS(5035), + [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(827)] = { - [sym__backslash_escape] = ACTIONS(5039), - [sym_entity_reference] = ACTIONS(5039), - [sym_numeric_character_reference] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(5039), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_BSLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [sym__newline_token] = ACTIONS(5039), - [aux_sym_insert_token1] = ACTIONS(5039), - [aux_sym_delete_token1] = ACTIONS(5039), - [aux_sym_highlight_token1] = ACTIONS(5039), - [aux_sym_edit_comment_token1] = ACTIONS(5039), - [anon_sym_CARET_LBRACK] = ACTIONS(5039), - [anon_sym_LBRACK_CARET] = ACTIONS(5039), - [sym_uri_autolink] = ACTIONS(5039), - [sym_email_autolink] = ACTIONS(5039), - [sym__whitespace_ge_2] = ACTIONS(5039), - [aux_sym__whitespace_token1] = ACTIONS(5041), - [sym__word_no_digit] = ACTIONS(5039), - [sym__digits] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5039), - [sym__code_span_start] = ACTIONS(5039), - [sym__emphasis_open_star] = ACTIONS(5039), - [sym__emphasis_open_underscore] = ACTIONS(5039), - [sym__strikeout_open] = ACTIONS(5039), - [sym__latex_span_start] = ACTIONS(5039), - [sym__single_quote_open] = ACTIONS(5039), - [sym__double_quote_open] = ACTIONS(5039), - [sym__double_quote_close] = ACTIONS(5039), - [sym__superscript_open] = ACTIONS(5039), - [sym__subscript_open] = ACTIONS(5039), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5039), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5039), - [sym__cite_author_in_text] = ACTIONS(5039), - [sym__cite_suppress_author] = ACTIONS(5039), - [sym__shortcode_open_escaped] = ACTIONS(5039), - [sym__shortcode_open] = ACTIONS(5039), - [sym__unclosed_span] = ACTIONS(5039), - [sym__strong_emphasis_open_star] = ACTIONS(5039), - [sym__strong_emphasis_open_underscore] = ACTIONS(5039), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__superscript_close] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(828)] = { - [sym__backslash_escape] = ACTIONS(5043), - [sym_entity_reference] = ACTIONS(5043), - [sym_numeric_character_reference] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_DQUOTE] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_QMARK] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_BSLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [sym__newline_token] = ACTIONS(5043), - [aux_sym_insert_token1] = ACTIONS(5043), - [aux_sym_delete_token1] = ACTIONS(5043), - [aux_sym_highlight_token1] = ACTIONS(5043), - [aux_sym_edit_comment_token1] = ACTIONS(5043), - [anon_sym_CARET_LBRACK] = ACTIONS(5043), - [anon_sym_LBRACK_CARET] = ACTIONS(5043), - [sym_uri_autolink] = ACTIONS(5043), - [sym_email_autolink] = ACTIONS(5043), - [sym__whitespace_ge_2] = ACTIONS(5043), - [aux_sym__whitespace_token1] = ACTIONS(5045), - [sym__word_no_digit] = ACTIONS(5043), - [sym__digits] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), - [sym__code_span_start] = ACTIONS(5043), - [sym__emphasis_open_star] = ACTIONS(5043), - [sym__emphasis_open_underscore] = ACTIONS(5043), - [sym__strikeout_open] = ACTIONS(5043), - [sym__latex_span_start] = ACTIONS(5043), - [sym__single_quote_open] = ACTIONS(5043), - [sym__double_quote_open] = ACTIONS(5043), - [sym__double_quote_close] = ACTIONS(5043), - [sym__superscript_open] = ACTIONS(5043), - [sym__subscript_open] = ACTIONS(5043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5043), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5043), - [sym__cite_author_in_text] = ACTIONS(5043), - [sym__cite_suppress_author] = ACTIONS(5043), - [sym__shortcode_open_escaped] = ACTIONS(5043), - [sym__shortcode_open] = ACTIONS(5043), - [sym__unclosed_span] = ACTIONS(5043), - [sym__strong_emphasis_open_star] = ACTIONS(5043), - [sym__strong_emphasis_open_underscore] = ACTIONS(5043), + [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(829)] = { - [sym__backslash_escape] = ACTIONS(5047), - [sym_entity_reference] = ACTIONS(5047), - [sym_numeric_character_reference] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(5047), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [sym__newline_token] = ACTIONS(5047), - [aux_sym_insert_token1] = ACTIONS(5047), - [aux_sym_delete_token1] = ACTIONS(5047), - [aux_sym_highlight_token1] = ACTIONS(5047), - [aux_sym_edit_comment_token1] = ACTIONS(5047), - [anon_sym_CARET_LBRACK] = ACTIONS(5047), - [anon_sym_LBRACK_CARET] = ACTIONS(5047), - [sym_uri_autolink] = ACTIONS(5047), - [sym_email_autolink] = ACTIONS(5047), - [sym__whitespace_ge_2] = ACTIONS(5047), - [aux_sym__whitespace_token1] = ACTIONS(5049), - [sym__word_no_digit] = ACTIONS(5047), - [sym__digits] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5047), - [sym__code_span_start] = ACTIONS(5047), - [sym__emphasis_open_star] = ACTIONS(5047), - [sym__emphasis_open_underscore] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5047), - [sym__latex_span_start] = ACTIONS(5047), - [sym__single_quote_open] = ACTIONS(5047), - [sym__double_quote_open] = ACTIONS(5047), - [sym__double_quote_close] = ACTIONS(5047), - [sym__superscript_open] = ACTIONS(5047), - [sym__subscript_open] = ACTIONS(5047), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5047), - [sym__cite_author_in_text] = ACTIONS(5047), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__shortcode_open_escaped] = ACTIONS(5047), - [sym__shortcode_open] = ACTIONS(5047), - [sym__unclosed_span] = ACTIONS(5047), - [sym__strong_emphasis_open_star] = ACTIONS(5047), - [sym__strong_emphasis_open_underscore] = ACTIONS(5047), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__superscript_close] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(830)] = { - [sym__backslash_escape] = ACTIONS(5051), - [sym_entity_reference] = ACTIONS(5051), - [sym_numeric_character_reference] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_BSLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [sym__newline_token] = ACTIONS(5051), - [aux_sym_insert_token1] = ACTIONS(5051), - [aux_sym_delete_token1] = ACTIONS(5051), - [aux_sym_highlight_token1] = ACTIONS(5051), - [aux_sym_edit_comment_token1] = ACTIONS(5051), - [anon_sym_CARET_LBRACK] = ACTIONS(5051), - [anon_sym_LBRACK_CARET] = ACTIONS(5051), - [sym_uri_autolink] = ACTIONS(5051), - [sym_email_autolink] = ACTIONS(5051), - [sym__whitespace_ge_2] = ACTIONS(5051), - [aux_sym__whitespace_token1] = ACTIONS(5053), - [sym__word_no_digit] = ACTIONS(5051), - [sym__digits] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5051), - [sym__code_span_start] = ACTIONS(5051), - [sym__emphasis_open_star] = ACTIONS(5051), - [sym__emphasis_open_underscore] = ACTIONS(5051), - [sym__strikeout_open] = ACTIONS(5051), - [sym__latex_span_start] = ACTIONS(5051), - [sym__single_quote_open] = ACTIONS(5051), - [sym__double_quote_open] = ACTIONS(5051), - [sym__double_quote_close] = ACTIONS(5051), - [sym__superscript_open] = ACTIONS(5051), - [sym__subscript_open] = ACTIONS(5051), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5051), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5051), - [sym__cite_author_in_text] = ACTIONS(5051), - [sym__cite_suppress_author] = ACTIONS(5051), - [sym__shortcode_open_escaped] = ACTIONS(5051), - [sym__shortcode_open] = ACTIONS(5051), - [sym__unclosed_span] = ACTIONS(5051), - [sym__strong_emphasis_open_star] = ACTIONS(5051), - [sym__strong_emphasis_open_underscore] = ACTIONS(5051), + [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(831)] = { - [sym__backslash_escape] = ACTIONS(5055), - [sym_entity_reference] = ACTIONS(5055), - [sym_numeric_character_reference] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(5055), - [anon_sym_POUND] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_BSLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_BQUOTE] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [sym__newline_token] = ACTIONS(5055), - [aux_sym_insert_token1] = ACTIONS(5055), - [aux_sym_delete_token1] = ACTIONS(5055), - [aux_sym_highlight_token1] = ACTIONS(5055), - [aux_sym_edit_comment_token1] = ACTIONS(5055), - [anon_sym_CARET_LBRACK] = ACTIONS(5055), - [anon_sym_LBRACK_CARET] = ACTIONS(5055), - [sym_uri_autolink] = ACTIONS(5055), - [sym_email_autolink] = ACTIONS(5055), - [sym__whitespace_ge_2] = ACTIONS(5055), - [aux_sym__whitespace_token1] = ACTIONS(5057), - [sym__word_no_digit] = ACTIONS(5055), - [sym__digits] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5055), - [sym__code_span_start] = ACTIONS(5055), - [sym__emphasis_open_star] = ACTIONS(5055), - [sym__emphasis_open_underscore] = ACTIONS(5055), - [sym__strikeout_open] = ACTIONS(5055), - [sym__latex_span_start] = ACTIONS(5055), - [sym__single_quote_open] = ACTIONS(5055), - [sym__double_quote_open] = ACTIONS(5055), - [sym__double_quote_close] = ACTIONS(5055), - [sym__superscript_open] = ACTIONS(5055), - [sym__subscript_open] = ACTIONS(5055), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5055), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5055), - [sym__cite_author_in_text] = ACTIONS(5055), - [sym__cite_suppress_author] = ACTIONS(5055), - [sym__shortcode_open_escaped] = ACTIONS(5055), - [sym__shortcode_open] = ACTIONS(5055), - [sym__unclosed_span] = ACTIONS(5055), - [sym__strong_emphasis_open_star] = ACTIONS(5055), - [sym__strong_emphasis_open_underscore] = ACTIONS(5055), + [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__superscript_close] = 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(832)] = { - [sym__backslash_escape] = ACTIONS(5059), - [sym_entity_reference] = ACTIONS(5059), - [sym_numeric_character_reference] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_DQUOTE] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_BSLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [sym__newline_token] = ACTIONS(5059), - [aux_sym_insert_token1] = ACTIONS(5059), - [aux_sym_delete_token1] = ACTIONS(5059), - [aux_sym_highlight_token1] = ACTIONS(5059), - [aux_sym_edit_comment_token1] = ACTIONS(5059), - [anon_sym_CARET_LBRACK] = ACTIONS(5059), - [anon_sym_LBRACK_CARET] = ACTIONS(5059), - [sym_uri_autolink] = ACTIONS(5059), - [sym_email_autolink] = ACTIONS(5059), - [sym__whitespace_ge_2] = ACTIONS(5059), - [aux_sym__whitespace_token1] = ACTIONS(5061), - [sym__word_no_digit] = ACTIONS(5059), - [sym__digits] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5059), - [sym__code_span_start] = ACTIONS(5059), - [sym__emphasis_open_star] = ACTIONS(5059), - [sym__emphasis_open_underscore] = ACTIONS(5059), - [sym__strikeout_open] = ACTIONS(5059), - [sym__latex_span_start] = ACTIONS(5059), - [sym__single_quote_open] = ACTIONS(5059), - [sym__double_quote_open] = ACTIONS(5059), - [sym__double_quote_close] = ACTIONS(5059), - [sym__superscript_open] = ACTIONS(5059), - [sym__subscript_open] = ACTIONS(5059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5059), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5059), - [sym__cite_author_in_text] = ACTIONS(5059), - [sym__cite_suppress_author] = ACTIONS(5059), - [sym__shortcode_open_escaped] = ACTIONS(5059), - [sym__shortcode_open] = ACTIONS(5059), - [sym__unclosed_span] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5059), - [sym__strong_emphasis_open_underscore] = ACTIONS(5059), + [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__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__superscript_close] = 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(833)] = { - [sym__backslash_escape] = ACTIONS(5063), - [sym_entity_reference] = ACTIONS(5063), - [sym_numeric_character_reference] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_BSLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_BQUOTE] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [sym__newline_token] = ACTIONS(5063), - [aux_sym_insert_token1] = ACTIONS(5063), - [aux_sym_delete_token1] = ACTIONS(5063), - [aux_sym_highlight_token1] = ACTIONS(5063), - [aux_sym_edit_comment_token1] = ACTIONS(5063), - [anon_sym_CARET_LBRACK] = ACTIONS(5063), - [anon_sym_LBRACK_CARET] = ACTIONS(5063), - [sym_uri_autolink] = ACTIONS(5063), - [sym_email_autolink] = ACTIONS(5063), - [sym__whitespace_ge_2] = ACTIONS(5063), - [aux_sym__whitespace_token1] = ACTIONS(5065), - [sym__word_no_digit] = ACTIONS(5063), - [sym__digits] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5063), - [sym__code_span_start] = ACTIONS(5063), - [sym__emphasis_open_star] = ACTIONS(5063), - [sym__emphasis_open_underscore] = ACTIONS(5063), - [sym__strikeout_open] = ACTIONS(5063), - [sym__latex_span_start] = ACTIONS(5063), - [sym__single_quote_open] = ACTIONS(5063), - [sym__double_quote_open] = ACTIONS(5063), - [sym__double_quote_close] = ACTIONS(5063), - [sym__superscript_open] = ACTIONS(5063), - [sym__subscript_open] = ACTIONS(5063), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5063), - [sym__cite_author_in_text] = ACTIONS(5063), - [sym__cite_suppress_author] = ACTIONS(5063), - [sym__shortcode_open_escaped] = ACTIONS(5063), - [sym__shortcode_open] = ACTIONS(5063), - [sym__unclosed_span] = ACTIONS(5063), - [sym__strong_emphasis_open_star] = ACTIONS(5063), - [sym__strong_emphasis_open_underscore] = ACTIONS(5063), + [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__superscript_close] = 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(834)] = { - [sym__backslash_escape] = ACTIONS(5067), - [sym_entity_reference] = ACTIONS(5067), - [sym_numeric_character_reference] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DQUOTE] = ACTIONS(5067), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_COLON] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [sym__newline_token] = ACTIONS(5067), - [aux_sym_insert_token1] = ACTIONS(5067), - [aux_sym_delete_token1] = ACTIONS(5067), - [aux_sym_highlight_token1] = ACTIONS(5067), - [aux_sym_edit_comment_token1] = ACTIONS(5067), - [anon_sym_CARET_LBRACK] = ACTIONS(5067), - [anon_sym_LBRACK_CARET] = ACTIONS(5067), - [sym_uri_autolink] = ACTIONS(5067), - [sym_email_autolink] = ACTIONS(5067), - [sym__whitespace_ge_2] = ACTIONS(5067), - [aux_sym__whitespace_token1] = ACTIONS(5069), - [sym__word_no_digit] = ACTIONS(5067), - [sym__digits] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5067), - [sym__code_span_start] = ACTIONS(5067), - [sym__emphasis_open_star] = ACTIONS(5067), - [sym__emphasis_open_underscore] = ACTIONS(5067), - [sym__strikeout_open] = ACTIONS(5067), - [sym__latex_span_start] = ACTIONS(5067), - [sym__single_quote_open] = ACTIONS(5067), - [sym__double_quote_open] = ACTIONS(5067), - [sym__double_quote_close] = ACTIONS(5067), - [sym__superscript_open] = ACTIONS(5067), - [sym__subscript_open] = ACTIONS(5067), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5067), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5067), - [sym__cite_author_in_text] = ACTIONS(5067), - [sym__cite_suppress_author] = ACTIONS(5067), - [sym__shortcode_open_escaped] = ACTIONS(5067), - [sym__shortcode_open] = ACTIONS(5067), - [sym__unclosed_span] = ACTIONS(5067), - [sym__strong_emphasis_open_star] = ACTIONS(5067), - [sym__strong_emphasis_open_underscore] = ACTIONS(5067), + [sym__backslash_escape] = ACTIONS(4503), + [sym_entity_reference] = ACTIONS(4503), + [sym_numeric_character_reference] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_BQUOTE] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_PIPE] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [sym__newline_token] = ACTIONS(4503), + [aux_sym_insert_token1] = ACTIONS(4503), + [aux_sym_delete_token1] = ACTIONS(4503), + [aux_sym_highlight_token1] = ACTIONS(4503), + [aux_sym_edit_comment_token1] = ACTIONS(4503), + [anon_sym_CARET_LBRACK] = ACTIONS(4503), + [anon_sym_LBRACK_CARET] = ACTIONS(4503), + [sym_uri_autolink] = ACTIONS(4503), + [sym_email_autolink] = ACTIONS(4503), + [sym__whitespace_ge_2] = ACTIONS(4503), + [aux_sym__whitespace_token1] = ACTIONS(4505), + [sym__word_no_digit] = ACTIONS(4503), + [sym__digits] = ACTIONS(4503), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4503), + [sym__code_span_start] = ACTIONS(4503), + [sym__emphasis_open_star] = ACTIONS(4503), + [sym__emphasis_open_underscore] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4503), + [sym__latex_span_start] = ACTIONS(4503), + [sym__single_quote_open] = ACTIONS(4503), + [sym__double_quote_open] = ACTIONS(4503), + [sym__double_quote_close] = ACTIONS(4503), + [sym__superscript_open] = ACTIONS(4503), + [sym__subscript_open] = ACTIONS(4503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4503), + [sym__cite_author_in_text] = ACTIONS(4503), + [sym__cite_suppress_author] = ACTIONS(4503), + [sym__shortcode_open_escaped] = ACTIONS(4503), + [sym__shortcode_open] = ACTIONS(4503), + [sym__unclosed_span] = ACTIONS(4503), + [sym__strong_emphasis_open_star] = ACTIONS(4503), + [sym__strong_emphasis_open_underscore] = ACTIONS(4503), }, [STATE(835)] = { - [sym__backslash_escape] = ACTIONS(5071), - [sym_entity_reference] = ACTIONS(5071), - [sym_numeric_character_reference] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_POUND] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [sym__newline_token] = ACTIONS(5071), - [aux_sym_insert_token1] = ACTIONS(5071), - [aux_sym_delete_token1] = ACTIONS(5071), - [aux_sym_highlight_token1] = ACTIONS(5071), - [aux_sym_edit_comment_token1] = ACTIONS(5071), - [anon_sym_CARET_LBRACK] = ACTIONS(5071), - [anon_sym_LBRACK_CARET] = ACTIONS(5071), - [sym_uri_autolink] = ACTIONS(5071), - [sym_email_autolink] = ACTIONS(5071), - [sym__whitespace_ge_2] = ACTIONS(5071), - [aux_sym__whitespace_token1] = ACTIONS(5073), - [sym__word_no_digit] = ACTIONS(5071), - [sym__digits] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5071), - [sym__code_span_start] = ACTIONS(5071), - [sym__emphasis_open_star] = ACTIONS(5071), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym__strikeout_open] = ACTIONS(5071), - [sym__latex_span_start] = ACTIONS(5071), - [sym__single_quote_open] = ACTIONS(5071), - [sym__double_quote_open] = ACTIONS(5071), - [sym__double_quote_close] = ACTIONS(5071), - [sym__superscript_open] = ACTIONS(5071), - [sym__subscript_open] = ACTIONS(5071), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5071), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5071), - [sym__cite_author_in_text] = ACTIONS(5071), - [sym__cite_suppress_author] = ACTIONS(5071), - [sym__shortcode_open_escaped] = ACTIONS(5071), - [sym__shortcode_open] = ACTIONS(5071), - [sym__unclosed_span] = ACTIONS(5071), - [sym__strong_emphasis_open_star] = ACTIONS(5071), - [sym__strong_emphasis_open_underscore] = ACTIONS(5071), + [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(4251), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(836)] = { - [sym__backslash_escape] = ACTIONS(5075), - [sym_entity_reference] = ACTIONS(5075), - [sym_numeric_character_reference] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_QMARK] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_BSLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [sym__newline_token] = ACTIONS(5075), - [aux_sym_insert_token1] = ACTIONS(5075), - [aux_sym_delete_token1] = ACTIONS(5075), - [aux_sym_highlight_token1] = ACTIONS(5075), - [aux_sym_edit_comment_token1] = ACTIONS(5075), - [anon_sym_CARET_LBRACK] = ACTIONS(5075), - [anon_sym_LBRACK_CARET] = ACTIONS(5075), - [sym_uri_autolink] = ACTIONS(5075), - [sym_email_autolink] = ACTIONS(5075), - [sym__whitespace_ge_2] = ACTIONS(5075), - [aux_sym__whitespace_token1] = ACTIONS(5077), - [sym__word_no_digit] = ACTIONS(5075), - [sym__digits] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5075), - [sym__code_span_start] = ACTIONS(5075), - [sym__emphasis_open_star] = ACTIONS(5075), - [sym__emphasis_open_underscore] = ACTIONS(5075), - [sym__strikeout_open] = ACTIONS(5075), - [sym__latex_span_start] = ACTIONS(5075), - [sym__single_quote_open] = ACTIONS(5075), - [sym__double_quote_open] = ACTIONS(5075), - [sym__double_quote_close] = ACTIONS(5075), - [sym__superscript_open] = ACTIONS(5075), - [sym__subscript_open] = ACTIONS(5075), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5075), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5075), - [sym__cite_author_in_text] = ACTIONS(5075), - [sym__cite_suppress_author] = ACTIONS(5075), - [sym__shortcode_open_escaped] = ACTIONS(5075), - [sym__shortcode_open] = ACTIONS(5075), - [sym__unclosed_span] = ACTIONS(5075), - [sym__strong_emphasis_open_star] = ACTIONS(5075), - [sym__strong_emphasis_open_underscore] = ACTIONS(5075), + [ts_builtin_sym_end] = ACTIONS(4187), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(837)] = { - [sym__backslash_escape] = ACTIONS(5079), - [sym_entity_reference] = ACTIONS(5079), - [sym_numeric_character_reference] = ACTIONS(5079), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_DQUOTE] = ACTIONS(5079), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_QMARK] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BSLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5079), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [sym__newline_token] = ACTIONS(5079), - [aux_sym_insert_token1] = ACTIONS(5079), - [aux_sym_delete_token1] = ACTIONS(5079), - [aux_sym_highlight_token1] = ACTIONS(5079), - [aux_sym_edit_comment_token1] = ACTIONS(5079), - [anon_sym_CARET_LBRACK] = ACTIONS(5079), - [anon_sym_LBRACK_CARET] = ACTIONS(5079), - [sym_uri_autolink] = ACTIONS(5079), - [sym_email_autolink] = ACTIONS(5079), - [sym__whitespace_ge_2] = ACTIONS(5079), - [aux_sym__whitespace_token1] = ACTIONS(5081), - [sym__word_no_digit] = ACTIONS(5079), - [sym__digits] = ACTIONS(5079), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5079), - [sym__code_span_start] = ACTIONS(5079), - [sym__emphasis_open_star] = ACTIONS(5079), - [sym__emphasis_open_underscore] = ACTIONS(5079), - [sym__strikeout_open] = ACTIONS(5079), - [sym__latex_span_start] = ACTIONS(5079), - [sym__single_quote_open] = ACTIONS(5079), - [sym__double_quote_open] = ACTIONS(5079), - [sym__double_quote_close] = ACTIONS(5079), - [sym__superscript_open] = ACTIONS(5079), - [sym__subscript_open] = ACTIONS(5079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5079), - [sym__cite_author_in_text] = ACTIONS(5079), - [sym__cite_suppress_author] = ACTIONS(5079), - [sym__shortcode_open_escaped] = ACTIONS(5079), - [sym__shortcode_open] = ACTIONS(5079), - [sym__unclosed_span] = ACTIONS(5079), - [sym__strong_emphasis_open_star] = ACTIONS(5079), - [sym__strong_emphasis_open_underscore] = ACTIONS(5079), + [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(838)] = { - [sym__backslash_escape] = ACTIONS(5083), - [sym_entity_reference] = ACTIONS(5083), - [sym_numeric_character_reference] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOT] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_QMARK] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_BSLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym_BQUOTE] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [sym__newline_token] = ACTIONS(5083), - [aux_sym_insert_token1] = ACTIONS(5083), - [aux_sym_delete_token1] = ACTIONS(5083), - [aux_sym_highlight_token1] = ACTIONS(5083), - [aux_sym_edit_comment_token1] = ACTIONS(5083), - [anon_sym_CARET_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_CARET] = ACTIONS(5083), - [sym_uri_autolink] = ACTIONS(5083), - [sym_email_autolink] = ACTIONS(5083), - [sym__whitespace_ge_2] = ACTIONS(5083), - [aux_sym__whitespace_token1] = ACTIONS(5085), - [sym__word_no_digit] = ACTIONS(5083), - [sym__digits] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5083), - [sym__code_span_start] = ACTIONS(5083), - [sym__emphasis_open_star] = ACTIONS(5083), - [sym__emphasis_open_underscore] = ACTIONS(5083), - [sym__strikeout_open] = ACTIONS(5083), - [sym__latex_span_start] = ACTIONS(5083), - [sym__single_quote_open] = ACTIONS(5083), - [sym__double_quote_open] = ACTIONS(5083), - [sym__double_quote_close] = ACTIONS(5083), - [sym__superscript_open] = ACTIONS(5083), - [sym__subscript_open] = ACTIONS(5083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5083), - [sym__cite_author_in_text] = ACTIONS(5083), - [sym__cite_suppress_author] = ACTIONS(5083), - [sym__shortcode_open_escaped] = ACTIONS(5083), - [sym__shortcode_open] = ACTIONS(5083), - [sym__unclosed_span] = ACTIONS(5083), - [sym__strong_emphasis_open_star] = ACTIONS(5083), - [sym__strong_emphasis_open_underscore] = ACTIONS(5083), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__double_quote_close] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(839)] = { - [sym__backslash_escape] = ACTIONS(5087), - [sym_entity_reference] = ACTIONS(5087), - [sym_numeric_character_reference] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_DQUOTE] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_AMP] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_QMARK] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym_BQUOTE] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_PIPE] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [sym__newline_token] = ACTIONS(5087), - [aux_sym_insert_token1] = ACTIONS(5087), - [aux_sym_delete_token1] = ACTIONS(5087), - [aux_sym_highlight_token1] = ACTIONS(5087), - [aux_sym_edit_comment_token1] = ACTIONS(5087), - [anon_sym_CARET_LBRACK] = ACTIONS(5087), - [anon_sym_LBRACK_CARET] = ACTIONS(5087), - [sym_uri_autolink] = ACTIONS(5087), - [sym_email_autolink] = ACTIONS(5087), - [sym__whitespace_ge_2] = ACTIONS(5087), - [aux_sym__whitespace_token1] = ACTIONS(5089), - [sym__word_no_digit] = ACTIONS(5087), - [sym__digits] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5087), - [sym__code_span_start] = ACTIONS(5087), - [sym__emphasis_open_star] = ACTIONS(5087), - [sym__emphasis_open_underscore] = ACTIONS(5087), - [sym__strikeout_open] = ACTIONS(5087), - [sym__latex_span_start] = ACTIONS(5087), - [sym__single_quote_open] = ACTIONS(5087), - [sym__double_quote_open] = ACTIONS(5087), - [sym__double_quote_close] = ACTIONS(5087), - [sym__superscript_open] = ACTIONS(5087), - [sym__subscript_open] = ACTIONS(5087), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5087), - [sym__cite_author_in_text] = ACTIONS(5087), - [sym__cite_suppress_author] = ACTIONS(5087), - [sym__shortcode_open_escaped] = ACTIONS(5087), - [sym__shortcode_open] = ACTIONS(5087), - [sym__unclosed_span] = ACTIONS(5087), - [sym__strong_emphasis_open_star] = ACTIONS(5087), - [sym__strong_emphasis_open_underscore] = ACTIONS(5087), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__subscript_close] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(840)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__double_quote_close] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [ts_builtin_sym_end] = ACTIONS(4193), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(841)] = { - [sym__backslash_escape] = ACTIONS(5091), - [sym_entity_reference] = ACTIONS(5091), - [sym_numeric_character_reference] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(5091), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_BSLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym_BQUOTE] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [sym__newline_token] = ACTIONS(5091), - [aux_sym_insert_token1] = ACTIONS(5091), - [aux_sym_delete_token1] = ACTIONS(5091), - [aux_sym_highlight_token1] = ACTIONS(5091), - [aux_sym_edit_comment_token1] = ACTIONS(5091), - [anon_sym_CARET_LBRACK] = ACTIONS(5091), - [anon_sym_LBRACK_CARET] = ACTIONS(5091), - [sym_uri_autolink] = ACTIONS(5091), - [sym_email_autolink] = ACTIONS(5091), - [sym__whitespace_ge_2] = ACTIONS(5091), - [aux_sym__whitespace_token1] = ACTIONS(5093), - [sym__word_no_digit] = ACTIONS(5091), - [sym__digits] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), - [sym__code_span_start] = ACTIONS(5091), - [sym__emphasis_open_star] = ACTIONS(5091), - [sym__emphasis_open_underscore] = ACTIONS(5091), - [sym__strikeout_open] = ACTIONS(5091), - [sym__latex_span_start] = ACTIONS(5091), - [sym__single_quote_open] = ACTIONS(5091), - [sym__double_quote_open] = ACTIONS(5091), - [sym__double_quote_close] = ACTIONS(5091), - [sym__superscript_open] = ACTIONS(5091), - [sym__subscript_open] = ACTIONS(5091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5091), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5091), - [sym__cite_author_in_text] = ACTIONS(5091), - [sym__cite_suppress_author] = ACTIONS(5091), - [sym__shortcode_open_escaped] = ACTIONS(5091), - [sym__shortcode_open] = ACTIONS(5091), - [sym__unclosed_span] = ACTIONS(5091), - [sym__strong_emphasis_open_star] = ACTIONS(5091), - [sym__strong_emphasis_open_underscore] = ACTIONS(5091), + [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(842)] = { - [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_STAR] = 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), + [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(843)] = { - [sym__backslash_escape] = ACTIONS(5095), - [sym_entity_reference] = ACTIONS(5095), - [sym_numeric_character_reference] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_BSLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym_BQUOTE] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [sym__newline_token] = ACTIONS(5095), - [aux_sym_insert_token1] = ACTIONS(5095), - [aux_sym_delete_token1] = ACTIONS(5095), - [aux_sym_highlight_token1] = ACTIONS(5095), - [aux_sym_edit_comment_token1] = ACTIONS(5095), - [anon_sym_CARET_LBRACK] = ACTIONS(5095), - [anon_sym_LBRACK_CARET] = ACTIONS(5095), - [sym_uri_autolink] = ACTIONS(5095), - [sym_email_autolink] = ACTIONS(5095), - [sym__whitespace_ge_2] = ACTIONS(5095), - [aux_sym__whitespace_token1] = ACTIONS(5097), - [sym__word_no_digit] = ACTIONS(5095), - [sym__digits] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5095), - [sym__code_span_start] = ACTIONS(5095), - [sym__emphasis_open_star] = ACTIONS(5095), - [sym__emphasis_open_underscore] = ACTIONS(5095), - [sym__strikeout_open] = ACTIONS(5095), - [sym__latex_span_start] = ACTIONS(5095), - [sym__single_quote_open] = ACTIONS(5095), - [sym__double_quote_open] = ACTIONS(5095), - [sym__double_quote_close] = ACTIONS(5095), - [sym__superscript_open] = ACTIONS(5095), - [sym__subscript_open] = ACTIONS(5095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5095), - [sym__cite_author_in_text] = ACTIONS(5095), - [sym__cite_suppress_author] = ACTIONS(5095), - [sym__shortcode_open_escaped] = ACTIONS(5095), - [sym__shortcode_open] = ACTIONS(5095), - [sym__unclosed_span] = ACTIONS(5095), - [sym__strong_emphasis_open_star] = ACTIONS(5095), - [sym__strong_emphasis_open_underscore] = ACTIONS(5095), + [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(844)] = { - [sym__backslash_escape] = ACTIONS(5099), - [sym_entity_reference] = ACTIONS(5099), - [sym_numeric_character_reference] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [sym__newline_token] = ACTIONS(5099), - [aux_sym_insert_token1] = ACTIONS(5099), - [aux_sym_delete_token1] = ACTIONS(5099), - [aux_sym_highlight_token1] = ACTIONS(5099), - [aux_sym_edit_comment_token1] = ACTIONS(5099), - [anon_sym_CARET_LBRACK] = ACTIONS(5099), - [anon_sym_LBRACK_CARET] = ACTIONS(5099), - [sym_uri_autolink] = ACTIONS(5099), - [sym_email_autolink] = ACTIONS(5099), - [sym__whitespace_ge_2] = ACTIONS(5099), - [aux_sym__whitespace_token1] = ACTIONS(5101), - [sym__word_no_digit] = ACTIONS(5099), - [sym__digits] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5099), - [sym__code_span_start] = ACTIONS(5099), - [sym__emphasis_open_star] = ACTIONS(5099), - [sym__emphasis_open_underscore] = ACTIONS(5099), - [sym__strikeout_open] = ACTIONS(5099), - [sym__latex_span_start] = ACTIONS(5099), - [sym__single_quote_open] = ACTIONS(5099), - [sym__double_quote_open] = ACTIONS(5099), - [sym__double_quote_close] = ACTIONS(5099), - [sym__superscript_open] = ACTIONS(5099), - [sym__subscript_open] = ACTIONS(5099), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5099), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5099), - [sym__cite_author_in_text] = ACTIONS(5099), - [sym__cite_suppress_author] = ACTIONS(5099), - [sym__shortcode_open_escaped] = ACTIONS(5099), - [sym__shortcode_open] = ACTIONS(5099), - [sym__unclosed_span] = ACTIONS(5099), - [sym__strong_emphasis_open_star] = ACTIONS(5099), - [sym__strong_emphasis_open_underscore] = ACTIONS(5099), + [ts_builtin_sym_end] = ACTIONS(4197), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(845)] = { - [sym__backslash_escape] = ACTIONS(5103), - [sym_entity_reference] = ACTIONS(5103), - [sym_numeric_character_reference] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(5103), - [anon_sym_POUND] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_BSLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [sym__newline_token] = ACTIONS(5103), - [aux_sym_insert_token1] = ACTIONS(5103), - [aux_sym_delete_token1] = ACTIONS(5103), - [aux_sym_highlight_token1] = ACTIONS(5103), - [aux_sym_edit_comment_token1] = ACTIONS(5103), - [anon_sym_CARET_LBRACK] = ACTIONS(5103), - [anon_sym_LBRACK_CARET] = ACTIONS(5103), - [sym_uri_autolink] = ACTIONS(5103), - [sym_email_autolink] = ACTIONS(5103), - [sym__whitespace_ge_2] = ACTIONS(5103), - [aux_sym__whitespace_token1] = ACTIONS(5105), - [sym__word_no_digit] = ACTIONS(5103), - [sym__digits] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5103), - [sym__code_span_start] = ACTIONS(5103), - [sym__emphasis_open_star] = ACTIONS(5103), - [sym__emphasis_open_underscore] = ACTIONS(5103), - [sym__strikeout_open] = ACTIONS(5103), - [sym__latex_span_start] = ACTIONS(5103), - [sym__single_quote_open] = ACTIONS(5103), - [sym__double_quote_open] = ACTIONS(5103), - [sym__double_quote_close] = ACTIONS(5103), - [sym__superscript_open] = ACTIONS(5103), - [sym__subscript_open] = ACTIONS(5103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5103), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5103), - [sym__cite_author_in_text] = ACTIONS(5103), - [sym__cite_suppress_author] = ACTIONS(5103), - [sym__shortcode_open_escaped] = ACTIONS(5103), - [sym__shortcode_open] = ACTIONS(5103), - [sym__unclosed_span] = ACTIONS(5103), - [sym__strong_emphasis_open_star] = ACTIONS(5103), - [sym__strong_emphasis_open_underscore] = ACTIONS(5103), + [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(846)] = { - [sym__backslash_escape] = ACTIONS(5107), - [sym_entity_reference] = ACTIONS(5107), - [sym_numeric_character_reference] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_COLON] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_BSLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_BQUOTE] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_PIPE] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [sym__newline_token] = ACTIONS(5107), - [aux_sym_insert_token1] = ACTIONS(5107), - [aux_sym_delete_token1] = ACTIONS(5107), - [aux_sym_highlight_token1] = ACTIONS(5107), - [aux_sym_edit_comment_token1] = ACTIONS(5107), - [anon_sym_CARET_LBRACK] = ACTIONS(5107), - [anon_sym_LBRACK_CARET] = ACTIONS(5107), - [sym_uri_autolink] = ACTIONS(5107), - [sym_email_autolink] = ACTIONS(5107), - [sym__whitespace_ge_2] = ACTIONS(5107), - [aux_sym__whitespace_token1] = ACTIONS(5109), - [sym__word_no_digit] = ACTIONS(5107), - [sym__digits] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5107), - [sym__code_span_start] = ACTIONS(5107), - [sym__emphasis_open_star] = ACTIONS(5107), - [sym__emphasis_open_underscore] = ACTIONS(5107), - [sym__strikeout_open] = ACTIONS(5107), - [sym__latex_span_start] = ACTIONS(5107), - [sym__single_quote_open] = ACTIONS(5107), - [sym__double_quote_open] = ACTIONS(5107), - [sym__double_quote_close] = ACTIONS(5107), - [sym__superscript_open] = ACTIONS(5107), - [sym__subscript_open] = ACTIONS(5107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5107), - [sym__cite_author_in_text] = ACTIONS(5107), - [sym__cite_suppress_author] = ACTIONS(5107), - [sym__shortcode_open_escaped] = ACTIONS(5107), - [sym__shortcode_open] = ACTIONS(5107), - [sym__unclosed_span] = ACTIONS(5107), - [sym__strong_emphasis_open_star] = ACTIONS(5107), - [sym__strong_emphasis_open_underscore] = ACTIONS(5107), + [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(847)] = { - [sym__backslash_escape] = ACTIONS(5111), - [sym_entity_reference] = ACTIONS(5111), - [sym_numeric_character_reference] = ACTIONS(5111), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym_BQUOTE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [sym__newline_token] = ACTIONS(5111), - [aux_sym_insert_token1] = ACTIONS(5111), - [aux_sym_delete_token1] = ACTIONS(5111), - [aux_sym_highlight_token1] = ACTIONS(5111), - [aux_sym_edit_comment_token1] = ACTIONS(5111), - [anon_sym_CARET_LBRACK] = ACTIONS(5111), - [anon_sym_LBRACK_CARET] = ACTIONS(5111), - [sym_uri_autolink] = ACTIONS(5111), - [sym_email_autolink] = ACTIONS(5111), - [sym__whitespace_ge_2] = ACTIONS(5111), - [aux_sym__whitespace_token1] = ACTIONS(5113), - [sym__word_no_digit] = ACTIONS(5111), - [sym__digits] = ACTIONS(5111), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [sym__code_span_start] = ACTIONS(5111), - [sym__emphasis_open_star] = ACTIONS(5111), - [sym__emphasis_open_underscore] = ACTIONS(5111), - [sym__strikeout_open] = ACTIONS(5111), - [sym__latex_span_start] = ACTIONS(5111), - [sym__single_quote_open] = ACTIONS(5111), - [sym__double_quote_open] = ACTIONS(5111), - [sym__double_quote_close] = ACTIONS(5111), - [sym__superscript_open] = ACTIONS(5111), - [sym__subscript_open] = ACTIONS(5111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5111), - [sym__cite_author_in_text] = ACTIONS(5111), - [sym__cite_suppress_author] = ACTIONS(5111), - [sym__shortcode_open_escaped] = ACTIONS(5111), - [sym__shortcode_open] = ACTIONS(5111), - [sym__unclosed_span] = ACTIONS(5111), - [sym__strong_emphasis_open_star] = ACTIONS(5111), - [sym__strong_emphasis_open_underscore] = ACTIONS(5111), + [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__subscript_close] = 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(848)] = { - [sym__backslash_escape] = ACTIONS(5115), - [sym_entity_reference] = ACTIONS(5115), - [sym_numeric_character_reference] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(5115), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_QMARK] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym_BQUOTE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [sym__newline_token] = ACTIONS(5115), - [aux_sym_insert_token1] = ACTIONS(5115), - [aux_sym_delete_token1] = ACTIONS(5115), - [aux_sym_highlight_token1] = ACTIONS(5115), - [aux_sym_edit_comment_token1] = ACTIONS(5115), - [anon_sym_CARET_LBRACK] = ACTIONS(5115), - [anon_sym_LBRACK_CARET] = ACTIONS(5115), - [sym_uri_autolink] = ACTIONS(5115), - [sym_email_autolink] = ACTIONS(5115), - [sym__whitespace_ge_2] = ACTIONS(5115), - [aux_sym__whitespace_token1] = ACTIONS(5117), - [sym__word_no_digit] = ACTIONS(5115), - [sym__digits] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5115), - [sym__code_span_start] = ACTIONS(5115), - [sym__emphasis_open_star] = ACTIONS(5115), - [sym__emphasis_open_underscore] = ACTIONS(5115), - [sym__strikeout_open] = ACTIONS(5115), - [sym__latex_span_start] = ACTIONS(5115), - [sym__single_quote_open] = ACTIONS(5115), - [sym__double_quote_open] = ACTIONS(5115), - [sym__double_quote_close] = ACTIONS(5115), - [sym__superscript_open] = ACTIONS(5115), - [sym__subscript_open] = ACTIONS(5115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5115), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5115), - [sym__cite_author_in_text] = ACTIONS(5115), - [sym__cite_suppress_author] = ACTIONS(5115), - [sym__shortcode_open_escaped] = ACTIONS(5115), - [sym__shortcode_open] = ACTIONS(5115), - [sym__unclosed_span] = ACTIONS(5115), - [sym__strong_emphasis_open_star] = ACTIONS(5115), - [sym__strong_emphasis_open_underscore] = ACTIONS(5115), + [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(849)] = { - [sym__backslash_escape] = ACTIONS(5119), - [sym_entity_reference] = ACTIONS(5119), - [sym_numeric_character_reference] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_AMP] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [sym__newline_token] = ACTIONS(5119), - [aux_sym_insert_token1] = ACTIONS(5119), - [aux_sym_delete_token1] = ACTIONS(5119), - [aux_sym_highlight_token1] = ACTIONS(5119), - [aux_sym_edit_comment_token1] = ACTIONS(5119), - [anon_sym_CARET_LBRACK] = ACTIONS(5119), - [anon_sym_LBRACK_CARET] = ACTIONS(5119), - [sym_uri_autolink] = ACTIONS(5119), - [sym_email_autolink] = ACTIONS(5119), - [sym__whitespace_ge_2] = ACTIONS(5119), - [aux_sym__whitespace_token1] = ACTIONS(5121), - [sym__word_no_digit] = ACTIONS(5119), - [sym__digits] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5119), - [sym__code_span_start] = ACTIONS(5119), - [sym__emphasis_open_star] = ACTIONS(5119), - [sym__emphasis_open_underscore] = ACTIONS(5119), - [sym__strikeout_open] = ACTIONS(5119), - [sym__latex_span_start] = ACTIONS(5119), - [sym__single_quote_open] = ACTIONS(5119), - [sym__double_quote_open] = ACTIONS(5119), - [sym__double_quote_close] = ACTIONS(5119), - [sym__superscript_open] = ACTIONS(5119), - [sym__subscript_open] = ACTIONS(5119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5119), - [sym__cite_author_in_text] = ACTIONS(5119), - [sym__cite_suppress_author] = ACTIONS(5119), - [sym__shortcode_open_escaped] = ACTIONS(5119), - [sym__shortcode_open] = ACTIONS(5119), - [sym__unclosed_span] = ACTIONS(5119), - [sym__strong_emphasis_open_star] = ACTIONS(5119), - [sym__strong_emphasis_open_underscore] = ACTIONS(5119), + [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__subscript_close] = 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(850)] = { - [sym__backslash_escape] = ACTIONS(5123), - [sym_entity_reference] = ACTIONS(5123), - [sym_numeric_character_reference] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_DQUOTE] = ACTIONS(5123), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym_BQUOTE] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [sym__newline_token] = ACTIONS(5123), - [aux_sym_insert_token1] = ACTIONS(5123), - [aux_sym_delete_token1] = ACTIONS(5123), - [aux_sym_highlight_token1] = ACTIONS(5123), - [aux_sym_edit_comment_token1] = ACTIONS(5123), - [anon_sym_CARET_LBRACK] = ACTIONS(5123), - [anon_sym_LBRACK_CARET] = ACTIONS(5123), - [sym_uri_autolink] = ACTIONS(5123), - [sym_email_autolink] = ACTIONS(5123), - [sym__whitespace_ge_2] = ACTIONS(5123), - [aux_sym__whitespace_token1] = ACTIONS(5125), - [sym__word_no_digit] = ACTIONS(5123), - [sym__digits] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), - [sym__code_span_start] = ACTIONS(5123), - [sym__emphasis_open_star] = ACTIONS(5123), - [sym__emphasis_open_underscore] = ACTIONS(5123), - [sym__strikeout_open] = ACTIONS(5123), - [sym__latex_span_start] = ACTIONS(5123), - [sym__single_quote_open] = ACTIONS(5123), - [sym__double_quote_open] = ACTIONS(5123), - [sym__double_quote_close] = ACTIONS(5123), - [sym__superscript_open] = ACTIONS(5123), - [sym__subscript_open] = ACTIONS(5123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5123), - [sym__cite_author_in_text] = ACTIONS(5123), - [sym__cite_suppress_author] = ACTIONS(5123), - [sym__shortcode_open_escaped] = ACTIONS(5123), - [sym__shortcode_open] = ACTIONS(5123), - [sym__unclosed_span] = ACTIONS(5123), - [sym__strong_emphasis_open_star] = ACTIONS(5123), - [sym__strong_emphasis_open_underscore] = ACTIONS(5123), + [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__subscript_close] = 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(851)] = { + [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__subscript_close] = 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(852)] = { + [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__subscript_close] = 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(853)] = { + [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__subscript_close] = 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(854)] = { + [ts_builtin_sym_end] = ACTIONS(4201), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), + }, + [STATE(855)] = { + [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__subscript_close] = 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(856)] = { + [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__subscript_close] = 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(857)] = { + [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__double_quote_close] = 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(858)] = { + [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__subscript_close] = 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(859)] = { + [sym__backslash_escape] = ACTIONS(4495), + [sym_entity_reference] = ACTIONS(4495), + [sym_numeric_character_reference] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_QMARK] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_BSLASH] = ACTIONS(4497), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_BQUOTE] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [sym__newline_token] = ACTIONS(4495), + [aux_sym_insert_token1] = ACTIONS(4495), + [aux_sym_delete_token1] = ACTIONS(4495), + [aux_sym_highlight_token1] = ACTIONS(4495), + [aux_sym_edit_comment_token1] = ACTIONS(4495), + [anon_sym_CARET_LBRACK] = ACTIONS(4495), + [anon_sym_LBRACK_CARET] = ACTIONS(4495), + [sym_uri_autolink] = ACTIONS(4495), + [sym_email_autolink] = ACTIONS(4495), + [sym__whitespace_ge_2] = ACTIONS(4495), + [aux_sym__whitespace_token1] = ACTIONS(4497), + [sym__word_no_digit] = ACTIONS(4495), + [sym__digits] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4495), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(4495), + [sym__emphasis_open_underscore] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4495), + [sym__latex_span_start] = ACTIONS(4495), + [sym__single_quote_open] = ACTIONS(4495), + [sym__double_quote_open] = ACTIONS(4495), + [sym__superscript_open] = ACTIONS(4495), + [sym__subscript_open] = ACTIONS(4495), + [sym__subscript_close] = ACTIONS(4495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4495), + [sym__cite_author_in_text] = ACTIONS(4495), + [sym__cite_suppress_author] = ACTIONS(4495), + [sym__shortcode_open_escaped] = ACTIONS(4495), + [sym__shortcode_open] = ACTIONS(4495), + [sym__unclosed_span] = ACTIONS(4495), + [sym__strong_emphasis_open_star] = ACTIONS(4495), + [sym__strong_emphasis_open_underscore] = ACTIONS(4495), + }, + [STATE(860)] = { + [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(861)] = { + [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(862)] = { + [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__superscript_close] = 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(863)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -105845,7 +105774,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(4631), [anon_sym_AMP] = ACTIONS(4633), [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_STAR] = ACTIONS(4631), [anon_sym_PLUS] = ACTIONS(4631), [anon_sym_COMMA] = ACTIONS(4631), [anon_sym_DASH] = ACTIONS(4633), @@ -105887,9 +105815,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__latex_span_start] = ACTIONS(4631), [sym__single_quote_open] = ACTIONS(4631), [sym__double_quote_open] = ACTIONS(4631), - [sym__double_quote_close] = ACTIONS(4631), [sym__superscript_open] = ACTIONS(4631), [sym__subscript_open] = ACTIONS(4631), + [sym__subscript_close] = 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), @@ -105900,5311 +105828,4631 @@ 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(852)] = { - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__double_quote_close] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), - }, - [STATE(853)] = { - [sym__backslash_escape] = ACTIONS(5127), - [sym_entity_reference] = ACTIONS(5127), - [sym_numeric_character_reference] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_DQUOTE] = ACTIONS(5127), - [anon_sym_POUND] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_PERCENT] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_QMARK] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym_BQUOTE] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym__newline_token] = ACTIONS(5127), - [aux_sym_insert_token1] = ACTIONS(5127), - [aux_sym_delete_token1] = ACTIONS(5127), - [aux_sym_highlight_token1] = ACTIONS(5127), - [aux_sym_edit_comment_token1] = ACTIONS(5127), - [anon_sym_CARET_LBRACK] = ACTIONS(5127), - [anon_sym_LBRACK_CARET] = ACTIONS(5127), - [sym_uri_autolink] = ACTIONS(5127), - [sym_email_autolink] = ACTIONS(5127), - [sym__whitespace_ge_2] = ACTIONS(5127), - [aux_sym__whitespace_token1] = ACTIONS(5129), - [sym__word_no_digit] = ACTIONS(5127), - [sym__digits] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5127), - [sym__code_span_start] = ACTIONS(5127), - [sym__emphasis_open_star] = ACTIONS(5127), - [sym__emphasis_open_underscore] = ACTIONS(5127), - [sym__strikeout_open] = ACTIONS(5127), - [sym__latex_span_start] = ACTIONS(5127), - [sym__single_quote_open] = ACTIONS(5127), - [sym__double_quote_open] = ACTIONS(5127), - [sym__double_quote_close] = ACTIONS(5127), - [sym__superscript_open] = ACTIONS(5127), - [sym__subscript_open] = ACTIONS(5127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5127), - [sym__cite_author_in_text] = ACTIONS(5127), - [sym__cite_suppress_author] = ACTIONS(5127), - [sym__shortcode_open_escaped] = ACTIONS(5127), - [sym__shortcode_open] = ACTIONS(5127), - [sym__unclosed_span] = ACTIONS(5127), - [sym__strong_emphasis_open_star] = ACTIONS(5127), - [sym__strong_emphasis_open_underscore] = ACTIONS(5127), - }, - [STATE(854)] = { - [sym__backslash_escape] = ACTIONS(5131), - [sym_entity_reference] = ACTIONS(5131), - [sym_numeric_character_reference] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(5131), - [anon_sym_POUND] = ACTIONS(5131), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(5133), - [anon_sym_SQUOTE] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_QMARK] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(5133), - [anon_sym_BQUOTE] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_PIPE] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [sym__newline_token] = ACTIONS(5131), - [aux_sym_insert_token1] = ACTIONS(5131), - [aux_sym_delete_token1] = ACTIONS(5131), - [aux_sym_highlight_token1] = ACTIONS(5131), - [aux_sym_edit_comment_token1] = ACTIONS(5131), - [anon_sym_CARET_LBRACK] = ACTIONS(5131), - [anon_sym_LBRACK_CARET] = ACTIONS(5131), - [sym_uri_autolink] = ACTIONS(5131), - [sym_email_autolink] = ACTIONS(5131), - [sym__whitespace_ge_2] = ACTIONS(5131), - [aux_sym__whitespace_token1] = ACTIONS(5133), - [sym__word_no_digit] = ACTIONS(5131), - [sym__digits] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), - [sym__code_span_start] = ACTIONS(5131), - [sym__emphasis_open_star] = ACTIONS(5131), - [sym__emphasis_open_underscore] = ACTIONS(5131), - [sym__strikeout_open] = ACTIONS(5131), - [sym__latex_span_start] = ACTIONS(5131), - [sym__single_quote_open] = ACTIONS(5131), - [sym__double_quote_open] = ACTIONS(5131), - [sym__double_quote_close] = ACTIONS(5131), - [sym__superscript_open] = ACTIONS(5131), - [sym__subscript_open] = ACTIONS(5131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5131), - [sym__cite_author_in_text] = ACTIONS(5131), - [sym__cite_suppress_author] = ACTIONS(5131), - [sym__shortcode_open_escaped] = ACTIONS(5131), - [sym__shortcode_open] = ACTIONS(5131), - [sym__unclosed_span] = ACTIONS(5131), - [sym__strong_emphasis_open_star] = ACTIONS(5131), - [sym__strong_emphasis_open_underscore] = ACTIONS(5131), - }, - [STATE(855)] = { - [sym__backslash_escape] = ACTIONS(5135), - [sym_entity_reference] = ACTIONS(5135), - [sym_numeric_character_reference] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_AMP] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_QMARK] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH] = ACTIONS(5137), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [sym__newline_token] = ACTIONS(5135), - [aux_sym_insert_token1] = ACTIONS(5135), - [aux_sym_delete_token1] = ACTIONS(5135), - [aux_sym_highlight_token1] = ACTIONS(5135), - [aux_sym_edit_comment_token1] = ACTIONS(5135), - [anon_sym_CARET_LBRACK] = ACTIONS(5135), - [anon_sym_LBRACK_CARET] = ACTIONS(5135), - [sym_uri_autolink] = ACTIONS(5135), - [sym_email_autolink] = ACTIONS(5135), - [sym__whitespace_ge_2] = ACTIONS(5135), - [aux_sym__whitespace_token1] = ACTIONS(5137), - [sym__word_no_digit] = ACTIONS(5135), - [sym__digits] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5135), - [sym__code_span_start] = ACTIONS(5135), - [sym__emphasis_open_star] = ACTIONS(5135), - [sym__emphasis_open_underscore] = ACTIONS(5135), - [sym__strikeout_open] = ACTIONS(5135), - [sym__latex_span_start] = ACTIONS(5135), - [sym__single_quote_open] = ACTIONS(5135), - [sym__double_quote_open] = ACTIONS(5135), - [sym__double_quote_close] = ACTIONS(5135), - [sym__superscript_open] = ACTIONS(5135), - [sym__subscript_open] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5135), - [sym__cite_author_in_text] = ACTIONS(5135), - [sym__cite_suppress_author] = ACTIONS(5135), - [sym__shortcode_open_escaped] = ACTIONS(5135), - [sym__shortcode_open] = ACTIONS(5135), - [sym__unclosed_span] = ACTIONS(5135), - [sym__strong_emphasis_open_star] = ACTIONS(5135), - [sym__strong_emphasis_open_underscore] = ACTIONS(5135), - }, - [STATE(856)] = { - [sym__backslash_escape] = ACTIONS(5139), - [sym_entity_reference] = ACTIONS(5139), - [sym_numeric_character_reference] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_DQUOTE] = ACTIONS(5139), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH] = ACTIONS(5141), - [anon_sym_CARET] = ACTIONS(5141), - [anon_sym_BQUOTE] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_RPAREN] = ACTIONS(5139), - [sym__newline_token] = ACTIONS(5139), - [aux_sym_insert_token1] = ACTIONS(5139), - [aux_sym_delete_token1] = ACTIONS(5139), - [aux_sym_highlight_token1] = ACTIONS(5139), - [aux_sym_edit_comment_token1] = ACTIONS(5139), - [anon_sym_CARET_LBRACK] = ACTIONS(5139), - [anon_sym_LBRACK_CARET] = ACTIONS(5139), - [sym_uri_autolink] = ACTIONS(5139), - [sym_email_autolink] = ACTIONS(5139), - [sym__whitespace_ge_2] = ACTIONS(5139), - [aux_sym__whitespace_token1] = ACTIONS(5141), - [sym__word_no_digit] = ACTIONS(5139), - [sym__digits] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5141), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5139), - [sym__code_span_start] = ACTIONS(5139), - [sym__emphasis_open_star] = ACTIONS(5139), - [sym__emphasis_open_underscore] = ACTIONS(5139), - [sym__strikeout_open] = ACTIONS(5139), - [sym__latex_span_start] = ACTIONS(5139), - [sym__single_quote_open] = ACTIONS(5139), - [sym__double_quote_open] = ACTIONS(5139), - [sym__double_quote_close] = ACTIONS(5139), - [sym__superscript_open] = ACTIONS(5139), - [sym__subscript_open] = ACTIONS(5139), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5139), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5139), - [sym__cite_author_in_text] = ACTIONS(5139), - [sym__cite_suppress_author] = ACTIONS(5139), - [sym__shortcode_open_escaped] = ACTIONS(5139), - [sym__shortcode_open] = ACTIONS(5139), - [sym__unclosed_span] = ACTIONS(5139), - [sym__strong_emphasis_open_star] = ACTIONS(5139), - [sym__strong_emphasis_open_underscore] = ACTIONS(5139), - }, - [STATE(857)] = { - [sym__backslash_escape] = ACTIONS(5143), - [sym_entity_reference] = ACTIONS(5143), - [sym_numeric_character_reference] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_DQUOTE] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_PERCENT] = ACTIONS(5143), - [anon_sym_AMP] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH] = ACTIONS(5145), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym_BQUOTE] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [sym__newline_token] = ACTIONS(5143), - [aux_sym_insert_token1] = ACTIONS(5143), - [aux_sym_delete_token1] = ACTIONS(5143), - [aux_sym_highlight_token1] = ACTIONS(5143), - [aux_sym_edit_comment_token1] = ACTIONS(5143), - [anon_sym_CARET_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_CARET] = ACTIONS(5143), - [sym_uri_autolink] = ACTIONS(5143), - [sym_email_autolink] = ACTIONS(5143), - [sym__whitespace_ge_2] = ACTIONS(5143), - [aux_sym__whitespace_token1] = ACTIONS(5145), - [sym__word_no_digit] = ACTIONS(5143), - [sym__digits] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5143), - [sym__code_span_start] = ACTIONS(5143), - [sym__emphasis_open_star] = ACTIONS(5143), - [sym__emphasis_open_underscore] = ACTIONS(5143), - [sym__strikeout_open] = ACTIONS(5143), - [sym__latex_span_start] = ACTIONS(5143), - [sym__single_quote_open] = ACTIONS(5143), - [sym__double_quote_open] = ACTIONS(5143), - [sym__double_quote_close] = ACTIONS(5143), - [sym__superscript_open] = ACTIONS(5143), - [sym__subscript_open] = ACTIONS(5143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5143), - [sym__cite_author_in_text] = ACTIONS(5143), - [sym__cite_suppress_author] = ACTIONS(5143), - [sym__shortcode_open_escaped] = ACTIONS(5143), - [sym__shortcode_open] = ACTIONS(5143), - [sym__unclosed_span] = ACTIONS(5143), - [sym__strong_emphasis_open_star] = ACTIONS(5143), - [sym__strong_emphasis_open_underscore] = ACTIONS(5143), - }, - [STATE(858)] = { - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__double_quote_close] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), - }, - [STATE(859)] = { - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__double_quote_close] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), - }, - [STATE(860)] = { - [sym__backslash_escape] = ACTIONS(5147), - [sym_entity_reference] = ACTIONS(5147), - [sym_numeric_character_reference] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_DQUOTE] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [sym__newline_token] = ACTIONS(5147), - [aux_sym_insert_token1] = ACTIONS(5147), - [aux_sym_delete_token1] = ACTIONS(5147), - [aux_sym_highlight_token1] = ACTIONS(5147), - [aux_sym_edit_comment_token1] = ACTIONS(5147), - [anon_sym_CARET_LBRACK] = ACTIONS(5147), - [anon_sym_LBRACK_CARET] = ACTIONS(5147), - [sym_uri_autolink] = ACTIONS(5147), - [sym_email_autolink] = ACTIONS(5147), - [sym__whitespace_ge_2] = ACTIONS(5147), - [aux_sym__whitespace_token1] = ACTIONS(5149), - [sym__word_no_digit] = ACTIONS(5147), - [sym__digits] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5147), - [sym__code_span_start] = ACTIONS(5147), - [sym__emphasis_open_star] = ACTIONS(5147), - [sym__emphasis_open_underscore] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5147), - [sym__latex_span_start] = ACTIONS(5147), - [sym__single_quote_open] = ACTIONS(5147), - [sym__double_quote_open] = ACTIONS(5147), - [sym__double_quote_close] = ACTIONS(5147), - [sym__superscript_open] = ACTIONS(5147), - [sym__subscript_open] = ACTIONS(5147), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5147), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5147), - [sym__cite_author_in_text] = ACTIONS(5147), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__shortcode_open_escaped] = ACTIONS(5147), - [sym__shortcode_open] = ACTIONS(5147), - [sym__unclosed_span] = ACTIONS(5147), - [sym__strong_emphasis_open_star] = ACTIONS(5147), - [sym__strong_emphasis_open_underscore] = ACTIONS(5147), - }, - [STATE(861)] = { - [sym__backslash_escape] = ACTIONS(5151), - [sym_entity_reference] = ACTIONS(5151), - [sym_numeric_character_reference] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_DQUOTE] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_PERCENT] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_QMARK] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [sym__newline_token] = ACTIONS(5151), - [aux_sym_insert_token1] = ACTIONS(5151), - [aux_sym_delete_token1] = ACTIONS(5151), - [aux_sym_highlight_token1] = ACTIONS(5151), - [aux_sym_edit_comment_token1] = ACTIONS(5151), - [anon_sym_CARET_LBRACK] = ACTIONS(5151), - [anon_sym_LBRACK_CARET] = ACTIONS(5151), - [sym_uri_autolink] = ACTIONS(5151), - [sym_email_autolink] = ACTIONS(5151), - [sym__whitespace_ge_2] = ACTIONS(5151), - [aux_sym__whitespace_token1] = ACTIONS(5153), - [sym__word_no_digit] = ACTIONS(5151), - [sym__digits] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5151), - [sym__code_span_start] = ACTIONS(5151), - [sym__emphasis_open_star] = ACTIONS(5151), - [sym__emphasis_open_underscore] = ACTIONS(5151), - [sym__strikeout_open] = ACTIONS(5151), - [sym__latex_span_start] = ACTIONS(5151), - [sym__single_quote_open] = ACTIONS(5151), - [sym__double_quote_open] = ACTIONS(5151), - [sym__double_quote_close] = ACTIONS(5151), - [sym__superscript_open] = ACTIONS(5151), - [sym__subscript_open] = ACTIONS(5151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5151), - [sym__cite_author_in_text] = ACTIONS(5151), - [sym__cite_suppress_author] = ACTIONS(5151), - [sym__shortcode_open_escaped] = ACTIONS(5151), - [sym__shortcode_open] = ACTIONS(5151), - [sym__unclosed_span] = ACTIONS(5151), - [sym__strong_emphasis_open_star] = ACTIONS(5151), - [sym__strong_emphasis_open_underscore] = ACTIONS(5151), - }, - [STATE(862)] = { - [sym__backslash_escape] = ACTIONS(5155), - [sym_entity_reference] = ACTIONS(5155), - [sym_numeric_character_reference] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_QMARK] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [sym__newline_token] = ACTIONS(5155), - [aux_sym_insert_token1] = ACTIONS(5155), - [aux_sym_delete_token1] = ACTIONS(5155), - [aux_sym_highlight_token1] = ACTIONS(5155), - [aux_sym_edit_comment_token1] = ACTIONS(5155), - [anon_sym_CARET_LBRACK] = ACTIONS(5155), - [anon_sym_LBRACK_CARET] = ACTIONS(5155), - [sym_uri_autolink] = ACTIONS(5155), - [sym_email_autolink] = ACTIONS(5155), - [sym__whitespace_ge_2] = ACTIONS(5155), - [aux_sym__whitespace_token1] = ACTIONS(5157), - [sym__word_no_digit] = ACTIONS(5155), - [sym__digits] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5155), - [sym__code_span_start] = ACTIONS(5155), - [sym__emphasis_open_star] = ACTIONS(5155), - [sym__emphasis_open_underscore] = ACTIONS(5155), - [sym__strikeout_open] = ACTIONS(5155), - [sym__latex_span_start] = ACTIONS(5155), - [sym__single_quote_open] = ACTIONS(5155), - [sym__double_quote_open] = ACTIONS(5155), - [sym__double_quote_close] = ACTIONS(5155), - [sym__superscript_open] = ACTIONS(5155), - [sym__subscript_open] = ACTIONS(5155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5155), - [sym__cite_author_in_text] = ACTIONS(5155), - [sym__cite_suppress_author] = ACTIONS(5155), - [sym__shortcode_open_escaped] = ACTIONS(5155), - [sym__shortcode_open] = ACTIONS(5155), - [sym__unclosed_span] = ACTIONS(5155), - [sym__strong_emphasis_open_star] = ACTIONS(5155), - [sym__strong_emphasis_open_underscore] = ACTIONS(5155), - }, - [STATE(863)] = { - [sym__backslash_escape] = ACTIONS(5159), - [sym_entity_reference] = ACTIONS(5159), - [sym_numeric_character_reference] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_DQUOTE] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_QMARK] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym__newline_token] = ACTIONS(5159), - [aux_sym_insert_token1] = ACTIONS(5159), - [aux_sym_delete_token1] = ACTIONS(5159), - [aux_sym_highlight_token1] = ACTIONS(5159), - [aux_sym_edit_comment_token1] = ACTIONS(5159), - [anon_sym_CARET_LBRACK] = ACTIONS(5159), - [anon_sym_LBRACK_CARET] = ACTIONS(5159), - [sym_uri_autolink] = ACTIONS(5159), - [sym_email_autolink] = ACTIONS(5159), - [sym__whitespace_ge_2] = ACTIONS(5159), - [aux_sym__whitespace_token1] = ACTIONS(5161), - [sym__word_no_digit] = ACTIONS(5159), - [sym__digits] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5159), - [sym__code_span_start] = ACTIONS(5159), - [sym__emphasis_open_star] = ACTIONS(5159), - [sym__emphasis_open_underscore] = ACTIONS(5159), - [sym__strikeout_open] = ACTIONS(5159), - [sym__latex_span_start] = ACTIONS(5159), - [sym__single_quote_open] = ACTIONS(5159), - [sym__double_quote_open] = ACTIONS(5159), - [sym__double_quote_close] = ACTIONS(5159), - [sym__superscript_open] = ACTIONS(5159), - [sym__subscript_open] = ACTIONS(5159), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5159), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5159), - [sym__cite_author_in_text] = ACTIONS(5159), - [sym__cite_suppress_author] = ACTIONS(5159), - [sym__shortcode_open_escaped] = ACTIONS(5159), - [sym__shortcode_open] = ACTIONS(5159), - [sym__unclosed_span] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5159), - [sym__strong_emphasis_open_underscore] = ACTIONS(5159), - }, [STATE(864)] = { - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__double_quote_close] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__subscript_close] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(865)] = { - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__double_quote_close] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [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(866)] = { - [ts_builtin_sym_end] = ACTIONS(4657), - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [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__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), + [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(867)] = { - [sym__backslash_escape] = ACTIONS(5163), - [sym_entity_reference] = ACTIONS(5163), - [sym_numeric_character_reference] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_PERCENT] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym_BQUOTE] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [sym__newline_token] = ACTIONS(5163), - [aux_sym_insert_token1] = ACTIONS(5163), - [aux_sym_delete_token1] = ACTIONS(5163), - [aux_sym_highlight_token1] = ACTIONS(5163), - [aux_sym_edit_comment_token1] = ACTIONS(5163), - [anon_sym_CARET_LBRACK] = ACTIONS(5163), - [anon_sym_LBRACK_CARET] = ACTIONS(5163), - [sym_uri_autolink] = ACTIONS(5163), - [sym_email_autolink] = ACTIONS(5163), - [sym__whitespace_ge_2] = ACTIONS(5163), - [aux_sym__whitespace_token1] = ACTIONS(5165), - [sym__word_no_digit] = ACTIONS(5163), - [sym__digits] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5163), - [sym__code_span_start] = ACTIONS(5163), - [sym__emphasis_open_star] = ACTIONS(5163), - [sym__emphasis_open_underscore] = ACTIONS(5163), - [sym__strikeout_open] = ACTIONS(5163), - [sym__latex_span_start] = ACTIONS(5163), - [sym__single_quote_open] = ACTIONS(5163), - [sym__double_quote_open] = ACTIONS(5163), - [sym__double_quote_close] = ACTIONS(5163), - [sym__superscript_open] = ACTIONS(5163), - [sym__subscript_open] = ACTIONS(5163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5163), - [sym__cite_author_in_text] = ACTIONS(5163), - [sym__cite_suppress_author] = ACTIONS(5163), - [sym__shortcode_open_escaped] = ACTIONS(5163), - [sym__shortcode_open] = ACTIONS(5163), - [sym__unclosed_span] = ACTIONS(5163), - [sym__strong_emphasis_open_star] = ACTIONS(5163), - [sym__strong_emphasis_open_underscore] = ACTIONS(5163), + [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(868)] = { - [sym__backslash_escape] = ACTIONS(5167), - [sym_entity_reference] = ACTIONS(5167), - [sym_numeric_character_reference] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_POUND] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_PERCENT] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_QMARK] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [sym__newline_token] = ACTIONS(5167), - [aux_sym_insert_token1] = ACTIONS(5167), - [aux_sym_delete_token1] = ACTIONS(5167), - [aux_sym_highlight_token1] = ACTIONS(5167), - [aux_sym_edit_comment_token1] = ACTIONS(5167), - [anon_sym_CARET_LBRACK] = ACTIONS(5167), - [anon_sym_LBRACK_CARET] = ACTIONS(5167), - [sym_uri_autolink] = ACTIONS(5167), - [sym_email_autolink] = ACTIONS(5167), - [sym__whitespace_ge_2] = ACTIONS(5167), - [aux_sym__whitespace_token1] = ACTIONS(5169), - [sym__word_no_digit] = ACTIONS(5167), - [sym__digits] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5169), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), - [sym__code_span_start] = ACTIONS(5167), - [sym__emphasis_open_star] = ACTIONS(5167), - [sym__emphasis_open_underscore] = ACTIONS(5167), - [sym__strikeout_open] = ACTIONS(5167), - [sym__latex_span_start] = ACTIONS(5167), - [sym__single_quote_open] = ACTIONS(5167), - [sym__double_quote_open] = ACTIONS(5167), - [sym__double_quote_close] = ACTIONS(5167), - [sym__superscript_open] = ACTIONS(5167), - [sym__subscript_open] = ACTIONS(5167), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5167), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5167), - [sym__cite_author_in_text] = ACTIONS(5167), - [sym__cite_suppress_author] = ACTIONS(5167), - [sym__shortcode_open_escaped] = ACTIONS(5167), - [sym__shortcode_open] = ACTIONS(5167), - [sym__unclosed_span] = ACTIONS(5167), - [sym__strong_emphasis_open_star] = ACTIONS(5167), - [sym__strong_emphasis_open_underscore] = ACTIONS(5167), + [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(869)] = { - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__double_quote_close] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [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__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), + [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(870)] = { - [ts_builtin_sym_end] = ACTIONS(4971), - [sym__backslash_escape] = ACTIONS(4971), - [sym_entity_reference] = ACTIONS(4971), - [sym_numeric_character_reference] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym_BQUOTE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [sym__newline_token] = ACTIONS(4971), - [aux_sym_insert_token1] = ACTIONS(4971), - [aux_sym_delete_token1] = ACTIONS(4971), - [aux_sym_highlight_token1] = ACTIONS(4971), - [aux_sym_edit_comment_token1] = ACTIONS(4971), - [anon_sym_CARET_LBRACK] = ACTIONS(4971), - [anon_sym_LBRACK_CARET] = ACTIONS(4971), - [sym_uri_autolink] = ACTIONS(4971), - [sym_email_autolink] = ACTIONS(4971), - [sym__whitespace_ge_2] = ACTIONS(4971), - [aux_sym__whitespace_token1] = ACTIONS(4973), - [sym__word_no_digit] = ACTIONS(4971), - [sym__digits] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4971), - [sym__code_span_start] = ACTIONS(4971), - [sym__emphasis_open_star] = ACTIONS(4971), - [sym__emphasis_open_underscore] = ACTIONS(4971), - [sym__strikeout_open] = ACTIONS(4971), - [sym__latex_span_start] = ACTIONS(4971), - [sym__single_quote_open] = ACTIONS(4971), - [sym__double_quote_open] = ACTIONS(4971), - [sym__superscript_open] = ACTIONS(4971), - [sym__subscript_open] = ACTIONS(4971), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4971), - [sym__cite_author_in_text] = ACTIONS(4971), - [sym__cite_suppress_author] = ACTIONS(4971), - [sym__shortcode_open_escaped] = ACTIONS(4971), - [sym__shortcode_open] = ACTIONS(4971), - [sym__unclosed_span] = ACTIONS(4971), - [sym__strong_emphasis_open_star] = ACTIONS(4971), - [sym__strong_emphasis_open_underscore] = ACTIONS(4971), + [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__subscript_close] = 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(871)] = { - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__double_quote_close] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [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__subscript_close] = 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(872)] = { - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__double_quote_close] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [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__subscript_close] = 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(873)] = { - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__double_quote_close] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [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__subscript_close] = 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(874)] = { - [sym__backslash_escape] = ACTIONS(5171), - [sym_entity_reference] = ACTIONS(5171), - [sym_numeric_character_reference] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [anon_sym_POUND] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_QMARK] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH] = ACTIONS(5173), - [anon_sym_CARET] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [sym__newline_token] = ACTIONS(5171), - [aux_sym_insert_token1] = ACTIONS(5171), - [aux_sym_delete_token1] = ACTIONS(5171), - [aux_sym_highlight_token1] = ACTIONS(5171), - [aux_sym_edit_comment_token1] = ACTIONS(5171), - [anon_sym_CARET_LBRACK] = ACTIONS(5171), - [anon_sym_LBRACK_CARET] = ACTIONS(5171), - [sym_uri_autolink] = ACTIONS(5171), - [sym_email_autolink] = ACTIONS(5171), - [sym__whitespace_ge_2] = ACTIONS(5171), - [aux_sym__whitespace_token1] = ACTIONS(5173), - [sym__word_no_digit] = ACTIONS(5171), - [sym__digits] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5171), - [sym__code_span_start] = ACTIONS(5171), - [sym__emphasis_open_star] = ACTIONS(5171), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym__strikeout_open] = ACTIONS(5171), - [sym__latex_span_start] = ACTIONS(5171), - [sym__single_quote_open] = ACTIONS(5171), - [sym__double_quote_open] = ACTIONS(5171), - [sym__double_quote_close] = ACTIONS(5171), - [sym__superscript_open] = ACTIONS(5171), - [sym__subscript_open] = ACTIONS(5171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5171), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5171), - [sym__cite_author_in_text] = ACTIONS(5171), - [sym__cite_suppress_author] = ACTIONS(5171), - [sym__shortcode_open_escaped] = ACTIONS(5171), - [sym__shortcode_open] = ACTIONS(5171), - [sym__unclosed_span] = ACTIONS(5171), - [sym__strong_emphasis_open_star] = ACTIONS(5171), - [sym__strong_emphasis_open_underscore] = ACTIONS(5171), + [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__subscript_close] = 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(875)] = { - [sym__backslash_escape] = ACTIONS(5175), - [sym_entity_reference] = ACTIONS(5175), - [sym_numeric_character_reference] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_QMARK] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [sym__newline_token] = ACTIONS(5175), - [aux_sym_insert_token1] = ACTIONS(5175), - [aux_sym_delete_token1] = ACTIONS(5175), - [aux_sym_highlight_token1] = ACTIONS(5175), - [aux_sym_edit_comment_token1] = ACTIONS(5175), - [anon_sym_CARET_LBRACK] = ACTIONS(5175), - [anon_sym_LBRACK_CARET] = ACTIONS(5175), - [sym_uri_autolink] = ACTIONS(5175), - [sym_email_autolink] = ACTIONS(5175), - [sym__whitespace_ge_2] = ACTIONS(5175), - [aux_sym__whitespace_token1] = ACTIONS(5177), - [sym__word_no_digit] = ACTIONS(5175), - [sym__digits] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5177), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5175), - [sym__code_span_start] = ACTIONS(5175), - [sym__emphasis_open_star] = ACTIONS(5175), - [sym__emphasis_open_underscore] = ACTIONS(5175), - [sym__strikeout_open] = ACTIONS(5175), - [sym__latex_span_start] = ACTIONS(5175), - [sym__single_quote_open] = ACTIONS(5175), - [sym__double_quote_open] = ACTIONS(5175), - [sym__double_quote_close] = ACTIONS(5175), - [sym__superscript_open] = ACTIONS(5175), - [sym__subscript_open] = ACTIONS(5175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5175), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5175), - [sym__cite_author_in_text] = ACTIONS(5175), - [sym__cite_suppress_author] = ACTIONS(5175), - [sym__shortcode_open_escaped] = ACTIONS(5175), - [sym__shortcode_open] = ACTIONS(5175), - [sym__unclosed_span] = ACTIONS(5175), - [sym__strong_emphasis_open_star] = ACTIONS(5175), - [sym__strong_emphasis_open_underscore] = ACTIONS(5175), + [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__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__subscript_close] = 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(876)] = { - [ts_builtin_sym_end] = ACTIONS(5127), - [sym__backslash_escape] = ACTIONS(5127), - [sym_entity_reference] = ACTIONS(5127), - [sym_numeric_character_reference] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_DQUOTE] = ACTIONS(5127), - [anon_sym_POUND] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_PERCENT] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_QMARK] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym_BQUOTE] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym__newline_token] = ACTIONS(5127), - [aux_sym_insert_token1] = ACTIONS(5127), - [aux_sym_delete_token1] = ACTIONS(5127), - [aux_sym_highlight_token1] = ACTIONS(5127), - [aux_sym_edit_comment_token1] = ACTIONS(5127), - [anon_sym_CARET_LBRACK] = ACTIONS(5127), - [anon_sym_LBRACK_CARET] = ACTIONS(5127), - [sym_uri_autolink] = ACTIONS(5127), - [sym_email_autolink] = ACTIONS(5127), - [sym__whitespace_ge_2] = ACTIONS(5127), - [aux_sym__whitespace_token1] = ACTIONS(5129), - [sym__word_no_digit] = ACTIONS(5127), - [sym__digits] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5127), - [sym__code_span_start] = ACTIONS(5127), - [sym__emphasis_open_star] = ACTIONS(5127), - [sym__emphasis_open_underscore] = ACTIONS(5127), - [sym__strikeout_open] = ACTIONS(5127), - [sym__latex_span_start] = ACTIONS(5127), - [sym__single_quote_open] = ACTIONS(5127), - [sym__double_quote_open] = ACTIONS(5127), - [sym__superscript_open] = ACTIONS(5127), - [sym__subscript_open] = ACTIONS(5127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5127), - [sym__cite_author_in_text] = ACTIONS(5127), - [sym__cite_suppress_author] = ACTIONS(5127), - [sym__shortcode_open_escaped] = ACTIONS(5127), - [sym__shortcode_open] = ACTIONS(5127), - [sym__unclosed_span] = ACTIONS(5127), - [sym__strong_emphasis_open_star] = ACTIONS(5127), - [sym__strong_emphasis_open_underscore] = ACTIONS(5127), + [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__subscript_close] = 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(877)] = { - [sym__backslash_escape] = ACTIONS(4939), - [sym_entity_reference] = ACTIONS(4939), - [sym_numeric_character_reference] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_POUND] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [sym__newline_token] = ACTIONS(4939), - [aux_sym_insert_token1] = ACTIONS(4939), - [aux_sym_delete_token1] = ACTIONS(4939), - [aux_sym_highlight_token1] = ACTIONS(4939), - [aux_sym_edit_comment_token1] = ACTIONS(4939), - [anon_sym_CARET_LBRACK] = ACTIONS(4939), - [anon_sym_LBRACK_CARET] = ACTIONS(4939), - [sym_uri_autolink] = ACTIONS(4939), - [sym_email_autolink] = ACTIONS(4939), - [sym__whitespace_ge_2] = ACTIONS(4939), - [aux_sym__whitespace_token1] = ACTIONS(4941), - [sym__word_no_digit] = ACTIONS(4939), - [sym__digits] = ACTIONS(4939), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4939), - [sym__code_span_start] = ACTIONS(4939), - [sym__emphasis_open_star] = ACTIONS(4939), - [sym__emphasis_open_underscore] = ACTIONS(4939), - [sym__strikeout_open] = ACTIONS(4939), - [sym__latex_span_start] = ACTIONS(4939), - [sym__single_quote_open] = ACTIONS(4939), - [sym__double_quote_open] = ACTIONS(4939), - [sym__double_quote_close] = ACTIONS(4939), - [sym__superscript_open] = ACTIONS(4939), - [sym__subscript_open] = ACTIONS(4939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4939), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4939), - [sym__cite_author_in_text] = ACTIONS(4939), - [sym__cite_suppress_author] = ACTIONS(4939), - [sym__shortcode_open_escaped] = ACTIONS(4939), - [sym__shortcode_open] = ACTIONS(4939), - [sym__unclosed_span] = ACTIONS(4939), - [sym__strong_emphasis_open_star] = ACTIONS(4939), - [sym__strong_emphasis_open_underscore] = ACTIONS(4939), + [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__subscript_close] = 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(878)] = { - [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_STAR] = 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__superscript_close] = 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), + [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__subscript_close] = 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(879)] = { - [sym__backslash_escape] = ACTIONS(4943), - [sym_entity_reference] = ACTIONS(4943), - [sym_numeric_character_reference] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [sym__newline_token] = ACTIONS(4943), - [aux_sym_insert_token1] = ACTIONS(4943), - [aux_sym_delete_token1] = ACTIONS(4943), - [aux_sym_highlight_token1] = ACTIONS(4943), - [aux_sym_edit_comment_token1] = ACTIONS(4943), - [anon_sym_CARET_LBRACK] = ACTIONS(4943), - [anon_sym_LBRACK_CARET] = ACTIONS(4943), - [sym_uri_autolink] = ACTIONS(4943), - [sym_email_autolink] = ACTIONS(4943), - [sym__whitespace_ge_2] = ACTIONS(4943), - [aux_sym__whitespace_token1] = ACTIONS(4945), - [sym__word_no_digit] = ACTIONS(4943), - [sym__digits] = ACTIONS(4943), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4943), - [sym__code_span_start] = ACTIONS(4943), - [sym__emphasis_open_star] = ACTIONS(4943), - [sym__emphasis_open_underscore] = ACTIONS(4943), - [sym__strikeout_open] = ACTIONS(4943), - [sym__latex_span_start] = ACTIONS(4943), - [sym__single_quote_open] = ACTIONS(4943), - [sym__double_quote_open] = ACTIONS(4943), - [sym__superscript_open] = ACTIONS(4943), - [sym__superscript_close] = ACTIONS(4943), - [sym__subscript_open] = ACTIONS(4943), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4943), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4943), - [sym__cite_author_in_text] = ACTIONS(4943), - [sym__cite_suppress_author] = ACTIONS(4943), - [sym__shortcode_open_escaped] = ACTIONS(4943), - [sym__shortcode_open] = ACTIONS(4943), - [sym__unclosed_span] = ACTIONS(4943), - [sym__strong_emphasis_open_star] = ACTIONS(4943), - [sym__strong_emphasis_open_underscore] = ACTIONS(4943), + [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__subscript_close] = 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(880)] = { - [sym__backslash_escape] = ACTIONS(4947), - [sym_entity_reference] = ACTIONS(4947), - [sym_numeric_character_reference] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_DQUOTE] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [sym__newline_token] = ACTIONS(4947), - [aux_sym_insert_token1] = ACTIONS(4947), - [aux_sym_delete_token1] = ACTIONS(4947), - [aux_sym_highlight_token1] = ACTIONS(4947), - [aux_sym_edit_comment_token1] = ACTIONS(4947), - [anon_sym_CARET_LBRACK] = ACTIONS(4947), - [anon_sym_LBRACK_CARET] = ACTIONS(4947), - [sym_uri_autolink] = ACTIONS(4947), - [sym_email_autolink] = ACTIONS(4947), - [sym__whitespace_ge_2] = ACTIONS(4947), - [aux_sym__whitespace_token1] = ACTIONS(4949), - [sym__word_no_digit] = ACTIONS(4947), - [sym__digits] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4947), - [sym__code_span_start] = ACTIONS(4947), - [sym__emphasis_open_star] = ACTIONS(4947), - [sym__emphasis_open_underscore] = ACTIONS(4947), - [sym__strikeout_open] = ACTIONS(4947), - [sym__latex_span_start] = ACTIONS(4947), - [sym__single_quote_open] = ACTIONS(4947), - [sym__double_quote_open] = ACTIONS(4947), - [sym__superscript_open] = ACTIONS(4947), - [sym__superscript_close] = ACTIONS(4947), - [sym__subscript_open] = ACTIONS(4947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4947), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4947), - [sym__cite_author_in_text] = ACTIONS(4947), - [sym__cite_suppress_author] = ACTIONS(4947), - [sym__shortcode_open_escaped] = ACTIONS(4947), - [sym__shortcode_open] = ACTIONS(4947), - [sym__unclosed_span] = ACTIONS(4947), - [sym__strong_emphasis_open_star] = ACTIONS(4947), - [sym__strong_emphasis_open_underscore] = ACTIONS(4947), + [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__subscript_close] = 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(881)] = { - [sym__backslash_escape] = ACTIONS(4951), - [sym_entity_reference] = ACTIONS(4951), - [sym_numeric_character_reference] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [sym__newline_token] = ACTIONS(4951), - [aux_sym_insert_token1] = ACTIONS(4951), - [aux_sym_delete_token1] = ACTIONS(4951), - [aux_sym_highlight_token1] = ACTIONS(4951), - [aux_sym_edit_comment_token1] = ACTIONS(4951), - [anon_sym_CARET_LBRACK] = ACTIONS(4951), - [anon_sym_LBRACK_CARET] = ACTIONS(4951), - [sym_uri_autolink] = ACTIONS(4951), - [sym_email_autolink] = ACTIONS(4951), - [sym__whitespace_ge_2] = ACTIONS(4951), - [aux_sym__whitespace_token1] = ACTIONS(4953), - [sym__word_no_digit] = ACTIONS(4951), - [sym__digits] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4951), - [sym__code_span_start] = ACTIONS(4951), - [sym__emphasis_open_star] = ACTIONS(4951), - [sym__emphasis_open_underscore] = ACTIONS(4951), - [sym__strikeout_open] = ACTIONS(4951), - [sym__latex_span_start] = ACTIONS(4951), - [sym__single_quote_open] = ACTIONS(4951), - [sym__double_quote_open] = ACTIONS(4951), - [sym__superscript_open] = ACTIONS(4951), - [sym__superscript_close] = ACTIONS(4951), - [sym__subscript_open] = ACTIONS(4951), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4951), - [sym__cite_author_in_text] = ACTIONS(4951), - [sym__cite_suppress_author] = ACTIONS(4951), - [sym__shortcode_open_escaped] = ACTIONS(4951), - [sym__shortcode_open] = ACTIONS(4951), - [sym__unclosed_span] = ACTIONS(4951), - [sym__strong_emphasis_open_star] = ACTIONS(4951), - [sym__strong_emphasis_open_underscore] = ACTIONS(4951), + [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__subscript_close] = 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(882)] = { - [sym__backslash_escape] = ACTIONS(4955), - [sym_entity_reference] = ACTIONS(4955), - [sym_numeric_character_reference] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_DQUOTE] = ACTIONS(4955), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4957), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [sym__newline_token] = ACTIONS(4955), - [aux_sym_insert_token1] = ACTIONS(4955), - [aux_sym_delete_token1] = ACTIONS(4955), - [aux_sym_highlight_token1] = ACTIONS(4955), - [aux_sym_edit_comment_token1] = ACTIONS(4955), - [anon_sym_CARET_LBRACK] = ACTIONS(4955), - [anon_sym_LBRACK_CARET] = ACTIONS(4955), - [sym_uri_autolink] = ACTIONS(4955), - [sym_email_autolink] = ACTIONS(4955), - [sym__whitespace_ge_2] = ACTIONS(4955), - [aux_sym__whitespace_token1] = ACTIONS(4957), - [sym__word_no_digit] = ACTIONS(4955), - [sym__digits] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4955), - [sym__code_span_start] = ACTIONS(4955), - [sym__emphasis_open_star] = ACTIONS(4955), - [sym__emphasis_open_underscore] = ACTIONS(4955), - [sym__strikeout_open] = ACTIONS(4955), - [sym__latex_span_start] = ACTIONS(4955), - [sym__single_quote_open] = ACTIONS(4955), - [sym__double_quote_open] = ACTIONS(4955), - [sym__superscript_open] = ACTIONS(4955), - [sym__superscript_close] = ACTIONS(4955), - [sym__subscript_open] = ACTIONS(4955), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4955), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4955), - [sym__cite_author_in_text] = ACTIONS(4955), - [sym__cite_suppress_author] = ACTIONS(4955), - [sym__shortcode_open_escaped] = ACTIONS(4955), - [sym__shortcode_open] = ACTIONS(4955), - [sym__unclosed_span] = ACTIONS(4955), - [sym__strong_emphasis_open_star] = ACTIONS(4955), - [sym__strong_emphasis_open_underscore] = ACTIONS(4955), + [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__subscript_close] = 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(883)] = { - [sym__backslash_escape] = ACTIONS(4959), - [sym_entity_reference] = ACTIONS(4959), - [sym_numeric_character_reference] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_DQUOTE] = ACTIONS(4959), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4961), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_TILDE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4959), - [sym__newline_token] = ACTIONS(4959), - [aux_sym_insert_token1] = ACTIONS(4959), - [aux_sym_delete_token1] = ACTIONS(4959), - [aux_sym_highlight_token1] = ACTIONS(4959), - [aux_sym_edit_comment_token1] = ACTIONS(4959), - [anon_sym_CARET_LBRACK] = ACTIONS(4959), - [anon_sym_LBRACK_CARET] = ACTIONS(4959), - [sym_uri_autolink] = ACTIONS(4959), - [sym_email_autolink] = ACTIONS(4959), - [sym__whitespace_ge_2] = ACTIONS(4959), - [aux_sym__whitespace_token1] = ACTIONS(4961), - [sym__word_no_digit] = ACTIONS(4959), - [sym__digits] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4959), - [sym__code_span_start] = ACTIONS(4959), - [sym__emphasis_open_star] = ACTIONS(4959), - [sym__emphasis_open_underscore] = ACTIONS(4959), - [sym__strikeout_open] = ACTIONS(4959), - [sym__latex_span_start] = ACTIONS(4959), - [sym__single_quote_open] = ACTIONS(4959), - [sym__double_quote_open] = ACTIONS(4959), - [sym__superscript_open] = ACTIONS(4959), - [sym__superscript_close] = ACTIONS(4959), - [sym__subscript_open] = ACTIONS(4959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4959), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4959), - [sym__cite_author_in_text] = ACTIONS(4959), - [sym__cite_suppress_author] = ACTIONS(4959), - [sym__shortcode_open_escaped] = ACTIONS(4959), - [sym__shortcode_open] = ACTIONS(4959), - [sym__unclosed_span] = ACTIONS(4959), - [sym__strong_emphasis_open_star] = ACTIONS(4959), - [sym__strong_emphasis_open_underscore] = ACTIONS(4959), + [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__subscript_close] = 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(884)] = { - [sym__backslash_escape] = ACTIONS(4963), - [sym_entity_reference] = ACTIONS(4963), - [sym_numeric_character_reference] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_DQUOTE] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4963), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_RPAREN] = ACTIONS(4963), - [sym__newline_token] = ACTIONS(4963), - [aux_sym_insert_token1] = ACTIONS(4963), - [aux_sym_delete_token1] = ACTIONS(4963), - [aux_sym_highlight_token1] = ACTIONS(4963), - [aux_sym_edit_comment_token1] = ACTIONS(4963), - [anon_sym_CARET_LBRACK] = ACTIONS(4963), - [anon_sym_LBRACK_CARET] = ACTIONS(4963), - [sym_uri_autolink] = ACTIONS(4963), - [sym_email_autolink] = ACTIONS(4963), - [sym__whitespace_ge_2] = ACTIONS(4963), - [aux_sym__whitespace_token1] = ACTIONS(4965), - [sym__word_no_digit] = ACTIONS(4963), - [sym__digits] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4963), - [sym__code_span_start] = ACTIONS(4963), - [sym__emphasis_open_star] = ACTIONS(4963), - [sym__emphasis_open_underscore] = ACTIONS(4963), - [sym__strikeout_open] = ACTIONS(4963), - [sym__latex_span_start] = ACTIONS(4963), - [sym__single_quote_open] = ACTIONS(4963), - [sym__double_quote_open] = ACTIONS(4963), - [sym__superscript_open] = ACTIONS(4963), - [sym__superscript_close] = ACTIONS(4963), - [sym__subscript_open] = ACTIONS(4963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4963), - [sym__cite_author_in_text] = ACTIONS(4963), - [sym__cite_suppress_author] = ACTIONS(4963), - [sym__shortcode_open_escaped] = ACTIONS(4963), - [sym__shortcode_open] = ACTIONS(4963), - [sym__unclosed_span] = ACTIONS(4963), - [sym__strong_emphasis_open_star] = ACTIONS(4963), - [sym__strong_emphasis_open_underscore] = ACTIONS(4963), + [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__subscript_close] = 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(885)] = { - [sym__backslash_escape] = ACTIONS(4967), - [sym_entity_reference] = ACTIONS(4967), - [sym_numeric_character_reference] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_BQUOTE] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [sym__newline_token] = ACTIONS(4967), - [aux_sym_insert_token1] = ACTIONS(4967), - [aux_sym_delete_token1] = ACTIONS(4967), - [aux_sym_highlight_token1] = ACTIONS(4967), - [aux_sym_edit_comment_token1] = ACTIONS(4967), - [anon_sym_CARET_LBRACK] = ACTIONS(4967), - [anon_sym_LBRACK_CARET] = ACTIONS(4967), - [sym_uri_autolink] = ACTIONS(4967), - [sym_email_autolink] = ACTIONS(4967), - [sym__whitespace_ge_2] = ACTIONS(4967), - [aux_sym__whitespace_token1] = ACTIONS(4969), - [sym__word_no_digit] = ACTIONS(4967), - [sym__digits] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [sym__code_span_start] = ACTIONS(4967), - [sym__emphasis_open_star] = ACTIONS(4967), - [sym__emphasis_open_underscore] = ACTIONS(4967), - [sym__strikeout_open] = ACTIONS(4967), - [sym__latex_span_start] = ACTIONS(4967), - [sym__single_quote_open] = ACTIONS(4967), - [sym__double_quote_open] = ACTIONS(4967), - [sym__superscript_open] = ACTIONS(4967), - [sym__superscript_close] = ACTIONS(4967), - [sym__subscript_open] = ACTIONS(4967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4967), - [sym__cite_author_in_text] = ACTIONS(4967), - [sym__cite_suppress_author] = ACTIONS(4967), - [sym__shortcode_open_escaped] = ACTIONS(4967), - [sym__shortcode_open] = ACTIONS(4967), - [sym__unclosed_span] = ACTIONS(4967), - [sym__strong_emphasis_open_star] = ACTIONS(4967), - [sym__strong_emphasis_open_underscore] = ACTIONS(4967), + [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__subscript_close] = 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(886)] = { - [sym__backslash_escape] = ACTIONS(4971), - [sym_entity_reference] = ACTIONS(4971), - [sym_numeric_character_reference] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym_BQUOTE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [sym__newline_token] = ACTIONS(4971), - [aux_sym_insert_token1] = ACTIONS(4971), - [aux_sym_delete_token1] = ACTIONS(4971), - [aux_sym_highlight_token1] = ACTIONS(4971), - [aux_sym_edit_comment_token1] = ACTIONS(4971), - [anon_sym_CARET_LBRACK] = ACTIONS(4971), - [anon_sym_LBRACK_CARET] = ACTIONS(4971), - [sym_uri_autolink] = ACTIONS(4971), - [sym_email_autolink] = ACTIONS(4971), - [sym__whitespace_ge_2] = ACTIONS(4971), - [aux_sym__whitespace_token1] = ACTIONS(4973), - [sym__word_no_digit] = ACTIONS(4971), - [sym__digits] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4971), - [sym__code_span_start] = ACTIONS(4971), - [sym__emphasis_open_star] = ACTIONS(4971), - [sym__emphasis_open_underscore] = ACTIONS(4971), - [sym__strikeout_open] = ACTIONS(4971), - [sym__latex_span_start] = ACTIONS(4971), - [sym__single_quote_open] = ACTIONS(4971), - [sym__double_quote_open] = ACTIONS(4971), - [sym__superscript_open] = ACTIONS(4971), - [sym__superscript_close] = ACTIONS(4971), - [sym__subscript_open] = ACTIONS(4971), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4971), - [sym__cite_author_in_text] = ACTIONS(4971), - [sym__cite_suppress_author] = ACTIONS(4971), - [sym__shortcode_open_escaped] = ACTIONS(4971), - [sym__shortcode_open] = ACTIONS(4971), - [sym__unclosed_span] = ACTIONS(4971), - [sym__strong_emphasis_open_star] = ACTIONS(4971), - [sym__strong_emphasis_open_underscore] = ACTIONS(4971), + [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__double_quote_close] = 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(887)] = { - [sym__backslash_escape] = ACTIONS(4975), - [sym_entity_reference] = ACTIONS(4975), - [sym_numeric_character_reference] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [sym__newline_token] = ACTIONS(4975), - [aux_sym_insert_token1] = ACTIONS(4975), - [aux_sym_delete_token1] = ACTIONS(4975), - [aux_sym_highlight_token1] = ACTIONS(4975), - [aux_sym_edit_comment_token1] = ACTIONS(4975), - [anon_sym_CARET_LBRACK] = ACTIONS(4975), - [anon_sym_LBRACK_CARET] = ACTIONS(4975), - [sym_uri_autolink] = ACTIONS(4975), - [sym_email_autolink] = ACTIONS(4975), - [sym__whitespace_ge_2] = ACTIONS(4975), - [aux_sym__whitespace_token1] = ACTIONS(4977), - [sym__word_no_digit] = ACTIONS(4975), - [sym__digits] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [sym__code_span_start] = ACTIONS(4975), - [sym__emphasis_open_star] = ACTIONS(4975), - [sym__emphasis_open_underscore] = ACTIONS(4975), - [sym__strikeout_open] = ACTIONS(4975), - [sym__latex_span_start] = ACTIONS(4975), - [sym__single_quote_open] = ACTIONS(4975), - [sym__double_quote_open] = ACTIONS(4975), - [sym__superscript_open] = ACTIONS(4975), - [sym__superscript_close] = ACTIONS(4975), - [sym__subscript_open] = ACTIONS(4975), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4975), - [sym__cite_author_in_text] = ACTIONS(4975), - [sym__cite_suppress_author] = ACTIONS(4975), - [sym__shortcode_open_escaped] = ACTIONS(4975), - [sym__shortcode_open] = ACTIONS(4975), - [sym__unclosed_span] = ACTIONS(4975), - [sym__strong_emphasis_open_star] = ACTIONS(4975), - [sym__strong_emphasis_open_underscore] = ACTIONS(4975), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__subscript_close] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(888)] = { - [sym__backslash_escape] = ACTIONS(4979), - [sym_entity_reference] = ACTIONS(4979), - [sym_numeric_character_reference] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_COLON] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), - [sym__newline_token] = ACTIONS(4979), - [aux_sym_insert_token1] = ACTIONS(4979), - [aux_sym_delete_token1] = ACTIONS(4979), - [aux_sym_highlight_token1] = ACTIONS(4979), - [aux_sym_edit_comment_token1] = ACTIONS(4979), - [anon_sym_CARET_LBRACK] = ACTIONS(4979), - [anon_sym_LBRACK_CARET] = ACTIONS(4979), - [sym_uri_autolink] = ACTIONS(4979), - [sym_email_autolink] = ACTIONS(4979), - [sym__whitespace_ge_2] = ACTIONS(4979), - [aux_sym__whitespace_token1] = ACTIONS(4981), - [sym__word_no_digit] = ACTIONS(4979), - [sym__digits] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4979), - [sym__code_span_start] = ACTIONS(4979), - [sym__emphasis_open_star] = ACTIONS(4979), - [sym__emphasis_open_underscore] = ACTIONS(4979), - [sym__strikeout_open] = ACTIONS(4979), - [sym__latex_span_start] = ACTIONS(4979), - [sym__single_quote_open] = ACTIONS(4979), - [sym__double_quote_open] = ACTIONS(4979), - [sym__superscript_open] = ACTIONS(4979), - [sym__superscript_close] = ACTIONS(4979), - [sym__subscript_open] = ACTIONS(4979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4979), - [sym__cite_author_in_text] = ACTIONS(4979), - [sym__cite_suppress_author] = ACTIONS(4979), - [sym__shortcode_open_escaped] = ACTIONS(4979), - [sym__shortcode_open] = ACTIONS(4979), - [sym__unclosed_span] = ACTIONS(4979), - [sym__strong_emphasis_open_star] = ACTIONS(4979), - [sym__strong_emphasis_open_underscore] = ACTIONS(4979), + [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__double_quote_close] = 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(889)] = { - [ts_builtin_sym_end] = ACTIONS(5131), - [sym__backslash_escape] = ACTIONS(5131), - [sym_entity_reference] = ACTIONS(5131), - [sym_numeric_character_reference] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(5131), - [anon_sym_POUND] = ACTIONS(5131), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(5133), - [anon_sym_SQUOTE] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_QMARK] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(5133), - [anon_sym_BQUOTE] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_PIPE] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [sym__newline_token] = ACTIONS(5131), - [aux_sym_insert_token1] = ACTIONS(5131), - [aux_sym_delete_token1] = ACTIONS(5131), - [aux_sym_highlight_token1] = ACTIONS(5131), - [aux_sym_edit_comment_token1] = ACTIONS(5131), - [anon_sym_CARET_LBRACK] = ACTIONS(5131), - [anon_sym_LBRACK_CARET] = ACTIONS(5131), - [sym_uri_autolink] = ACTIONS(5131), - [sym_email_autolink] = ACTIONS(5131), - [sym__whitespace_ge_2] = ACTIONS(5131), - [aux_sym__whitespace_token1] = ACTIONS(5133), - [sym__word_no_digit] = ACTIONS(5131), - [sym__digits] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), - [sym__code_span_start] = ACTIONS(5131), - [sym__emphasis_open_star] = ACTIONS(5131), - [sym__emphasis_open_underscore] = ACTIONS(5131), - [sym__strikeout_open] = ACTIONS(5131), - [sym__latex_span_start] = ACTIONS(5131), - [sym__single_quote_open] = ACTIONS(5131), - [sym__double_quote_open] = ACTIONS(5131), - [sym__superscript_open] = ACTIONS(5131), - [sym__subscript_open] = ACTIONS(5131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5131), - [sym__cite_author_in_text] = ACTIONS(5131), - [sym__cite_suppress_author] = ACTIONS(5131), - [sym__shortcode_open_escaped] = ACTIONS(5131), - [sym__shortcode_open] = ACTIONS(5131), - [sym__unclosed_span] = ACTIONS(5131), - [sym__strong_emphasis_open_star] = ACTIONS(5131), - [sym__strong_emphasis_open_underscore] = ACTIONS(5131), + [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__subscript_close] = 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(890)] = { - [sym__backslash_escape] = ACTIONS(4983), - [sym_entity_reference] = ACTIONS(4983), - [sym_numeric_character_reference] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [sym__newline_token] = ACTIONS(4983), - [aux_sym_insert_token1] = ACTIONS(4983), - [aux_sym_delete_token1] = ACTIONS(4983), - [aux_sym_highlight_token1] = ACTIONS(4983), - [aux_sym_edit_comment_token1] = ACTIONS(4983), - [anon_sym_CARET_LBRACK] = ACTIONS(4983), - [anon_sym_LBRACK_CARET] = ACTIONS(4983), - [sym_uri_autolink] = ACTIONS(4983), - [sym_email_autolink] = ACTIONS(4983), - [sym__whitespace_ge_2] = ACTIONS(4983), - [aux_sym__whitespace_token1] = ACTIONS(4985), - [sym__word_no_digit] = ACTIONS(4983), - [sym__digits] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4983), - [sym__code_span_start] = ACTIONS(4983), - [sym__emphasis_open_star] = ACTIONS(4983), - [sym__emphasis_open_underscore] = ACTIONS(4983), - [sym__strikeout_open] = ACTIONS(4983), - [sym__latex_span_start] = ACTIONS(4983), - [sym__single_quote_open] = ACTIONS(4983), - [sym__double_quote_open] = ACTIONS(4983), - [sym__superscript_open] = ACTIONS(4983), - [sym__superscript_close] = ACTIONS(4983), - [sym__subscript_open] = ACTIONS(4983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4983), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4983), - [sym__cite_author_in_text] = ACTIONS(4983), - [sym__cite_suppress_author] = ACTIONS(4983), - [sym__shortcode_open_escaped] = ACTIONS(4983), - [sym__shortcode_open] = ACTIONS(4983), - [sym__unclosed_span] = ACTIONS(4983), - [sym__strong_emphasis_open_star] = ACTIONS(4983), - [sym__strong_emphasis_open_underscore] = ACTIONS(4983), + [ts_builtin_sym_end] = ACTIONS(4559), + [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__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(891)] = { - [sym__backslash_escape] = ACTIONS(4987), - [sym_entity_reference] = ACTIONS(4987), - [sym_numeric_character_reference] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym__newline_token] = ACTIONS(4987), - [aux_sym_insert_token1] = ACTIONS(4987), - [aux_sym_delete_token1] = ACTIONS(4987), - [aux_sym_highlight_token1] = ACTIONS(4987), - [aux_sym_edit_comment_token1] = ACTIONS(4987), - [anon_sym_CARET_LBRACK] = ACTIONS(4987), - [anon_sym_LBRACK_CARET] = ACTIONS(4987), - [sym_uri_autolink] = ACTIONS(4987), - [sym_email_autolink] = ACTIONS(4987), - [sym__whitespace_ge_2] = ACTIONS(4987), - [aux_sym__whitespace_token1] = ACTIONS(4989), - [sym__word_no_digit] = ACTIONS(4987), - [sym__digits] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4987), - [sym__code_span_start] = ACTIONS(4987), - [sym__emphasis_open_star] = ACTIONS(4987), - [sym__emphasis_open_underscore] = ACTIONS(4987), - [sym__strikeout_open] = ACTIONS(4987), - [sym__latex_span_start] = ACTIONS(4987), - [sym__single_quote_open] = ACTIONS(4987), - [sym__double_quote_open] = ACTIONS(4987), - [sym__superscript_open] = ACTIONS(4987), - [sym__superscript_close] = ACTIONS(4987), - [sym__subscript_open] = ACTIONS(4987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4987), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4987), - [sym__cite_author_in_text] = ACTIONS(4987), - [sym__cite_suppress_author] = ACTIONS(4987), - [sym__shortcode_open_escaped] = ACTIONS(4987), - [sym__shortcode_open] = ACTIONS(4987), - [sym__unclosed_span] = ACTIONS(4987), - [sym__strong_emphasis_open_star] = ACTIONS(4987), - [sym__strong_emphasis_open_underscore] = ACTIONS(4987), + [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(892)] = { - [sym__backslash_escape] = ACTIONS(5179), - [sym_entity_reference] = ACTIONS(5179), - [sym_numeric_character_reference] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_QMARK] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_BSLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [sym__newline_token] = ACTIONS(5179), - [aux_sym_insert_token1] = ACTIONS(5179), - [aux_sym_delete_token1] = ACTIONS(5179), - [aux_sym_highlight_token1] = ACTIONS(5179), - [aux_sym_edit_comment_token1] = ACTIONS(5179), - [anon_sym_CARET_LBRACK] = ACTIONS(5179), - [anon_sym_LBRACK_CARET] = ACTIONS(5179), - [sym_uri_autolink] = ACTIONS(5179), - [sym_email_autolink] = ACTIONS(5179), - [sym__whitespace_ge_2] = ACTIONS(5179), - [aux_sym__whitespace_token1] = ACTIONS(5181), - [sym__word_no_digit] = ACTIONS(5179), - [sym__digits] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5181), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5179), - [sym__code_span_start] = ACTIONS(5179), - [sym__emphasis_open_star] = ACTIONS(5179), - [sym__emphasis_open_underscore] = ACTIONS(5179), - [sym__strikeout_open] = ACTIONS(5179), - [sym__latex_span_start] = ACTIONS(5179), - [sym__single_quote_open] = ACTIONS(5179), - [sym__single_quote_close] = ACTIONS(5179), - [sym__double_quote_open] = ACTIONS(5179), - [sym__superscript_open] = ACTIONS(5179), - [sym__subscript_open] = ACTIONS(5179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5179), - [sym__cite_author_in_text] = ACTIONS(5179), - [sym__cite_suppress_author] = ACTIONS(5179), - [sym__shortcode_open_escaped] = ACTIONS(5179), - [sym__shortcode_open] = ACTIONS(5179), - [sym__unclosed_span] = ACTIONS(5179), - [sym__strong_emphasis_open_star] = ACTIONS(5179), - [sym__strong_emphasis_open_underscore] = ACTIONS(5179), + [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__subscript_close] = 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(893)] = { - [sym__backslash_escape] = ACTIONS(4991), - [sym_entity_reference] = ACTIONS(4991), - [sym_numeric_character_reference] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH] = ACTIONS(4993), - [anon_sym_CARET] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym__newline_token] = ACTIONS(4991), - [aux_sym_insert_token1] = ACTIONS(4991), - [aux_sym_delete_token1] = ACTIONS(4991), - [aux_sym_highlight_token1] = ACTIONS(4991), - [aux_sym_edit_comment_token1] = ACTIONS(4991), - [anon_sym_CARET_LBRACK] = ACTIONS(4991), - [anon_sym_LBRACK_CARET] = ACTIONS(4991), - [sym_uri_autolink] = ACTIONS(4991), - [sym_email_autolink] = ACTIONS(4991), - [sym__whitespace_ge_2] = ACTIONS(4991), - [aux_sym__whitespace_token1] = ACTIONS(4993), - [sym__word_no_digit] = ACTIONS(4991), - [sym__digits] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), - [sym__code_span_start] = ACTIONS(4991), - [sym__emphasis_open_star] = ACTIONS(4991), - [sym__emphasis_open_underscore] = ACTIONS(4991), - [sym__strikeout_open] = ACTIONS(4991), - [sym__latex_span_start] = ACTIONS(4991), - [sym__single_quote_open] = ACTIONS(4991), - [sym__double_quote_open] = ACTIONS(4991), - [sym__superscript_open] = ACTIONS(4991), - [sym__superscript_close] = ACTIONS(4991), - [sym__subscript_open] = ACTIONS(4991), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4991), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4991), - [sym__cite_author_in_text] = ACTIONS(4991), - [sym__cite_suppress_author] = ACTIONS(4991), - [sym__shortcode_open_escaped] = ACTIONS(4991), - [sym__shortcode_open] = ACTIONS(4991), - [sym__unclosed_span] = ACTIONS(4991), - [sym__strong_emphasis_open_star] = ACTIONS(4991), - [sym__strong_emphasis_open_underscore] = ACTIONS(4991), + [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(894)] = { - [sym__backslash_escape] = ACTIONS(4995), - [sym_entity_reference] = ACTIONS(4995), - [sym_numeric_character_reference] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym__newline_token] = ACTIONS(4995), - [aux_sym_insert_token1] = ACTIONS(4995), - [aux_sym_delete_token1] = ACTIONS(4995), - [aux_sym_highlight_token1] = ACTIONS(4995), - [aux_sym_edit_comment_token1] = ACTIONS(4995), - [anon_sym_CARET_LBRACK] = ACTIONS(4995), - [anon_sym_LBRACK_CARET] = ACTIONS(4995), - [sym_uri_autolink] = ACTIONS(4995), - [sym_email_autolink] = ACTIONS(4995), - [sym__whitespace_ge_2] = ACTIONS(4995), - [aux_sym__whitespace_token1] = ACTIONS(4997), - [sym__word_no_digit] = ACTIONS(4995), - [sym__digits] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4995), - [sym__code_span_start] = ACTIONS(4995), - [sym__emphasis_open_star] = ACTIONS(4995), - [sym__emphasis_open_underscore] = ACTIONS(4995), - [sym__strikeout_open] = ACTIONS(4995), - [sym__latex_span_start] = ACTIONS(4995), - [sym__single_quote_open] = ACTIONS(4995), - [sym__double_quote_open] = ACTIONS(4995), - [sym__superscript_open] = ACTIONS(4995), - [sym__superscript_close] = ACTIONS(4995), - [sym__subscript_open] = ACTIONS(4995), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4995), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4995), - [sym__cite_author_in_text] = ACTIONS(4995), - [sym__cite_suppress_author] = ACTIONS(4995), - [sym__shortcode_open_escaped] = ACTIONS(4995), - [sym__shortcode_open] = ACTIONS(4995), - [sym__unclosed_span] = ACTIONS(4995), - [sym__strong_emphasis_open_star] = ACTIONS(4995), - [sym__strong_emphasis_open_underscore] = ACTIONS(4995), + [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__subscript_close] = 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(895)] = { - [sym__backslash_escape] = ACTIONS(4999), - [sym_entity_reference] = ACTIONS(4999), - [sym_numeric_character_reference] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [sym__newline_token] = ACTIONS(4999), - [aux_sym_insert_token1] = ACTIONS(4999), - [aux_sym_delete_token1] = ACTIONS(4999), - [aux_sym_highlight_token1] = ACTIONS(4999), - [aux_sym_edit_comment_token1] = ACTIONS(4999), - [anon_sym_CARET_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_CARET] = ACTIONS(4999), - [sym_uri_autolink] = ACTIONS(4999), - [sym_email_autolink] = ACTIONS(4999), - [sym__whitespace_ge_2] = ACTIONS(4999), - [aux_sym__whitespace_token1] = ACTIONS(5001), - [sym__word_no_digit] = ACTIONS(4999), - [sym__digits] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4999), - [sym__code_span_start] = ACTIONS(4999), - [sym__emphasis_open_star] = ACTIONS(4999), - [sym__emphasis_open_underscore] = ACTIONS(4999), - [sym__strikeout_open] = ACTIONS(4999), - [sym__latex_span_start] = ACTIONS(4999), - [sym__single_quote_open] = ACTIONS(4999), - [sym__double_quote_open] = ACTIONS(4999), - [sym__superscript_open] = ACTIONS(4999), - [sym__superscript_close] = ACTIONS(4999), - [sym__subscript_open] = ACTIONS(4999), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4999), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4999), - [sym__cite_author_in_text] = ACTIONS(4999), - [sym__cite_suppress_author] = ACTIONS(4999), - [sym__shortcode_open_escaped] = ACTIONS(4999), - [sym__shortcode_open] = ACTIONS(4999), - [sym__unclosed_span] = ACTIONS(4999), - [sym__strong_emphasis_open_star] = ACTIONS(4999), - [sym__strong_emphasis_open_underscore] = ACTIONS(4999), + [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__subscript_close] = 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(896)] = { - [sym__backslash_escape] = ACTIONS(5003), - [sym_entity_reference] = ACTIONS(5003), - [sym_numeric_character_reference] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym__newline_token] = ACTIONS(5003), - [aux_sym_insert_token1] = ACTIONS(5003), - [aux_sym_delete_token1] = ACTIONS(5003), - [aux_sym_highlight_token1] = ACTIONS(5003), - [aux_sym_edit_comment_token1] = ACTIONS(5003), - [anon_sym_CARET_LBRACK] = ACTIONS(5003), - [anon_sym_LBRACK_CARET] = ACTIONS(5003), - [sym_uri_autolink] = ACTIONS(5003), - [sym_email_autolink] = ACTIONS(5003), - [sym__whitespace_ge_2] = ACTIONS(5003), - [aux_sym__whitespace_token1] = ACTIONS(5005), - [sym__word_no_digit] = ACTIONS(5003), - [sym__digits] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [sym__code_span_start] = ACTIONS(5003), - [sym__emphasis_open_star] = ACTIONS(5003), - [sym__emphasis_open_underscore] = ACTIONS(5003), - [sym__strikeout_open] = ACTIONS(5003), - [sym__latex_span_start] = ACTIONS(5003), - [sym__single_quote_open] = ACTIONS(5003), - [sym__double_quote_open] = ACTIONS(5003), - [sym__superscript_open] = ACTIONS(5003), - [sym__superscript_close] = ACTIONS(5003), - [sym__subscript_open] = ACTIONS(5003), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5003), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5003), - [sym__cite_author_in_text] = ACTIONS(5003), - [sym__cite_suppress_author] = ACTIONS(5003), - [sym__shortcode_open_escaped] = ACTIONS(5003), - [sym__shortcode_open] = ACTIONS(5003), - [sym__unclosed_span] = ACTIONS(5003), - [sym__strong_emphasis_open_star] = ACTIONS(5003), - [sym__strong_emphasis_open_underscore] = ACTIONS(5003), + [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__subscript_close] = 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(897)] = { - [sym__backslash_escape] = ACTIONS(5007), - [sym_entity_reference] = ACTIONS(5007), - [sym_numeric_character_reference] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH] = ACTIONS(5009), - [anon_sym_CARET] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym__newline_token] = ACTIONS(5007), - [aux_sym_insert_token1] = ACTIONS(5007), - [aux_sym_delete_token1] = ACTIONS(5007), - [aux_sym_highlight_token1] = ACTIONS(5007), - [aux_sym_edit_comment_token1] = ACTIONS(5007), - [anon_sym_CARET_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_CARET] = ACTIONS(5007), - [sym_uri_autolink] = ACTIONS(5007), - [sym_email_autolink] = ACTIONS(5007), - [sym__whitespace_ge_2] = ACTIONS(5007), - [aux_sym__whitespace_token1] = ACTIONS(5009), - [sym__word_no_digit] = ACTIONS(5007), - [sym__digits] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), - [sym__code_span_start] = ACTIONS(5007), - [sym__emphasis_open_star] = ACTIONS(5007), - [sym__emphasis_open_underscore] = ACTIONS(5007), - [sym__strikeout_open] = ACTIONS(5007), - [sym__latex_span_start] = ACTIONS(5007), - [sym__single_quote_open] = ACTIONS(5007), - [sym__double_quote_open] = ACTIONS(5007), - [sym__double_quote_close] = ACTIONS(5007), - [sym__superscript_open] = ACTIONS(5007), - [sym__subscript_open] = ACTIONS(5007), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5007), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5007), - [sym__cite_author_in_text] = ACTIONS(5007), - [sym__cite_suppress_author] = ACTIONS(5007), - [sym__shortcode_open_escaped] = ACTIONS(5007), - [sym__shortcode_open] = ACTIONS(5007), - [sym__unclosed_span] = ACTIONS(5007), - [sym__strong_emphasis_open_star] = ACTIONS(5007), - [sym__strong_emphasis_open_underscore] = ACTIONS(5007), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__double_quote_close] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(898)] = { - [sym__backslash_escape] = ACTIONS(5011), - [sym_entity_reference] = ACTIONS(5011), - [sym_numeric_character_reference] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_AMP] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym_BQUOTE] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym__newline_token] = ACTIONS(5011), - [aux_sym_insert_token1] = ACTIONS(5011), - [aux_sym_delete_token1] = ACTIONS(5011), - [aux_sym_highlight_token1] = ACTIONS(5011), - [aux_sym_edit_comment_token1] = ACTIONS(5011), - [anon_sym_CARET_LBRACK] = ACTIONS(5011), - [anon_sym_LBRACK_CARET] = ACTIONS(5011), - [sym_uri_autolink] = ACTIONS(5011), - [sym_email_autolink] = ACTIONS(5011), - [sym__whitespace_ge_2] = ACTIONS(5011), - [aux_sym__whitespace_token1] = ACTIONS(5013), - [sym__word_no_digit] = ACTIONS(5011), - [sym__digits] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5011), - [sym__code_span_start] = ACTIONS(5011), - [sym__emphasis_open_star] = ACTIONS(5011), - [sym__emphasis_open_underscore] = ACTIONS(5011), - [sym__strikeout_open] = ACTIONS(5011), - [sym__latex_span_start] = ACTIONS(5011), - [sym__single_quote_open] = ACTIONS(5011), - [sym__double_quote_open] = ACTIONS(5011), - [sym__superscript_open] = ACTIONS(5011), - [sym__superscript_close] = ACTIONS(5011), - [sym__subscript_open] = ACTIONS(5011), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5011), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5011), - [sym__cite_author_in_text] = ACTIONS(5011), - [sym__cite_suppress_author] = ACTIONS(5011), - [sym__shortcode_open_escaped] = ACTIONS(5011), - [sym__shortcode_open] = ACTIONS(5011), - [sym__unclosed_span] = ACTIONS(5011), - [sym__strong_emphasis_open_star] = ACTIONS(5011), - [sym__strong_emphasis_open_underscore] = ACTIONS(5011), + [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__subscript_close] = 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(899)] = { - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__superscript_close] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [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__subscript_close] = 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(900)] = { - [sym__backslash_escape] = ACTIONS(5015), - [sym_entity_reference] = ACTIONS(5015), - [sym_numeric_character_reference] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym_BQUOTE] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__newline_token] = ACTIONS(5015), - [aux_sym_insert_token1] = ACTIONS(5015), - [aux_sym_delete_token1] = ACTIONS(5015), - [aux_sym_highlight_token1] = ACTIONS(5015), - [aux_sym_edit_comment_token1] = ACTIONS(5015), - [anon_sym_CARET_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_CARET] = ACTIONS(5015), - [sym_uri_autolink] = ACTIONS(5015), - [sym_email_autolink] = ACTIONS(5015), - [sym__whitespace_ge_2] = ACTIONS(5015), - [aux_sym__whitespace_token1] = ACTIONS(5017), - [sym__word_no_digit] = ACTIONS(5015), - [sym__digits] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5015), - [sym__code_span_start] = ACTIONS(5015), - [sym__emphasis_open_star] = ACTIONS(5015), - [sym__emphasis_open_underscore] = ACTIONS(5015), - [sym__strikeout_open] = ACTIONS(5015), - [sym__latex_span_start] = ACTIONS(5015), - [sym__single_quote_open] = ACTIONS(5015), - [sym__double_quote_open] = ACTIONS(5015), - [sym__superscript_open] = ACTIONS(5015), - [sym__superscript_close] = ACTIONS(5015), - [sym__subscript_open] = ACTIONS(5015), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5015), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5015), - [sym__cite_author_in_text] = ACTIONS(5015), - [sym__cite_suppress_author] = ACTIONS(5015), - [sym__shortcode_open_escaped] = ACTIONS(5015), - [sym__shortcode_open] = ACTIONS(5015), - [sym__unclosed_span] = ACTIONS(5015), - [sym__strong_emphasis_open_star] = ACTIONS(5015), - [sym__strong_emphasis_open_underscore] = ACTIONS(5015), + [sym__backslash_escape] = ACTIONS(4499), + [sym_entity_reference] = ACTIONS(4499), + [sym_numeric_character_reference] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4501), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_BSLASH] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_PIPE] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [sym__newline_token] = ACTIONS(4499), + [aux_sym_insert_token1] = ACTIONS(4499), + [aux_sym_delete_token1] = ACTIONS(4499), + [aux_sym_highlight_token1] = ACTIONS(4499), + [aux_sym_edit_comment_token1] = ACTIONS(4499), + [anon_sym_CARET_LBRACK] = ACTIONS(4499), + [anon_sym_LBRACK_CARET] = ACTIONS(4499), + [sym_uri_autolink] = ACTIONS(4499), + [sym_email_autolink] = ACTIONS(4499), + [sym__whitespace_ge_2] = ACTIONS(4499), + [aux_sym__whitespace_token1] = ACTIONS(4501), + [sym__word_no_digit] = ACTIONS(4499), + [sym__digits] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4499), + [sym__code_span_start] = ACTIONS(4499), + [sym__emphasis_open_star] = ACTIONS(4499), + [sym__emphasis_open_underscore] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4499), + [sym__latex_span_start] = ACTIONS(4499), + [sym__single_quote_open] = ACTIONS(4499), + [sym__double_quote_open] = ACTIONS(4499), + [sym__superscript_open] = ACTIONS(4499), + [sym__subscript_open] = ACTIONS(4499), + [sym__subscript_close] = ACTIONS(4499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4499), + [sym__cite_author_in_text] = ACTIONS(4499), + [sym__cite_suppress_author] = ACTIONS(4499), + [sym__shortcode_open_escaped] = ACTIONS(4499), + [sym__shortcode_open] = ACTIONS(4499), + [sym__unclosed_span] = ACTIONS(4499), + [sym__strong_emphasis_open_star] = ACTIONS(4499), + [sym__strong_emphasis_open_underscore] = ACTIONS(4499), }, [STATE(901)] = { - [sym__backslash_escape] = ACTIONS(5019), - [sym_entity_reference] = ACTIONS(5019), - [sym_numeric_character_reference] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_DQUOTE] = ACTIONS(5019), - [anon_sym_POUND] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym__newline_token] = ACTIONS(5019), - [aux_sym_insert_token1] = ACTIONS(5019), - [aux_sym_delete_token1] = ACTIONS(5019), - [aux_sym_highlight_token1] = ACTIONS(5019), - [aux_sym_edit_comment_token1] = ACTIONS(5019), - [anon_sym_CARET_LBRACK] = ACTIONS(5019), - [anon_sym_LBRACK_CARET] = ACTIONS(5019), - [sym_uri_autolink] = ACTIONS(5019), - [sym_email_autolink] = ACTIONS(5019), - [sym__whitespace_ge_2] = ACTIONS(5019), - [aux_sym__whitespace_token1] = ACTIONS(5021), - [sym__word_no_digit] = ACTIONS(5019), - [sym__digits] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [sym__code_span_start] = ACTIONS(5019), - [sym__emphasis_open_star] = ACTIONS(5019), - [sym__emphasis_open_underscore] = ACTIONS(5019), - [sym__strikeout_open] = ACTIONS(5019), - [sym__latex_span_start] = ACTIONS(5019), - [sym__single_quote_open] = ACTIONS(5019), - [sym__double_quote_open] = ACTIONS(5019), - [sym__superscript_open] = ACTIONS(5019), - [sym__superscript_close] = ACTIONS(5019), - [sym__subscript_open] = ACTIONS(5019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5019), - [sym__cite_author_in_text] = ACTIONS(5019), - [sym__cite_suppress_author] = ACTIONS(5019), - [sym__shortcode_open_escaped] = ACTIONS(5019), - [sym__shortcode_open] = ACTIONS(5019), - [sym__unclosed_span] = ACTIONS(5019), - [sym__strong_emphasis_open_star] = ACTIONS(5019), - [sym__strong_emphasis_open_underscore] = ACTIONS(5019), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__subscript_close] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(902)] = { - [sym__backslash_escape] = ACTIONS(5023), - [sym_entity_reference] = ACTIONS(5023), - [sym_numeric_character_reference] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [sym__newline_token] = ACTIONS(5023), - [aux_sym_insert_token1] = ACTIONS(5023), - [aux_sym_delete_token1] = ACTIONS(5023), - [aux_sym_highlight_token1] = ACTIONS(5023), - [aux_sym_edit_comment_token1] = ACTIONS(5023), - [anon_sym_CARET_LBRACK] = ACTIONS(5023), - [anon_sym_LBRACK_CARET] = ACTIONS(5023), - [sym_uri_autolink] = ACTIONS(5023), - [sym_email_autolink] = ACTIONS(5023), - [sym__whitespace_ge_2] = ACTIONS(5023), - [aux_sym__whitespace_token1] = ACTIONS(5025), - [sym__word_no_digit] = ACTIONS(5023), - [sym__digits] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5023), - [sym__code_span_start] = ACTIONS(5023), - [sym__emphasis_open_star] = ACTIONS(5023), - [sym__emphasis_open_underscore] = ACTIONS(5023), - [sym__strikeout_open] = ACTIONS(5023), - [sym__latex_span_start] = ACTIONS(5023), - [sym__single_quote_open] = ACTIONS(5023), - [sym__double_quote_open] = ACTIONS(5023), - [sym__superscript_open] = ACTIONS(5023), - [sym__superscript_close] = ACTIONS(5023), - [sym__subscript_open] = ACTIONS(5023), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5023), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5023), - [sym__cite_author_in_text] = ACTIONS(5023), - [sym__cite_suppress_author] = ACTIONS(5023), - [sym__shortcode_open_escaped] = ACTIONS(5023), - [sym__shortcode_open] = ACTIONS(5023), - [sym__unclosed_span] = ACTIONS(5023), - [sym__strong_emphasis_open_star] = ACTIONS(5023), - [sym__strong_emphasis_open_underscore] = ACTIONS(5023), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__subscript_close] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(903)] = { - [sym__backslash_escape] = ACTIONS(5027), - [sym_entity_reference] = ACTIONS(5027), - [sym_numeric_character_reference] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [sym__newline_token] = ACTIONS(5027), - [aux_sym_insert_token1] = ACTIONS(5027), - [aux_sym_delete_token1] = ACTIONS(5027), - [aux_sym_highlight_token1] = ACTIONS(5027), - [aux_sym_edit_comment_token1] = ACTIONS(5027), - [anon_sym_CARET_LBRACK] = ACTIONS(5027), - [anon_sym_LBRACK_CARET] = ACTIONS(5027), - [sym_uri_autolink] = ACTIONS(5027), - [sym_email_autolink] = ACTIONS(5027), - [sym__whitespace_ge_2] = ACTIONS(5027), - [aux_sym__whitespace_token1] = ACTIONS(5029), - [sym__word_no_digit] = ACTIONS(5027), - [sym__digits] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5027), - [sym__code_span_start] = ACTIONS(5027), - [sym__emphasis_open_star] = ACTIONS(5027), - [sym__emphasis_open_underscore] = ACTIONS(5027), - [sym__strikeout_open] = ACTIONS(5027), - [sym__latex_span_start] = ACTIONS(5027), - [sym__single_quote_open] = ACTIONS(5027), - [sym__double_quote_open] = ACTIONS(5027), - [sym__superscript_open] = ACTIONS(5027), - [sym__superscript_close] = ACTIONS(5027), - [sym__subscript_open] = ACTIONS(5027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5027), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5027), - [sym__cite_author_in_text] = ACTIONS(5027), - [sym__cite_suppress_author] = ACTIONS(5027), - [sym__shortcode_open_escaped] = ACTIONS(5027), - [sym__shortcode_open] = ACTIONS(5027), - [sym__unclosed_span] = ACTIONS(5027), - [sym__strong_emphasis_open_star] = ACTIONS(5027), - [sym__strong_emphasis_open_underscore] = ACTIONS(5027), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__double_quote_close] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(904)] = { - [ts_builtin_sym_end] = ACTIONS(5135), - [sym__backslash_escape] = ACTIONS(5135), - [sym_entity_reference] = ACTIONS(5135), - [sym_numeric_character_reference] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_AMP] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_QMARK] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH] = ACTIONS(5137), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [sym__newline_token] = ACTIONS(5135), - [aux_sym_insert_token1] = ACTIONS(5135), - [aux_sym_delete_token1] = ACTIONS(5135), - [aux_sym_highlight_token1] = ACTIONS(5135), - [aux_sym_edit_comment_token1] = ACTIONS(5135), - [anon_sym_CARET_LBRACK] = ACTIONS(5135), - [anon_sym_LBRACK_CARET] = ACTIONS(5135), - [sym_uri_autolink] = ACTIONS(5135), - [sym_email_autolink] = ACTIONS(5135), - [sym__whitespace_ge_2] = ACTIONS(5135), - [aux_sym__whitespace_token1] = ACTIONS(5137), - [sym__word_no_digit] = ACTIONS(5135), - [sym__digits] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5135), - [sym__code_span_start] = ACTIONS(5135), - [sym__emphasis_open_star] = ACTIONS(5135), - [sym__emphasis_open_underscore] = ACTIONS(5135), - [sym__strikeout_open] = ACTIONS(5135), - [sym__latex_span_start] = ACTIONS(5135), - [sym__single_quote_open] = ACTIONS(5135), - [sym__double_quote_open] = ACTIONS(5135), - [sym__superscript_open] = ACTIONS(5135), - [sym__subscript_open] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5135), - [sym__cite_author_in_text] = ACTIONS(5135), - [sym__cite_suppress_author] = ACTIONS(5135), - [sym__shortcode_open_escaped] = ACTIONS(5135), - [sym__shortcode_open] = ACTIONS(5135), - [sym__unclosed_span] = ACTIONS(5135), - [sym__strong_emphasis_open_star] = ACTIONS(5135), - [sym__strong_emphasis_open_underscore] = ACTIONS(5135), + [sym__backslash_escape] = ACTIONS(4507), + [sym_entity_reference] = ACTIONS(4507), + [sym_numeric_character_reference] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(4507), + [anon_sym_DOLLAR] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_QMARK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_BSLASH] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [sym__newline_token] = ACTIONS(4507), + [aux_sym_insert_token1] = ACTIONS(4507), + [aux_sym_delete_token1] = ACTIONS(4507), + [aux_sym_highlight_token1] = ACTIONS(4507), + [aux_sym_edit_comment_token1] = ACTIONS(4507), + [anon_sym_CARET_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK_CARET] = ACTIONS(4507), + [sym_uri_autolink] = ACTIONS(4507), + [sym_email_autolink] = ACTIONS(4507), + [sym__whitespace_ge_2] = ACTIONS(4507), + [aux_sym__whitespace_token1] = ACTIONS(4509), + [sym__word_no_digit] = ACTIONS(4507), + [sym__digits] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4507), + [sym__code_span_start] = ACTIONS(4507), + [sym__emphasis_open_star] = ACTIONS(4507), + [sym__emphasis_open_underscore] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4507), + [sym__latex_span_start] = ACTIONS(4507), + [sym__single_quote_open] = ACTIONS(4507), + [sym__double_quote_open] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4507), + [sym__subscript_open] = ACTIONS(4507), + [sym__subscript_close] = ACTIONS(4507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4507), + [sym__cite_author_in_text] = ACTIONS(4507), + [sym__cite_suppress_author] = ACTIONS(4507), + [sym__shortcode_open_escaped] = ACTIONS(4507), + [sym__shortcode_open] = ACTIONS(4507), + [sym__unclosed_span] = ACTIONS(4507), + [sym__strong_emphasis_open_star] = ACTIONS(4507), + [sym__strong_emphasis_open_underscore] = ACTIONS(4507), }, [STATE(905)] = { - [sym__backslash_escape] = ACTIONS(5031), - [sym_entity_reference] = ACTIONS(5031), - [sym_numeric_character_reference] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_BSLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_BQUOTE] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [sym__newline_token] = ACTIONS(5031), - [aux_sym_insert_token1] = ACTIONS(5031), - [aux_sym_delete_token1] = ACTIONS(5031), - [aux_sym_highlight_token1] = ACTIONS(5031), - [aux_sym_edit_comment_token1] = ACTIONS(5031), - [anon_sym_CARET_LBRACK] = ACTIONS(5031), - [anon_sym_LBRACK_CARET] = ACTIONS(5031), - [sym_uri_autolink] = ACTIONS(5031), - [sym_email_autolink] = ACTIONS(5031), - [sym__whitespace_ge_2] = ACTIONS(5031), - [aux_sym__whitespace_token1] = ACTIONS(5033), - [sym__word_no_digit] = ACTIONS(5031), - [sym__digits] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [sym__code_span_start] = ACTIONS(5031), - [sym__emphasis_open_star] = ACTIONS(5031), - [sym__emphasis_open_underscore] = ACTIONS(5031), - [sym__strikeout_open] = ACTIONS(5031), - [sym__latex_span_start] = ACTIONS(5031), - [sym__single_quote_open] = ACTIONS(5031), - [sym__double_quote_open] = ACTIONS(5031), - [sym__superscript_open] = ACTIONS(5031), - [sym__superscript_close] = ACTIONS(5031), - [sym__subscript_open] = ACTIONS(5031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5031), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5031), - [sym__cite_author_in_text] = ACTIONS(5031), - [sym__cite_suppress_author] = ACTIONS(5031), - [sym__shortcode_open_escaped] = ACTIONS(5031), - [sym__shortcode_open] = ACTIONS(5031), - [sym__unclosed_span] = ACTIONS(5031), - [sym__strong_emphasis_open_star] = ACTIONS(5031), - [sym__strong_emphasis_open_underscore] = ACTIONS(5031), + [sym__backslash_escape] = ACTIONS(4511), + [sym_entity_reference] = ACTIONS(4511), + [sym_numeric_character_reference] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4511), + [anon_sym_POUND] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_COMMA] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_QMARK] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_BQUOTE] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(4511), + [sym__newline_token] = ACTIONS(4511), + [aux_sym_insert_token1] = ACTIONS(4511), + [aux_sym_delete_token1] = ACTIONS(4511), + [aux_sym_highlight_token1] = ACTIONS(4511), + [aux_sym_edit_comment_token1] = ACTIONS(4511), + [anon_sym_CARET_LBRACK] = ACTIONS(4511), + [anon_sym_LBRACK_CARET] = ACTIONS(4511), + [sym_uri_autolink] = ACTIONS(4511), + [sym_email_autolink] = ACTIONS(4511), + [sym__whitespace_ge_2] = ACTIONS(4511), + [aux_sym__whitespace_token1] = ACTIONS(4513), + [sym__word_no_digit] = ACTIONS(4511), + [sym__digits] = ACTIONS(4511), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), + [sym__code_span_start] = ACTIONS(4511), + [sym__emphasis_open_star] = ACTIONS(4511), + [sym__emphasis_open_underscore] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4511), + [sym__latex_span_start] = ACTIONS(4511), + [sym__single_quote_open] = ACTIONS(4511), + [sym__double_quote_open] = ACTIONS(4511), + [sym__superscript_open] = ACTIONS(4511), + [sym__subscript_open] = ACTIONS(4511), + [sym__subscript_close] = ACTIONS(4511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), + [sym__cite_author_in_text] = ACTIONS(4511), + [sym__cite_suppress_author] = ACTIONS(4511), + [sym__shortcode_open_escaped] = ACTIONS(4511), + [sym__shortcode_open] = ACTIONS(4511), + [sym__unclosed_span] = ACTIONS(4511), + [sym__strong_emphasis_open_star] = ACTIONS(4511), + [sym__strong_emphasis_open_underscore] = ACTIONS(4511), }, [STATE(906)] = { - [sym__backslash_escape] = ACTIONS(5035), - [sym_entity_reference] = ACTIONS(5035), - [sym_numeric_character_reference] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_DQUOTE] = ACTIONS(5035), - [anon_sym_POUND] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_BSLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [sym__newline_token] = ACTIONS(5035), - [aux_sym_insert_token1] = ACTIONS(5035), - [aux_sym_delete_token1] = ACTIONS(5035), - [aux_sym_highlight_token1] = ACTIONS(5035), - [aux_sym_edit_comment_token1] = ACTIONS(5035), - [anon_sym_CARET_LBRACK] = ACTIONS(5035), - [anon_sym_LBRACK_CARET] = ACTIONS(5035), - [sym_uri_autolink] = ACTIONS(5035), - [sym_email_autolink] = ACTIONS(5035), - [sym__whitespace_ge_2] = ACTIONS(5035), - [aux_sym__whitespace_token1] = ACTIONS(5037), - [sym__word_no_digit] = ACTIONS(5035), - [sym__digits] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5035), - [sym__code_span_start] = ACTIONS(5035), - [sym__emphasis_open_star] = ACTIONS(5035), - [sym__emphasis_open_underscore] = ACTIONS(5035), - [sym__strikeout_open] = ACTIONS(5035), - [sym__latex_span_start] = ACTIONS(5035), - [sym__single_quote_open] = ACTIONS(5035), - [sym__double_quote_open] = ACTIONS(5035), - [sym__superscript_open] = ACTIONS(5035), - [sym__superscript_close] = ACTIONS(5035), - [sym__subscript_open] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5035), - [sym__cite_author_in_text] = ACTIONS(5035), - [sym__cite_suppress_author] = ACTIONS(5035), - [sym__shortcode_open_escaped] = ACTIONS(5035), - [sym__shortcode_open] = ACTIONS(5035), - [sym__unclosed_span] = ACTIONS(5035), - [sym__strong_emphasis_open_star] = ACTIONS(5035), - [sym__strong_emphasis_open_underscore] = ACTIONS(5035), + [sym__backslash_escape] = ACTIONS(4515), + [sym_entity_reference] = ACTIONS(4515), + [sym_numeric_character_reference] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4515), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_BSLASH] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_RPAREN] = ACTIONS(4515), + [sym__newline_token] = ACTIONS(4515), + [aux_sym_insert_token1] = ACTIONS(4515), + [aux_sym_delete_token1] = ACTIONS(4515), + [aux_sym_highlight_token1] = ACTIONS(4515), + [aux_sym_edit_comment_token1] = ACTIONS(4515), + [anon_sym_CARET_LBRACK] = ACTIONS(4515), + [anon_sym_LBRACK_CARET] = ACTIONS(4515), + [sym_uri_autolink] = ACTIONS(4515), + [sym_email_autolink] = ACTIONS(4515), + [sym__whitespace_ge_2] = ACTIONS(4515), + [aux_sym__whitespace_token1] = ACTIONS(4517), + [sym__word_no_digit] = ACTIONS(4515), + [sym__digits] = ACTIONS(4515), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4515), + [sym__code_span_start] = ACTIONS(4515), + [sym__emphasis_open_star] = ACTIONS(4515), + [sym__emphasis_open_underscore] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4515), + [sym__latex_span_start] = ACTIONS(4515), + [sym__single_quote_open] = ACTIONS(4515), + [sym__double_quote_open] = ACTIONS(4515), + [sym__superscript_open] = ACTIONS(4515), + [sym__subscript_open] = ACTIONS(4515), + [sym__subscript_close] = ACTIONS(4515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4515), + [sym__cite_author_in_text] = ACTIONS(4515), + [sym__cite_suppress_author] = ACTIONS(4515), + [sym__shortcode_open_escaped] = ACTIONS(4515), + [sym__shortcode_open] = ACTIONS(4515), + [sym__unclosed_span] = ACTIONS(4515), + [sym__strong_emphasis_open_star] = ACTIONS(4515), + [sym__strong_emphasis_open_underscore] = ACTIONS(4515), }, [STATE(907)] = { - [sym__backslash_escape] = ACTIONS(5039), - [sym_entity_reference] = ACTIONS(5039), - [sym_numeric_character_reference] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(5039), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_BSLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [sym__newline_token] = ACTIONS(5039), - [aux_sym_insert_token1] = ACTIONS(5039), - [aux_sym_delete_token1] = ACTIONS(5039), - [aux_sym_highlight_token1] = ACTIONS(5039), - [aux_sym_edit_comment_token1] = ACTIONS(5039), - [anon_sym_CARET_LBRACK] = ACTIONS(5039), - [anon_sym_LBRACK_CARET] = ACTIONS(5039), - [sym_uri_autolink] = ACTIONS(5039), - [sym_email_autolink] = ACTIONS(5039), - [sym__whitespace_ge_2] = ACTIONS(5039), - [aux_sym__whitespace_token1] = ACTIONS(5041), - [sym__word_no_digit] = ACTIONS(5039), - [sym__digits] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5039), - [sym__code_span_start] = ACTIONS(5039), - [sym__emphasis_open_star] = ACTIONS(5039), - [sym__emphasis_open_underscore] = ACTIONS(5039), - [sym__strikeout_open] = ACTIONS(5039), - [sym__latex_span_start] = ACTIONS(5039), - [sym__single_quote_open] = ACTIONS(5039), - [sym__double_quote_open] = ACTIONS(5039), - [sym__superscript_open] = ACTIONS(5039), - [sym__superscript_close] = ACTIONS(5039), - [sym__subscript_open] = ACTIONS(5039), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5039), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5039), - [sym__cite_author_in_text] = ACTIONS(5039), - [sym__cite_suppress_author] = ACTIONS(5039), - [sym__shortcode_open_escaped] = ACTIONS(5039), - [sym__shortcode_open] = ACTIONS(5039), - [sym__unclosed_span] = ACTIONS(5039), - [sym__strong_emphasis_open_star] = ACTIONS(5039), - [sym__strong_emphasis_open_underscore] = ACTIONS(5039), + [sym__backslash_escape] = ACTIONS(4519), + [sym_entity_reference] = ACTIONS(4519), + [sym_numeric_character_reference] = ACTIONS(4519), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4519), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_BSLASH] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_BQUOTE] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [sym__newline_token] = ACTIONS(4519), + [aux_sym_insert_token1] = ACTIONS(4519), + [aux_sym_delete_token1] = ACTIONS(4519), + [aux_sym_highlight_token1] = ACTIONS(4519), + [aux_sym_edit_comment_token1] = ACTIONS(4519), + [anon_sym_CARET_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_CARET] = ACTIONS(4519), + [sym_uri_autolink] = ACTIONS(4519), + [sym_email_autolink] = ACTIONS(4519), + [sym__whitespace_ge_2] = ACTIONS(4519), + [aux_sym__whitespace_token1] = ACTIONS(4521), + [sym__word_no_digit] = ACTIONS(4519), + [sym__digits] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [sym__code_span_start] = ACTIONS(4519), + [sym__emphasis_open_star] = ACTIONS(4519), + [sym__emphasis_open_underscore] = ACTIONS(4519), + [sym__strikeout_open] = ACTIONS(4519), + [sym__latex_span_start] = ACTIONS(4519), + [sym__single_quote_open] = ACTIONS(4519), + [sym__double_quote_open] = ACTIONS(4519), + [sym__superscript_open] = ACTIONS(4519), + [sym__subscript_open] = ACTIONS(4519), + [sym__subscript_close] = ACTIONS(4519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4519), + [sym__cite_suppress_author] = ACTIONS(4519), + [sym__shortcode_open_escaped] = ACTIONS(4519), + [sym__shortcode_open] = ACTIONS(4519), + [sym__unclosed_span] = ACTIONS(4519), + [sym__strong_emphasis_open_star] = ACTIONS(4519), + [sym__strong_emphasis_open_underscore] = ACTIONS(4519), }, [STATE(908)] = { - [sym__backslash_escape] = ACTIONS(5043), - [sym_entity_reference] = ACTIONS(5043), - [sym_numeric_character_reference] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_DQUOTE] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_QMARK] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_BSLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [sym__newline_token] = ACTIONS(5043), - [aux_sym_insert_token1] = ACTIONS(5043), - [aux_sym_delete_token1] = ACTIONS(5043), - [aux_sym_highlight_token1] = ACTIONS(5043), - [aux_sym_edit_comment_token1] = ACTIONS(5043), - [anon_sym_CARET_LBRACK] = ACTIONS(5043), - [anon_sym_LBRACK_CARET] = ACTIONS(5043), - [sym_uri_autolink] = ACTIONS(5043), - [sym_email_autolink] = ACTIONS(5043), - [sym__whitespace_ge_2] = ACTIONS(5043), - [aux_sym__whitespace_token1] = ACTIONS(5045), - [sym__word_no_digit] = ACTIONS(5043), - [sym__digits] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), - [sym__code_span_start] = ACTIONS(5043), - [sym__emphasis_open_star] = ACTIONS(5043), - [sym__emphasis_open_underscore] = ACTIONS(5043), - [sym__strikeout_open] = ACTIONS(5043), - [sym__latex_span_start] = ACTIONS(5043), - [sym__single_quote_open] = ACTIONS(5043), - [sym__double_quote_open] = ACTIONS(5043), - [sym__superscript_open] = ACTIONS(5043), - [sym__superscript_close] = ACTIONS(5043), - [sym__subscript_open] = ACTIONS(5043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5043), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5043), - [sym__cite_author_in_text] = ACTIONS(5043), - [sym__cite_suppress_author] = ACTIONS(5043), - [sym__shortcode_open_escaped] = ACTIONS(5043), - [sym__shortcode_open] = ACTIONS(5043), - [sym__unclosed_span] = ACTIONS(5043), - [sym__strong_emphasis_open_star] = ACTIONS(5043), - [sym__strong_emphasis_open_underscore] = ACTIONS(5043), + [sym__backslash_escape] = ACTIONS(4523), + [sym_entity_reference] = ACTIONS(4523), + [sym_numeric_character_reference] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_BSLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [sym__newline_token] = ACTIONS(4523), + [aux_sym_insert_token1] = ACTIONS(4523), + [aux_sym_delete_token1] = ACTIONS(4523), + [aux_sym_highlight_token1] = ACTIONS(4523), + [aux_sym_edit_comment_token1] = ACTIONS(4523), + [anon_sym_CARET_LBRACK] = ACTIONS(4523), + [anon_sym_LBRACK_CARET] = ACTIONS(4523), + [sym_uri_autolink] = ACTIONS(4523), + [sym_email_autolink] = ACTIONS(4523), + [sym__whitespace_ge_2] = ACTIONS(4523), + [aux_sym__whitespace_token1] = ACTIONS(4525), + [sym__word_no_digit] = ACTIONS(4523), + [sym__digits] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4523), + [sym__code_span_start] = ACTIONS(4523), + [sym__emphasis_open_star] = ACTIONS(4523), + [sym__emphasis_open_underscore] = ACTIONS(4523), + [sym__strikeout_open] = ACTIONS(4523), + [sym__latex_span_start] = ACTIONS(4523), + [sym__single_quote_open] = ACTIONS(4523), + [sym__double_quote_open] = ACTIONS(4523), + [sym__superscript_open] = ACTIONS(4523), + [sym__subscript_open] = ACTIONS(4523), + [sym__subscript_close] = ACTIONS(4523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4523), + [sym__cite_author_in_text] = ACTIONS(4523), + [sym__cite_suppress_author] = ACTIONS(4523), + [sym__shortcode_open_escaped] = ACTIONS(4523), + [sym__shortcode_open] = ACTIONS(4523), + [sym__unclosed_span] = ACTIONS(4523), + [sym__strong_emphasis_open_star] = ACTIONS(4523), + [sym__strong_emphasis_open_underscore] = ACTIONS(4523), }, [STATE(909)] = { - [sym__backslash_escape] = ACTIONS(5047), - [sym_entity_reference] = ACTIONS(5047), - [sym_numeric_character_reference] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(5047), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [sym__newline_token] = ACTIONS(5047), - [aux_sym_insert_token1] = ACTIONS(5047), - [aux_sym_delete_token1] = ACTIONS(5047), - [aux_sym_highlight_token1] = ACTIONS(5047), - [aux_sym_edit_comment_token1] = ACTIONS(5047), - [anon_sym_CARET_LBRACK] = ACTIONS(5047), - [anon_sym_LBRACK_CARET] = ACTIONS(5047), - [sym_uri_autolink] = ACTIONS(5047), - [sym_email_autolink] = ACTIONS(5047), - [sym__whitespace_ge_2] = ACTIONS(5047), - [aux_sym__whitespace_token1] = ACTIONS(5049), - [sym__word_no_digit] = ACTIONS(5047), - [sym__digits] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5047), - [sym__code_span_start] = ACTIONS(5047), - [sym__emphasis_open_star] = ACTIONS(5047), - [sym__emphasis_open_underscore] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5047), - [sym__latex_span_start] = ACTIONS(5047), - [sym__single_quote_open] = ACTIONS(5047), - [sym__double_quote_open] = ACTIONS(5047), - [sym__superscript_open] = ACTIONS(5047), - [sym__superscript_close] = ACTIONS(5047), - [sym__subscript_open] = ACTIONS(5047), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5047), - [sym__cite_author_in_text] = ACTIONS(5047), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__shortcode_open_escaped] = ACTIONS(5047), - [sym__shortcode_open] = ACTIONS(5047), - [sym__unclosed_span] = ACTIONS(5047), - [sym__strong_emphasis_open_star] = ACTIONS(5047), - [sym__strong_emphasis_open_underscore] = ACTIONS(5047), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__subscript_close] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(910)] = { - [sym__backslash_escape] = ACTIONS(5051), - [sym_entity_reference] = ACTIONS(5051), - [sym_numeric_character_reference] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_BSLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [sym__newline_token] = ACTIONS(5051), - [aux_sym_insert_token1] = ACTIONS(5051), - [aux_sym_delete_token1] = ACTIONS(5051), - [aux_sym_highlight_token1] = ACTIONS(5051), - [aux_sym_edit_comment_token1] = ACTIONS(5051), - [anon_sym_CARET_LBRACK] = ACTIONS(5051), - [anon_sym_LBRACK_CARET] = ACTIONS(5051), - [sym_uri_autolink] = ACTIONS(5051), - [sym_email_autolink] = ACTIONS(5051), - [sym__whitespace_ge_2] = ACTIONS(5051), - [aux_sym__whitespace_token1] = ACTIONS(5053), - [sym__word_no_digit] = ACTIONS(5051), - [sym__digits] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5051), - [sym__code_span_start] = ACTIONS(5051), - [sym__emphasis_open_star] = ACTIONS(5051), - [sym__emphasis_open_underscore] = ACTIONS(5051), - [sym__strikeout_open] = ACTIONS(5051), - [sym__latex_span_start] = ACTIONS(5051), - [sym__single_quote_open] = ACTIONS(5051), - [sym__double_quote_open] = ACTIONS(5051), - [sym__superscript_open] = ACTIONS(5051), - [sym__superscript_close] = ACTIONS(5051), - [sym__subscript_open] = ACTIONS(5051), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5051), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5051), - [sym__cite_author_in_text] = ACTIONS(5051), - [sym__cite_suppress_author] = ACTIONS(5051), - [sym__shortcode_open_escaped] = ACTIONS(5051), - [sym__shortcode_open] = ACTIONS(5051), - [sym__unclosed_span] = ACTIONS(5051), - [sym__strong_emphasis_open_star] = ACTIONS(5051), - [sym__strong_emphasis_open_underscore] = ACTIONS(5051), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__subscript_close] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(911)] = { - [sym__backslash_escape] = ACTIONS(5055), - [sym_entity_reference] = ACTIONS(5055), - [sym_numeric_character_reference] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(5055), - [anon_sym_POUND] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_BSLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_BQUOTE] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [sym__newline_token] = ACTIONS(5055), - [aux_sym_insert_token1] = ACTIONS(5055), - [aux_sym_delete_token1] = ACTIONS(5055), - [aux_sym_highlight_token1] = ACTIONS(5055), - [aux_sym_edit_comment_token1] = ACTIONS(5055), - [anon_sym_CARET_LBRACK] = ACTIONS(5055), - [anon_sym_LBRACK_CARET] = ACTIONS(5055), - [sym_uri_autolink] = ACTIONS(5055), - [sym_email_autolink] = ACTIONS(5055), - [sym__whitespace_ge_2] = ACTIONS(5055), - [aux_sym__whitespace_token1] = ACTIONS(5057), - [sym__word_no_digit] = ACTIONS(5055), - [sym__digits] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5055), - [sym__code_span_start] = ACTIONS(5055), - [sym__emphasis_open_star] = ACTIONS(5055), - [sym__emphasis_open_underscore] = ACTIONS(5055), - [sym__strikeout_open] = ACTIONS(5055), - [sym__latex_span_start] = ACTIONS(5055), - [sym__single_quote_open] = ACTIONS(5055), - [sym__double_quote_open] = ACTIONS(5055), - [sym__superscript_open] = ACTIONS(5055), - [sym__superscript_close] = ACTIONS(5055), - [sym__subscript_open] = ACTIONS(5055), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5055), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5055), - [sym__cite_author_in_text] = ACTIONS(5055), - [sym__cite_suppress_author] = ACTIONS(5055), - [sym__shortcode_open_escaped] = ACTIONS(5055), - [sym__shortcode_open] = ACTIONS(5055), - [sym__unclosed_span] = ACTIONS(5055), - [sym__strong_emphasis_open_star] = ACTIONS(5055), - [sym__strong_emphasis_open_underscore] = ACTIONS(5055), + [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(912)] = { - [sym__backslash_escape] = ACTIONS(5059), - [sym_entity_reference] = ACTIONS(5059), - [sym_numeric_character_reference] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_DQUOTE] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_BSLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [sym__newline_token] = ACTIONS(5059), - [aux_sym_insert_token1] = ACTIONS(5059), - [aux_sym_delete_token1] = ACTIONS(5059), - [aux_sym_highlight_token1] = ACTIONS(5059), - [aux_sym_edit_comment_token1] = ACTIONS(5059), - [anon_sym_CARET_LBRACK] = ACTIONS(5059), - [anon_sym_LBRACK_CARET] = ACTIONS(5059), - [sym_uri_autolink] = ACTIONS(5059), - [sym_email_autolink] = ACTIONS(5059), - [sym__whitespace_ge_2] = ACTIONS(5059), - [aux_sym__whitespace_token1] = ACTIONS(5061), - [sym__word_no_digit] = ACTIONS(5059), - [sym__digits] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5059), - [sym__code_span_start] = ACTIONS(5059), - [sym__emphasis_open_star] = ACTIONS(5059), - [sym__emphasis_open_underscore] = ACTIONS(5059), - [sym__strikeout_open] = ACTIONS(5059), - [sym__latex_span_start] = ACTIONS(5059), - [sym__single_quote_open] = ACTIONS(5059), - [sym__double_quote_open] = ACTIONS(5059), - [sym__superscript_open] = ACTIONS(5059), - [sym__superscript_close] = ACTIONS(5059), - [sym__subscript_open] = ACTIONS(5059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5059), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5059), - [sym__cite_author_in_text] = ACTIONS(5059), - [sym__cite_suppress_author] = ACTIONS(5059), - [sym__shortcode_open_escaped] = ACTIONS(5059), - [sym__shortcode_open] = ACTIONS(5059), - [sym__unclosed_span] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5059), - [sym__strong_emphasis_open_underscore] = ACTIONS(5059), + [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(913)] = { - [sym__backslash_escape] = ACTIONS(5063), - [sym_entity_reference] = ACTIONS(5063), - [sym_numeric_character_reference] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_BSLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_BQUOTE] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [sym__newline_token] = ACTIONS(5063), - [aux_sym_insert_token1] = ACTIONS(5063), - [aux_sym_delete_token1] = ACTIONS(5063), - [aux_sym_highlight_token1] = ACTIONS(5063), - [aux_sym_edit_comment_token1] = ACTIONS(5063), - [anon_sym_CARET_LBRACK] = ACTIONS(5063), - [anon_sym_LBRACK_CARET] = ACTIONS(5063), - [sym_uri_autolink] = ACTIONS(5063), - [sym_email_autolink] = ACTIONS(5063), - [sym__whitespace_ge_2] = ACTIONS(5063), - [aux_sym__whitespace_token1] = ACTIONS(5065), - [sym__word_no_digit] = ACTIONS(5063), - [sym__digits] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5063), - [sym__code_span_start] = ACTIONS(5063), - [sym__emphasis_open_star] = ACTIONS(5063), - [sym__emphasis_open_underscore] = ACTIONS(5063), - [sym__strikeout_open] = ACTIONS(5063), - [sym__latex_span_start] = ACTIONS(5063), - [sym__single_quote_open] = ACTIONS(5063), - [sym__double_quote_open] = ACTIONS(5063), - [sym__superscript_open] = ACTIONS(5063), - [sym__superscript_close] = ACTIONS(5063), - [sym__subscript_open] = ACTIONS(5063), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5063), - [sym__cite_author_in_text] = ACTIONS(5063), - [sym__cite_suppress_author] = ACTIONS(5063), - [sym__shortcode_open_escaped] = ACTIONS(5063), - [sym__shortcode_open] = ACTIONS(5063), - [sym__unclosed_span] = ACTIONS(5063), - [sym__strong_emphasis_open_star] = ACTIONS(5063), - [sym__strong_emphasis_open_underscore] = ACTIONS(5063), + [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__subscript_close] = 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(914)] = { - [sym__backslash_escape] = ACTIONS(5067), - [sym_entity_reference] = ACTIONS(5067), - [sym_numeric_character_reference] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DQUOTE] = ACTIONS(5067), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_COLON] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [sym__newline_token] = ACTIONS(5067), - [aux_sym_insert_token1] = ACTIONS(5067), - [aux_sym_delete_token1] = ACTIONS(5067), - [aux_sym_highlight_token1] = ACTIONS(5067), - [aux_sym_edit_comment_token1] = ACTIONS(5067), - [anon_sym_CARET_LBRACK] = ACTIONS(5067), - [anon_sym_LBRACK_CARET] = ACTIONS(5067), - [sym_uri_autolink] = ACTIONS(5067), - [sym_email_autolink] = ACTIONS(5067), - [sym__whitespace_ge_2] = ACTIONS(5067), - [aux_sym__whitespace_token1] = ACTIONS(5069), - [sym__word_no_digit] = ACTIONS(5067), - [sym__digits] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5067), - [sym__code_span_start] = ACTIONS(5067), - [sym__emphasis_open_star] = ACTIONS(5067), - [sym__emphasis_open_underscore] = ACTIONS(5067), - [sym__strikeout_open] = ACTIONS(5067), - [sym__latex_span_start] = ACTIONS(5067), - [sym__single_quote_open] = ACTIONS(5067), - [sym__double_quote_open] = ACTIONS(5067), - [sym__superscript_open] = ACTIONS(5067), - [sym__superscript_close] = ACTIONS(5067), - [sym__subscript_open] = ACTIONS(5067), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5067), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5067), - [sym__cite_author_in_text] = ACTIONS(5067), - [sym__cite_suppress_author] = ACTIONS(5067), - [sym__shortcode_open_escaped] = ACTIONS(5067), - [sym__shortcode_open] = ACTIONS(5067), - [sym__unclosed_span] = ACTIONS(5067), - [sym__strong_emphasis_open_star] = ACTIONS(5067), - [sym__strong_emphasis_open_underscore] = ACTIONS(5067), + [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__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__subscript_close] = 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(915)] = { - [sym__backslash_escape] = ACTIONS(5071), - [sym_entity_reference] = ACTIONS(5071), - [sym_numeric_character_reference] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_POUND] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [sym__newline_token] = ACTIONS(5071), - [aux_sym_insert_token1] = ACTIONS(5071), - [aux_sym_delete_token1] = ACTIONS(5071), - [aux_sym_highlight_token1] = ACTIONS(5071), - [aux_sym_edit_comment_token1] = ACTIONS(5071), - [anon_sym_CARET_LBRACK] = ACTIONS(5071), - [anon_sym_LBRACK_CARET] = ACTIONS(5071), - [sym_uri_autolink] = ACTIONS(5071), - [sym_email_autolink] = ACTIONS(5071), - [sym__whitespace_ge_2] = ACTIONS(5071), - [aux_sym__whitespace_token1] = ACTIONS(5073), - [sym__word_no_digit] = ACTIONS(5071), - [sym__digits] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5071), - [sym__code_span_start] = ACTIONS(5071), - [sym__emphasis_open_star] = ACTIONS(5071), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym__strikeout_open] = ACTIONS(5071), - [sym__latex_span_start] = ACTIONS(5071), - [sym__single_quote_open] = ACTIONS(5071), - [sym__double_quote_open] = ACTIONS(5071), - [sym__superscript_open] = ACTIONS(5071), - [sym__superscript_close] = ACTIONS(5071), - [sym__subscript_open] = ACTIONS(5071), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5071), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5071), - [sym__cite_author_in_text] = ACTIONS(5071), - [sym__cite_suppress_author] = ACTIONS(5071), - [sym__shortcode_open_escaped] = ACTIONS(5071), - [sym__shortcode_open] = ACTIONS(5071), - [sym__unclosed_span] = ACTIONS(5071), - [sym__strong_emphasis_open_star] = ACTIONS(5071), - [sym__strong_emphasis_open_underscore] = ACTIONS(5071), + [sym__backslash_escape] = ACTIONS(4503), + [sym_entity_reference] = ACTIONS(4503), + [sym_numeric_character_reference] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_BQUOTE] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_PIPE] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [sym__newline_token] = ACTIONS(4503), + [aux_sym_insert_token1] = ACTIONS(4503), + [aux_sym_delete_token1] = ACTIONS(4503), + [aux_sym_highlight_token1] = ACTIONS(4503), + [aux_sym_edit_comment_token1] = ACTIONS(4503), + [anon_sym_CARET_LBRACK] = ACTIONS(4503), + [anon_sym_LBRACK_CARET] = ACTIONS(4503), + [sym_uri_autolink] = ACTIONS(4503), + [sym_email_autolink] = ACTIONS(4503), + [sym__whitespace_ge_2] = ACTIONS(4503), + [aux_sym__whitespace_token1] = ACTIONS(4505), + [sym__word_no_digit] = ACTIONS(4503), + [sym__digits] = ACTIONS(4503), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4503), + [sym__code_span_start] = ACTIONS(4503), + [sym__emphasis_open_star] = ACTIONS(4503), + [sym__emphasis_open_underscore] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4503), + [sym__latex_span_start] = ACTIONS(4503), + [sym__single_quote_open] = ACTIONS(4503), + [sym__double_quote_open] = ACTIONS(4503), + [sym__superscript_open] = ACTIONS(4503), + [sym__subscript_open] = ACTIONS(4503), + [sym__subscript_close] = ACTIONS(4503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4503), + [sym__cite_author_in_text] = ACTIONS(4503), + [sym__cite_suppress_author] = ACTIONS(4503), + [sym__shortcode_open_escaped] = ACTIONS(4503), + [sym__shortcode_open] = ACTIONS(4503), + [sym__unclosed_span] = ACTIONS(4503), + [sym__strong_emphasis_open_star] = ACTIONS(4503), + [sym__strong_emphasis_open_underscore] = ACTIONS(4503), }, [STATE(916)] = { - [sym__backslash_escape] = ACTIONS(5075), - [sym_entity_reference] = ACTIONS(5075), - [sym_numeric_character_reference] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_QMARK] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_BSLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [sym__newline_token] = ACTIONS(5075), - [aux_sym_insert_token1] = ACTIONS(5075), - [aux_sym_delete_token1] = ACTIONS(5075), - [aux_sym_highlight_token1] = ACTIONS(5075), - [aux_sym_edit_comment_token1] = ACTIONS(5075), - [anon_sym_CARET_LBRACK] = ACTIONS(5075), - [anon_sym_LBRACK_CARET] = ACTIONS(5075), - [sym_uri_autolink] = ACTIONS(5075), - [sym_email_autolink] = ACTIONS(5075), - [sym__whitespace_ge_2] = ACTIONS(5075), - [aux_sym__whitespace_token1] = ACTIONS(5077), - [sym__word_no_digit] = ACTIONS(5075), - [sym__digits] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5075), - [sym__code_span_start] = ACTIONS(5075), - [sym__emphasis_open_star] = ACTIONS(5075), - [sym__emphasis_open_underscore] = ACTIONS(5075), - [sym__strikeout_open] = ACTIONS(5075), - [sym__latex_span_start] = ACTIONS(5075), - [sym__single_quote_open] = ACTIONS(5075), - [sym__double_quote_open] = ACTIONS(5075), - [sym__superscript_open] = ACTIONS(5075), - [sym__superscript_close] = ACTIONS(5075), - [sym__subscript_open] = ACTIONS(5075), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5075), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5075), - [sym__cite_author_in_text] = ACTIONS(5075), - [sym__cite_suppress_author] = ACTIONS(5075), - [sym__shortcode_open_escaped] = ACTIONS(5075), - [sym__shortcode_open] = ACTIONS(5075), - [sym__unclosed_span] = ACTIONS(5075), - [sym__strong_emphasis_open_star] = ACTIONS(5075), - [sym__strong_emphasis_open_underscore] = ACTIONS(5075), + [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(4251), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(917)] = { - [sym__backslash_escape] = ACTIONS(5079), - [sym_entity_reference] = ACTIONS(5079), - [sym_numeric_character_reference] = ACTIONS(5079), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_DQUOTE] = ACTIONS(5079), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_QMARK] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BSLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5079), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [sym__newline_token] = ACTIONS(5079), - [aux_sym_insert_token1] = ACTIONS(5079), - [aux_sym_delete_token1] = ACTIONS(5079), - [aux_sym_highlight_token1] = ACTIONS(5079), - [aux_sym_edit_comment_token1] = ACTIONS(5079), - [anon_sym_CARET_LBRACK] = ACTIONS(5079), - [anon_sym_LBRACK_CARET] = ACTIONS(5079), - [sym_uri_autolink] = ACTIONS(5079), - [sym_email_autolink] = ACTIONS(5079), - [sym__whitespace_ge_2] = ACTIONS(5079), - [aux_sym__whitespace_token1] = ACTIONS(5081), - [sym__word_no_digit] = ACTIONS(5079), - [sym__digits] = ACTIONS(5079), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5079), - [sym__code_span_start] = ACTIONS(5079), - [sym__emphasis_open_star] = ACTIONS(5079), - [sym__emphasis_open_underscore] = ACTIONS(5079), - [sym__strikeout_open] = ACTIONS(5079), - [sym__latex_span_start] = ACTIONS(5079), - [sym__single_quote_open] = ACTIONS(5079), - [sym__double_quote_open] = ACTIONS(5079), - [sym__superscript_open] = ACTIONS(5079), - [sym__superscript_close] = ACTIONS(5079), - [sym__subscript_open] = ACTIONS(5079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5079), - [sym__cite_author_in_text] = ACTIONS(5079), - [sym__cite_suppress_author] = ACTIONS(5079), - [sym__shortcode_open_escaped] = ACTIONS(5079), - [sym__shortcode_open] = ACTIONS(5079), - [sym__unclosed_span] = ACTIONS(5079), - [sym__strong_emphasis_open_star] = ACTIONS(5079), - [sym__strong_emphasis_open_underscore] = ACTIONS(5079), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__emphasis_close_star] = ACTIONS(4303), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(918)] = { - [sym__backslash_escape] = ACTIONS(5083), - [sym_entity_reference] = ACTIONS(5083), - [sym_numeric_character_reference] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOT] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_QMARK] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_BSLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym_BQUOTE] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [sym__newline_token] = ACTIONS(5083), - [aux_sym_insert_token1] = ACTIONS(5083), - [aux_sym_delete_token1] = ACTIONS(5083), - [aux_sym_highlight_token1] = ACTIONS(5083), - [aux_sym_edit_comment_token1] = ACTIONS(5083), - [anon_sym_CARET_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_CARET] = ACTIONS(5083), - [sym_uri_autolink] = ACTIONS(5083), - [sym_email_autolink] = ACTIONS(5083), - [sym__whitespace_ge_2] = ACTIONS(5083), - [aux_sym__whitespace_token1] = ACTIONS(5085), - [sym__word_no_digit] = ACTIONS(5083), - [sym__digits] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5083), - [sym__code_span_start] = ACTIONS(5083), - [sym__emphasis_open_star] = ACTIONS(5083), - [sym__emphasis_open_underscore] = ACTIONS(5083), - [sym__strikeout_open] = ACTIONS(5083), - [sym__latex_span_start] = ACTIONS(5083), - [sym__single_quote_open] = ACTIONS(5083), - [sym__double_quote_open] = ACTIONS(5083), - [sym__superscript_open] = ACTIONS(5083), - [sym__superscript_close] = ACTIONS(5083), - [sym__subscript_open] = ACTIONS(5083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5083), - [sym__cite_author_in_text] = ACTIONS(5083), - [sym__cite_suppress_author] = ACTIONS(5083), - [sym__shortcode_open_escaped] = ACTIONS(5083), - [sym__shortcode_open] = ACTIONS(5083), - [sym__unclosed_span] = ACTIONS(5083), - [sym__strong_emphasis_open_star] = ACTIONS(5083), - [sym__strong_emphasis_open_underscore] = ACTIONS(5083), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__subscript_close] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(919)] = { - [sym__backslash_escape] = ACTIONS(5087), - [sym_entity_reference] = ACTIONS(5087), - [sym_numeric_character_reference] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_DQUOTE] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_AMP] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_QMARK] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym_BQUOTE] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_PIPE] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [sym__newline_token] = ACTIONS(5087), - [aux_sym_insert_token1] = ACTIONS(5087), - [aux_sym_delete_token1] = ACTIONS(5087), - [aux_sym_highlight_token1] = ACTIONS(5087), - [aux_sym_edit_comment_token1] = ACTIONS(5087), - [anon_sym_CARET_LBRACK] = ACTIONS(5087), - [anon_sym_LBRACK_CARET] = ACTIONS(5087), - [sym_uri_autolink] = ACTIONS(5087), - [sym_email_autolink] = ACTIONS(5087), - [sym__whitespace_ge_2] = ACTIONS(5087), - [aux_sym__whitespace_token1] = ACTIONS(5089), - [sym__word_no_digit] = ACTIONS(5087), - [sym__digits] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5087), - [sym__code_span_start] = ACTIONS(5087), - [sym__emphasis_open_star] = ACTIONS(5087), - [sym__emphasis_open_underscore] = ACTIONS(5087), - [sym__strikeout_open] = ACTIONS(5087), - [sym__latex_span_start] = ACTIONS(5087), - [sym__single_quote_open] = ACTIONS(5087), - [sym__double_quote_open] = ACTIONS(5087), - [sym__superscript_open] = ACTIONS(5087), - [sym__superscript_close] = ACTIONS(5087), - [sym__subscript_open] = ACTIONS(5087), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5087), - [sym__cite_author_in_text] = ACTIONS(5087), - [sym__cite_suppress_author] = ACTIONS(5087), - [sym__shortcode_open_escaped] = ACTIONS(5087), - [sym__shortcode_open] = ACTIONS(5087), - [sym__unclosed_span] = ACTIONS(5087), - [sym__strong_emphasis_open_star] = ACTIONS(5087), - [sym__strong_emphasis_open_underscore] = ACTIONS(5087), + [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(920)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__superscript_close] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [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__subscript_close] = 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(921)] = { - [sym__backslash_escape] = ACTIONS(5091), - [sym_entity_reference] = ACTIONS(5091), - [sym_numeric_character_reference] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(5091), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_BSLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym_BQUOTE] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [sym__newline_token] = ACTIONS(5091), - [aux_sym_insert_token1] = ACTIONS(5091), - [aux_sym_delete_token1] = ACTIONS(5091), - [aux_sym_highlight_token1] = ACTIONS(5091), - [aux_sym_edit_comment_token1] = ACTIONS(5091), - [anon_sym_CARET_LBRACK] = ACTIONS(5091), - [anon_sym_LBRACK_CARET] = ACTIONS(5091), - [sym_uri_autolink] = ACTIONS(5091), - [sym_email_autolink] = ACTIONS(5091), - [sym__whitespace_ge_2] = ACTIONS(5091), - [aux_sym__whitespace_token1] = ACTIONS(5093), - [sym__word_no_digit] = ACTIONS(5091), - [sym__digits] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), - [sym__code_span_start] = ACTIONS(5091), - [sym__emphasis_open_star] = ACTIONS(5091), - [sym__emphasis_open_underscore] = ACTIONS(5091), - [sym__strikeout_open] = ACTIONS(5091), - [sym__latex_span_start] = ACTIONS(5091), - [sym__single_quote_open] = ACTIONS(5091), - [sym__double_quote_open] = ACTIONS(5091), - [sym__superscript_open] = ACTIONS(5091), - [sym__superscript_close] = ACTIONS(5091), - [sym__subscript_open] = ACTIONS(5091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5091), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5091), - [sym__cite_author_in_text] = ACTIONS(5091), - [sym__cite_suppress_author] = ACTIONS(5091), - [sym__shortcode_open_escaped] = ACTIONS(5091), - [sym__shortcode_open] = ACTIONS(5091), - [sym__unclosed_span] = ACTIONS(5091), - [sym__strong_emphasis_open_star] = ACTIONS(5091), - [sym__strong_emphasis_open_underscore] = ACTIONS(5091), + [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__subscript_close] = 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(922)] = { - [sym__backslash_escape] = ACTIONS(5095), - [sym_entity_reference] = ACTIONS(5095), - [sym_numeric_character_reference] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_BSLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym_BQUOTE] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [sym__newline_token] = ACTIONS(5095), - [aux_sym_insert_token1] = ACTIONS(5095), - [aux_sym_delete_token1] = ACTIONS(5095), - [aux_sym_highlight_token1] = ACTIONS(5095), - [aux_sym_edit_comment_token1] = ACTIONS(5095), - [anon_sym_CARET_LBRACK] = ACTIONS(5095), - [anon_sym_LBRACK_CARET] = ACTIONS(5095), - [sym_uri_autolink] = ACTIONS(5095), - [sym_email_autolink] = ACTIONS(5095), - [sym__whitespace_ge_2] = ACTIONS(5095), - [aux_sym__whitespace_token1] = ACTIONS(5097), - [sym__word_no_digit] = ACTIONS(5095), - [sym__digits] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5095), - [sym__code_span_start] = ACTIONS(5095), - [sym__emphasis_open_star] = ACTIONS(5095), - [sym__emphasis_open_underscore] = ACTIONS(5095), - [sym__strikeout_open] = ACTIONS(5095), - [sym__latex_span_start] = ACTIONS(5095), - [sym__single_quote_open] = ACTIONS(5095), - [sym__double_quote_open] = ACTIONS(5095), - [sym__superscript_open] = ACTIONS(5095), - [sym__superscript_close] = ACTIONS(5095), - [sym__subscript_open] = ACTIONS(5095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5095), - [sym__cite_author_in_text] = ACTIONS(5095), - [sym__cite_suppress_author] = ACTIONS(5095), - [sym__shortcode_open_escaped] = ACTIONS(5095), - [sym__shortcode_open] = ACTIONS(5095), - [sym__unclosed_span] = ACTIONS(5095), - [sym__strong_emphasis_open_star] = ACTIONS(5095), - [sym__strong_emphasis_open_underscore] = ACTIONS(5095), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__subscript_close] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(923)] = { - [sym__backslash_escape] = ACTIONS(5099), - [sym_entity_reference] = ACTIONS(5099), - [sym_numeric_character_reference] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [sym__newline_token] = ACTIONS(5099), - [aux_sym_insert_token1] = ACTIONS(5099), - [aux_sym_delete_token1] = ACTIONS(5099), - [aux_sym_highlight_token1] = ACTIONS(5099), - [aux_sym_edit_comment_token1] = ACTIONS(5099), - [anon_sym_CARET_LBRACK] = ACTIONS(5099), - [anon_sym_LBRACK_CARET] = ACTIONS(5099), - [sym_uri_autolink] = ACTIONS(5099), - [sym_email_autolink] = ACTIONS(5099), - [sym__whitespace_ge_2] = ACTIONS(5099), - [aux_sym__whitespace_token1] = ACTIONS(5101), - [sym__word_no_digit] = ACTIONS(5099), - [sym__digits] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5099), - [sym__code_span_start] = ACTIONS(5099), - [sym__emphasis_open_star] = ACTIONS(5099), - [sym__emphasis_open_underscore] = ACTIONS(5099), - [sym__strikeout_open] = ACTIONS(5099), - [sym__latex_span_start] = ACTIONS(5099), - [sym__single_quote_open] = ACTIONS(5099), - [sym__double_quote_open] = ACTIONS(5099), - [sym__superscript_open] = ACTIONS(5099), - [sym__superscript_close] = ACTIONS(5099), - [sym__subscript_open] = ACTIONS(5099), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5099), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5099), - [sym__cite_author_in_text] = ACTIONS(5099), - [sym__cite_suppress_author] = ACTIONS(5099), - [sym__shortcode_open_escaped] = ACTIONS(5099), - [sym__shortcode_open] = ACTIONS(5099), - [sym__unclosed_span] = ACTIONS(5099), - [sym__strong_emphasis_open_star] = ACTIONS(5099), - [sym__strong_emphasis_open_underscore] = ACTIONS(5099), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__subscript_close] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(924)] = { - [sym__backslash_escape] = ACTIONS(5103), - [sym_entity_reference] = ACTIONS(5103), - [sym_numeric_character_reference] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(5103), - [anon_sym_POUND] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_BSLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [sym__newline_token] = ACTIONS(5103), - [aux_sym_insert_token1] = ACTIONS(5103), - [aux_sym_delete_token1] = ACTIONS(5103), - [aux_sym_highlight_token1] = ACTIONS(5103), - [aux_sym_edit_comment_token1] = ACTIONS(5103), - [anon_sym_CARET_LBRACK] = ACTIONS(5103), - [anon_sym_LBRACK_CARET] = ACTIONS(5103), - [sym_uri_autolink] = ACTIONS(5103), - [sym_email_autolink] = ACTIONS(5103), - [sym__whitespace_ge_2] = ACTIONS(5103), - [aux_sym__whitespace_token1] = ACTIONS(5105), - [sym__word_no_digit] = ACTIONS(5103), - [sym__digits] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5103), - [sym__code_span_start] = ACTIONS(5103), - [sym__emphasis_open_star] = ACTIONS(5103), - [sym__emphasis_open_underscore] = ACTIONS(5103), - [sym__strikeout_open] = ACTIONS(5103), - [sym__latex_span_start] = ACTIONS(5103), - [sym__single_quote_open] = ACTIONS(5103), - [sym__double_quote_open] = ACTIONS(5103), - [sym__superscript_open] = ACTIONS(5103), - [sym__superscript_close] = ACTIONS(5103), - [sym__subscript_open] = ACTIONS(5103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5103), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5103), - [sym__cite_author_in_text] = ACTIONS(5103), - [sym__cite_suppress_author] = ACTIONS(5103), - [sym__shortcode_open_escaped] = ACTIONS(5103), - [sym__shortcode_open] = ACTIONS(5103), - [sym__unclosed_span] = ACTIONS(5103), - [sym__strong_emphasis_open_star] = ACTIONS(5103), - [sym__strong_emphasis_open_underscore] = ACTIONS(5103), + [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(925)] = { - [sym__backslash_escape] = ACTIONS(5107), - [sym_entity_reference] = ACTIONS(5107), - [sym_numeric_character_reference] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_COLON] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_BSLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_BQUOTE] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_PIPE] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [sym__newline_token] = ACTIONS(5107), - [aux_sym_insert_token1] = ACTIONS(5107), - [aux_sym_delete_token1] = ACTIONS(5107), - [aux_sym_highlight_token1] = ACTIONS(5107), - [aux_sym_edit_comment_token1] = ACTIONS(5107), - [anon_sym_CARET_LBRACK] = ACTIONS(5107), - [anon_sym_LBRACK_CARET] = ACTIONS(5107), - [sym_uri_autolink] = ACTIONS(5107), - [sym_email_autolink] = ACTIONS(5107), - [sym__whitespace_ge_2] = ACTIONS(5107), - [aux_sym__whitespace_token1] = ACTIONS(5109), - [sym__word_no_digit] = ACTIONS(5107), - [sym__digits] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5107), - [sym__code_span_start] = ACTIONS(5107), - [sym__emphasis_open_star] = ACTIONS(5107), - [sym__emphasis_open_underscore] = ACTIONS(5107), - [sym__strikeout_open] = ACTIONS(5107), - [sym__latex_span_start] = ACTIONS(5107), - [sym__single_quote_open] = ACTIONS(5107), - [sym__double_quote_open] = ACTIONS(5107), - [sym__superscript_open] = ACTIONS(5107), - [sym__superscript_close] = ACTIONS(5107), - [sym__subscript_open] = ACTIONS(5107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5107), - [sym__cite_author_in_text] = ACTIONS(5107), - [sym__cite_suppress_author] = ACTIONS(5107), - [sym__shortcode_open_escaped] = ACTIONS(5107), - [sym__shortcode_open] = ACTIONS(5107), - [sym__unclosed_span] = ACTIONS(5107), - [sym__strong_emphasis_open_star] = ACTIONS(5107), - [sym__strong_emphasis_open_underscore] = ACTIONS(5107), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__subscript_close] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(926)] = { - [sym__backslash_escape] = ACTIONS(5111), - [sym_entity_reference] = ACTIONS(5111), - [sym_numeric_character_reference] = ACTIONS(5111), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym_BQUOTE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [sym__newline_token] = ACTIONS(5111), - [aux_sym_insert_token1] = ACTIONS(5111), - [aux_sym_delete_token1] = ACTIONS(5111), - [aux_sym_highlight_token1] = ACTIONS(5111), - [aux_sym_edit_comment_token1] = ACTIONS(5111), - [anon_sym_CARET_LBRACK] = ACTIONS(5111), - [anon_sym_LBRACK_CARET] = ACTIONS(5111), - [sym_uri_autolink] = ACTIONS(5111), - [sym_email_autolink] = ACTIONS(5111), - [sym__whitespace_ge_2] = ACTIONS(5111), - [aux_sym__whitespace_token1] = ACTIONS(5113), - [sym__word_no_digit] = ACTIONS(5111), - [sym__digits] = ACTIONS(5111), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [sym__code_span_start] = ACTIONS(5111), - [sym__emphasis_open_star] = ACTIONS(5111), - [sym__emphasis_open_underscore] = ACTIONS(5111), - [sym__strikeout_open] = ACTIONS(5111), - [sym__latex_span_start] = ACTIONS(5111), - [sym__single_quote_open] = ACTIONS(5111), - [sym__double_quote_open] = ACTIONS(5111), - [sym__superscript_open] = ACTIONS(5111), - [sym__superscript_close] = ACTIONS(5111), - [sym__subscript_open] = ACTIONS(5111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5111), - [sym__cite_author_in_text] = ACTIONS(5111), - [sym__cite_suppress_author] = ACTIONS(5111), - [sym__shortcode_open_escaped] = ACTIONS(5111), - [sym__shortcode_open] = ACTIONS(5111), - [sym__unclosed_span] = ACTIONS(5111), - [sym__strong_emphasis_open_star] = ACTIONS(5111), - [sym__strong_emphasis_open_underscore] = ACTIONS(5111), + [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(927)] = { - [sym__backslash_escape] = ACTIONS(5115), - [sym_entity_reference] = ACTIONS(5115), - [sym_numeric_character_reference] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(5115), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_QMARK] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym_BQUOTE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [sym__newline_token] = ACTIONS(5115), - [aux_sym_insert_token1] = ACTIONS(5115), - [aux_sym_delete_token1] = ACTIONS(5115), - [aux_sym_highlight_token1] = ACTIONS(5115), - [aux_sym_edit_comment_token1] = ACTIONS(5115), - [anon_sym_CARET_LBRACK] = ACTIONS(5115), - [anon_sym_LBRACK_CARET] = ACTIONS(5115), - [sym_uri_autolink] = ACTIONS(5115), - [sym_email_autolink] = ACTIONS(5115), - [sym__whitespace_ge_2] = ACTIONS(5115), - [aux_sym__whitespace_token1] = ACTIONS(5117), - [sym__word_no_digit] = ACTIONS(5115), - [sym__digits] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5115), - [sym__code_span_start] = ACTIONS(5115), - [sym__emphasis_open_star] = ACTIONS(5115), - [sym__emphasis_open_underscore] = ACTIONS(5115), - [sym__strikeout_open] = ACTIONS(5115), - [sym__latex_span_start] = ACTIONS(5115), - [sym__single_quote_open] = ACTIONS(5115), - [sym__double_quote_open] = ACTIONS(5115), - [sym__superscript_open] = ACTIONS(5115), - [sym__superscript_close] = ACTIONS(5115), - [sym__subscript_open] = ACTIONS(5115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5115), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5115), - [sym__cite_author_in_text] = ACTIONS(5115), - [sym__cite_suppress_author] = ACTIONS(5115), - [sym__shortcode_open_escaped] = ACTIONS(5115), - [sym__shortcode_open] = ACTIONS(5115), - [sym__unclosed_span] = ACTIONS(5115), - [sym__strong_emphasis_open_star] = ACTIONS(5115), - [sym__strong_emphasis_open_underscore] = ACTIONS(5115), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__subscript_close] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(928)] = { - [sym__backslash_escape] = ACTIONS(5119), - [sym_entity_reference] = ACTIONS(5119), - [sym_numeric_character_reference] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_AMP] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [sym__newline_token] = ACTIONS(5119), - [aux_sym_insert_token1] = ACTIONS(5119), - [aux_sym_delete_token1] = ACTIONS(5119), - [aux_sym_highlight_token1] = ACTIONS(5119), - [aux_sym_edit_comment_token1] = ACTIONS(5119), - [anon_sym_CARET_LBRACK] = ACTIONS(5119), - [anon_sym_LBRACK_CARET] = ACTIONS(5119), - [sym_uri_autolink] = ACTIONS(5119), - [sym_email_autolink] = ACTIONS(5119), - [sym__whitespace_ge_2] = ACTIONS(5119), - [aux_sym__whitespace_token1] = ACTIONS(5121), - [sym__word_no_digit] = ACTIONS(5119), - [sym__digits] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5119), - [sym__code_span_start] = ACTIONS(5119), - [sym__emphasis_open_star] = ACTIONS(5119), - [sym__emphasis_open_underscore] = ACTIONS(5119), - [sym__strikeout_open] = ACTIONS(5119), - [sym__latex_span_start] = ACTIONS(5119), - [sym__single_quote_open] = ACTIONS(5119), - [sym__double_quote_open] = ACTIONS(5119), - [sym__superscript_open] = ACTIONS(5119), - [sym__superscript_close] = ACTIONS(5119), - [sym__subscript_open] = ACTIONS(5119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5119), - [sym__cite_author_in_text] = ACTIONS(5119), - [sym__cite_suppress_author] = ACTIONS(5119), - [sym__shortcode_open_escaped] = ACTIONS(5119), - [sym__shortcode_open] = ACTIONS(5119), - [sym__unclosed_span] = ACTIONS(5119), - [sym__strong_emphasis_open_star] = ACTIONS(5119), - [sym__strong_emphasis_open_underscore] = ACTIONS(5119), + [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(929)] = { - [sym__backslash_escape] = ACTIONS(5123), - [sym_entity_reference] = ACTIONS(5123), - [sym_numeric_character_reference] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_DQUOTE] = ACTIONS(5123), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym_BQUOTE] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [sym__newline_token] = ACTIONS(5123), - [aux_sym_insert_token1] = ACTIONS(5123), - [aux_sym_delete_token1] = ACTIONS(5123), - [aux_sym_highlight_token1] = ACTIONS(5123), - [aux_sym_edit_comment_token1] = ACTIONS(5123), - [anon_sym_CARET_LBRACK] = ACTIONS(5123), - [anon_sym_LBRACK_CARET] = ACTIONS(5123), - [sym_uri_autolink] = ACTIONS(5123), - [sym_email_autolink] = ACTIONS(5123), - [sym__whitespace_ge_2] = ACTIONS(5123), - [aux_sym__whitespace_token1] = ACTIONS(5125), - [sym__word_no_digit] = ACTIONS(5123), - [sym__digits] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), - [sym__code_span_start] = ACTIONS(5123), - [sym__emphasis_open_star] = ACTIONS(5123), - [sym__emphasis_open_underscore] = ACTIONS(5123), - [sym__strikeout_open] = ACTIONS(5123), - [sym__latex_span_start] = ACTIONS(5123), - [sym__single_quote_open] = ACTIONS(5123), - [sym__double_quote_open] = ACTIONS(5123), - [sym__superscript_open] = ACTIONS(5123), - [sym__superscript_close] = ACTIONS(5123), - [sym__subscript_open] = ACTIONS(5123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5123), - [sym__cite_author_in_text] = ACTIONS(5123), - [sym__cite_suppress_author] = ACTIONS(5123), - [sym__shortcode_open_escaped] = ACTIONS(5123), - [sym__shortcode_open] = ACTIONS(5123), - [sym__unclosed_span] = ACTIONS(5123), - [sym__strong_emphasis_open_star] = ACTIONS(5123), - [sym__strong_emphasis_open_underscore] = ACTIONS(5123), + [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__subscript_close] = 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(930)] = { + [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__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__subscript_close] = 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(931)] = { + [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__subscript_close] = 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(932)] = { + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__double_quote_close] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), + }, + [STATE(933)] = { + [ts_builtin_sym_end] = ACTIONS(4631), [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -111217,7 +110465,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(4631), [anon_sym_AMP] = ACTIONS(4633), [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_STAR] = ACTIONS(4631), [anon_sym_PLUS] = ACTIONS(4631), [anon_sym_COMMA] = ACTIONS(4631), [anon_sym_DASH] = ACTIONS(4633), @@ -111260,7 +110507,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__single_quote_open] = ACTIONS(4631), [sym__double_quote_open] = ACTIONS(4631), [sym__superscript_open] = ACTIONS(4631), - [sym__superscript_close] = 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), @@ -111272,5175 +110518,6037 @@ 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(931)] = { - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__superscript_close] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), - }, - [STATE(932)] = { - [sym__backslash_escape] = ACTIONS(5127), - [sym_entity_reference] = ACTIONS(5127), - [sym_numeric_character_reference] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_DQUOTE] = ACTIONS(5127), - [anon_sym_POUND] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_PERCENT] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_QMARK] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym_BQUOTE] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym__newline_token] = ACTIONS(5127), - [aux_sym_insert_token1] = ACTIONS(5127), - [aux_sym_delete_token1] = ACTIONS(5127), - [aux_sym_highlight_token1] = ACTIONS(5127), - [aux_sym_edit_comment_token1] = ACTIONS(5127), - [anon_sym_CARET_LBRACK] = ACTIONS(5127), - [anon_sym_LBRACK_CARET] = ACTIONS(5127), - [sym_uri_autolink] = ACTIONS(5127), - [sym_email_autolink] = ACTIONS(5127), - [sym__whitespace_ge_2] = ACTIONS(5127), - [aux_sym__whitespace_token1] = ACTIONS(5129), - [sym__word_no_digit] = ACTIONS(5127), - [sym__digits] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5127), - [sym__code_span_start] = ACTIONS(5127), - [sym__emphasis_open_star] = ACTIONS(5127), - [sym__emphasis_open_underscore] = ACTIONS(5127), - [sym__strikeout_open] = ACTIONS(5127), - [sym__latex_span_start] = ACTIONS(5127), - [sym__single_quote_open] = ACTIONS(5127), - [sym__double_quote_open] = ACTIONS(5127), - [sym__superscript_open] = ACTIONS(5127), - [sym__superscript_close] = ACTIONS(5127), - [sym__subscript_open] = ACTIONS(5127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5127), - [sym__cite_author_in_text] = ACTIONS(5127), - [sym__cite_suppress_author] = ACTIONS(5127), - [sym__shortcode_open_escaped] = ACTIONS(5127), - [sym__shortcode_open] = ACTIONS(5127), - [sym__unclosed_span] = ACTIONS(5127), - [sym__strong_emphasis_open_star] = ACTIONS(5127), - [sym__strong_emphasis_open_underscore] = ACTIONS(5127), - }, - [STATE(933)] = { - [sym__backslash_escape] = ACTIONS(5131), - [sym_entity_reference] = ACTIONS(5131), - [sym_numeric_character_reference] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(5131), - [anon_sym_POUND] = ACTIONS(5131), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(5133), - [anon_sym_SQUOTE] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_QMARK] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(5133), - [anon_sym_BQUOTE] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_PIPE] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [sym__newline_token] = ACTIONS(5131), - [aux_sym_insert_token1] = ACTIONS(5131), - [aux_sym_delete_token1] = ACTIONS(5131), - [aux_sym_highlight_token1] = ACTIONS(5131), - [aux_sym_edit_comment_token1] = ACTIONS(5131), - [anon_sym_CARET_LBRACK] = ACTIONS(5131), - [anon_sym_LBRACK_CARET] = ACTIONS(5131), - [sym_uri_autolink] = ACTIONS(5131), - [sym_email_autolink] = ACTIONS(5131), - [sym__whitespace_ge_2] = ACTIONS(5131), - [aux_sym__whitespace_token1] = ACTIONS(5133), - [sym__word_no_digit] = ACTIONS(5131), - [sym__digits] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), - [sym__code_span_start] = ACTIONS(5131), - [sym__emphasis_open_star] = ACTIONS(5131), - [sym__emphasis_open_underscore] = ACTIONS(5131), - [sym__strikeout_open] = ACTIONS(5131), - [sym__latex_span_start] = ACTIONS(5131), - [sym__single_quote_open] = ACTIONS(5131), - [sym__double_quote_open] = ACTIONS(5131), - [sym__superscript_open] = ACTIONS(5131), - [sym__superscript_close] = ACTIONS(5131), - [sym__subscript_open] = ACTIONS(5131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5131), - [sym__cite_author_in_text] = ACTIONS(5131), - [sym__cite_suppress_author] = ACTIONS(5131), - [sym__shortcode_open_escaped] = ACTIONS(5131), - [sym__shortcode_open] = ACTIONS(5131), - [sym__unclosed_span] = ACTIONS(5131), - [sym__strong_emphasis_open_star] = ACTIONS(5131), - [sym__strong_emphasis_open_underscore] = ACTIONS(5131), - }, [STATE(934)] = { - [sym__backslash_escape] = ACTIONS(5135), - [sym_entity_reference] = ACTIONS(5135), - [sym_numeric_character_reference] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_AMP] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_QMARK] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH] = ACTIONS(5137), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [sym__newline_token] = ACTIONS(5135), - [aux_sym_insert_token1] = ACTIONS(5135), - [aux_sym_delete_token1] = ACTIONS(5135), - [aux_sym_highlight_token1] = ACTIONS(5135), - [aux_sym_edit_comment_token1] = ACTIONS(5135), - [anon_sym_CARET_LBRACK] = ACTIONS(5135), - [anon_sym_LBRACK_CARET] = ACTIONS(5135), - [sym_uri_autolink] = ACTIONS(5135), - [sym_email_autolink] = ACTIONS(5135), - [sym__whitespace_ge_2] = ACTIONS(5135), - [aux_sym__whitespace_token1] = ACTIONS(5137), - [sym__word_no_digit] = ACTIONS(5135), - [sym__digits] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5135), - [sym__code_span_start] = ACTIONS(5135), - [sym__emphasis_open_star] = ACTIONS(5135), - [sym__emphasis_open_underscore] = ACTIONS(5135), - [sym__strikeout_open] = ACTIONS(5135), - [sym__latex_span_start] = ACTIONS(5135), - [sym__single_quote_open] = ACTIONS(5135), - [sym__double_quote_open] = ACTIONS(5135), - [sym__superscript_open] = ACTIONS(5135), - [sym__superscript_close] = ACTIONS(5135), - [sym__subscript_open] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5135), - [sym__cite_author_in_text] = ACTIONS(5135), - [sym__cite_suppress_author] = ACTIONS(5135), - [sym__shortcode_open_escaped] = ACTIONS(5135), - [sym__shortcode_open] = ACTIONS(5135), - [sym__unclosed_span] = ACTIONS(5135), - [sym__strong_emphasis_open_star] = ACTIONS(5135), - [sym__strong_emphasis_open_underscore] = ACTIONS(5135), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__double_quote_close] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(935)] = { - [sym__backslash_escape] = ACTIONS(5139), - [sym_entity_reference] = ACTIONS(5139), - [sym_numeric_character_reference] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_DQUOTE] = ACTIONS(5139), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH] = ACTIONS(5141), - [anon_sym_CARET] = ACTIONS(5141), - [anon_sym_BQUOTE] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_RPAREN] = ACTIONS(5139), - [sym__newline_token] = ACTIONS(5139), - [aux_sym_insert_token1] = ACTIONS(5139), - [aux_sym_delete_token1] = ACTIONS(5139), - [aux_sym_highlight_token1] = ACTIONS(5139), - [aux_sym_edit_comment_token1] = ACTIONS(5139), - [anon_sym_CARET_LBRACK] = ACTIONS(5139), - [anon_sym_LBRACK_CARET] = ACTIONS(5139), - [sym_uri_autolink] = ACTIONS(5139), - [sym_email_autolink] = ACTIONS(5139), - [sym__whitespace_ge_2] = ACTIONS(5139), - [aux_sym__whitespace_token1] = ACTIONS(5141), - [sym__word_no_digit] = ACTIONS(5139), - [sym__digits] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5141), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5139), - [sym__code_span_start] = ACTIONS(5139), - [sym__emphasis_open_star] = ACTIONS(5139), - [sym__emphasis_open_underscore] = ACTIONS(5139), - [sym__strikeout_open] = ACTIONS(5139), - [sym__latex_span_start] = ACTIONS(5139), - [sym__single_quote_open] = ACTIONS(5139), - [sym__double_quote_open] = ACTIONS(5139), - [sym__superscript_open] = ACTIONS(5139), - [sym__superscript_close] = ACTIONS(5139), - [sym__subscript_open] = ACTIONS(5139), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5139), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5139), - [sym__cite_author_in_text] = ACTIONS(5139), - [sym__cite_suppress_author] = ACTIONS(5139), - [sym__shortcode_open_escaped] = ACTIONS(5139), - [sym__shortcode_open] = ACTIONS(5139), - [sym__unclosed_span] = ACTIONS(5139), - [sym__strong_emphasis_open_star] = ACTIONS(5139), - [sym__strong_emphasis_open_underscore] = ACTIONS(5139), + [ts_builtin_sym_end] = ACTIONS(4223), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(936)] = { - [sym__backslash_escape] = ACTIONS(5143), - [sym_entity_reference] = ACTIONS(5143), - [sym_numeric_character_reference] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_DQUOTE] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_PERCENT] = ACTIONS(5143), - [anon_sym_AMP] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH] = ACTIONS(5145), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym_BQUOTE] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [sym__newline_token] = ACTIONS(5143), - [aux_sym_insert_token1] = ACTIONS(5143), - [aux_sym_delete_token1] = ACTIONS(5143), - [aux_sym_highlight_token1] = ACTIONS(5143), - [aux_sym_edit_comment_token1] = ACTIONS(5143), - [anon_sym_CARET_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_CARET] = ACTIONS(5143), - [sym_uri_autolink] = ACTIONS(5143), - [sym_email_autolink] = ACTIONS(5143), - [sym__whitespace_ge_2] = ACTIONS(5143), - [aux_sym__whitespace_token1] = ACTIONS(5145), - [sym__word_no_digit] = ACTIONS(5143), - [sym__digits] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5143), - [sym__code_span_start] = ACTIONS(5143), - [sym__emphasis_open_star] = ACTIONS(5143), - [sym__emphasis_open_underscore] = ACTIONS(5143), - [sym__strikeout_open] = ACTIONS(5143), - [sym__latex_span_start] = ACTIONS(5143), - [sym__single_quote_open] = ACTIONS(5143), - [sym__double_quote_open] = ACTIONS(5143), - [sym__superscript_open] = ACTIONS(5143), - [sym__superscript_close] = ACTIONS(5143), - [sym__subscript_open] = ACTIONS(5143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5143), - [sym__cite_author_in_text] = ACTIONS(5143), - [sym__cite_suppress_author] = ACTIONS(5143), - [sym__shortcode_open_escaped] = ACTIONS(5143), - [sym__shortcode_open] = ACTIONS(5143), - [sym__unclosed_span] = ACTIONS(5143), - [sym__strong_emphasis_open_star] = ACTIONS(5143), - [sym__strong_emphasis_open_underscore] = ACTIONS(5143), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_close_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(937)] = { - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__superscript_close] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [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(938)] = { - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__superscript_close] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [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__emphasis_close_star] = 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(939)] = { - [ts_builtin_sym_end] = ACTIONS(5139), - [sym__backslash_escape] = ACTIONS(5139), - [sym_entity_reference] = ACTIONS(5139), - [sym_numeric_character_reference] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_DQUOTE] = ACTIONS(5139), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH] = ACTIONS(5141), - [anon_sym_CARET] = ACTIONS(5141), - [anon_sym_BQUOTE] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_RPAREN] = ACTIONS(5139), - [sym__newline_token] = ACTIONS(5139), - [aux_sym_insert_token1] = ACTIONS(5139), - [aux_sym_delete_token1] = ACTIONS(5139), - [aux_sym_highlight_token1] = ACTIONS(5139), - [aux_sym_edit_comment_token1] = ACTIONS(5139), - [anon_sym_CARET_LBRACK] = ACTIONS(5139), - [anon_sym_LBRACK_CARET] = ACTIONS(5139), - [sym_uri_autolink] = ACTIONS(5139), - [sym_email_autolink] = ACTIONS(5139), - [sym__whitespace_ge_2] = ACTIONS(5139), - [aux_sym__whitespace_token1] = ACTIONS(5141), - [sym__word_no_digit] = ACTIONS(5139), - [sym__digits] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5141), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5139), - [sym__code_span_start] = ACTIONS(5139), - [sym__emphasis_open_star] = ACTIONS(5139), - [sym__emphasis_open_underscore] = ACTIONS(5139), - [sym__strikeout_open] = ACTIONS(5139), - [sym__latex_span_start] = ACTIONS(5139), - [sym__single_quote_open] = ACTIONS(5139), - [sym__double_quote_open] = ACTIONS(5139), - [sym__superscript_open] = ACTIONS(5139), - [sym__subscript_open] = ACTIONS(5139), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5139), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5139), - [sym__cite_author_in_text] = ACTIONS(5139), - [sym__cite_suppress_author] = ACTIONS(5139), - [sym__shortcode_open_escaped] = ACTIONS(5139), - [sym__shortcode_open] = ACTIONS(5139), - [sym__unclosed_span] = ACTIONS(5139), - [sym__strong_emphasis_open_star] = ACTIONS(5139), - [sym__strong_emphasis_open_underscore] = ACTIONS(5139), + [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(940)] = { - [sym__backslash_escape] = ACTIONS(5147), - [sym_entity_reference] = ACTIONS(5147), - [sym_numeric_character_reference] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_DQUOTE] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [sym__newline_token] = ACTIONS(5147), - [aux_sym_insert_token1] = ACTIONS(5147), - [aux_sym_delete_token1] = ACTIONS(5147), - [aux_sym_highlight_token1] = ACTIONS(5147), - [aux_sym_edit_comment_token1] = ACTIONS(5147), - [anon_sym_CARET_LBRACK] = ACTIONS(5147), - [anon_sym_LBRACK_CARET] = ACTIONS(5147), - [sym_uri_autolink] = ACTIONS(5147), - [sym_email_autolink] = ACTIONS(5147), - [sym__whitespace_ge_2] = ACTIONS(5147), - [aux_sym__whitespace_token1] = ACTIONS(5149), - [sym__word_no_digit] = ACTIONS(5147), - [sym__digits] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5147), - [sym__code_span_start] = ACTIONS(5147), - [sym__emphasis_open_star] = ACTIONS(5147), - [sym__emphasis_open_underscore] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5147), - [sym__latex_span_start] = ACTIONS(5147), - [sym__single_quote_open] = ACTIONS(5147), - [sym__double_quote_open] = ACTIONS(5147), - [sym__superscript_open] = ACTIONS(5147), - [sym__superscript_close] = ACTIONS(5147), - [sym__subscript_open] = ACTIONS(5147), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5147), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5147), - [sym__cite_author_in_text] = ACTIONS(5147), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__shortcode_open_escaped] = ACTIONS(5147), - [sym__shortcode_open] = ACTIONS(5147), - [sym__unclosed_span] = ACTIONS(5147), - [sym__strong_emphasis_open_star] = ACTIONS(5147), - [sym__strong_emphasis_open_underscore] = ACTIONS(5147), + [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__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_close_star] = ACTIONS(4579), + [sym__strong_emphasis_open_underscore] = ACTIONS(4579), }, [STATE(941)] = { - [sym__backslash_escape] = ACTIONS(5151), - [sym_entity_reference] = ACTIONS(5151), - [sym_numeric_character_reference] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_DQUOTE] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_PERCENT] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_QMARK] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [sym__newline_token] = ACTIONS(5151), - [aux_sym_insert_token1] = ACTIONS(5151), - [aux_sym_delete_token1] = ACTIONS(5151), - [aux_sym_highlight_token1] = ACTIONS(5151), - [aux_sym_edit_comment_token1] = ACTIONS(5151), - [anon_sym_CARET_LBRACK] = ACTIONS(5151), - [anon_sym_LBRACK_CARET] = ACTIONS(5151), - [sym_uri_autolink] = ACTIONS(5151), - [sym_email_autolink] = ACTIONS(5151), - [sym__whitespace_ge_2] = ACTIONS(5151), - [aux_sym__whitespace_token1] = ACTIONS(5153), - [sym__word_no_digit] = ACTIONS(5151), - [sym__digits] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5151), - [sym__code_span_start] = ACTIONS(5151), - [sym__emphasis_open_star] = ACTIONS(5151), - [sym__emphasis_open_underscore] = ACTIONS(5151), - [sym__strikeout_open] = ACTIONS(5151), - [sym__latex_span_start] = ACTIONS(5151), - [sym__single_quote_open] = ACTIONS(5151), - [sym__double_quote_open] = ACTIONS(5151), - [sym__superscript_open] = ACTIONS(5151), - [sym__superscript_close] = ACTIONS(5151), - [sym__subscript_open] = ACTIONS(5151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5151), - [sym__cite_author_in_text] = ACTIONS(5151), - [sym__cite_suppress_author] = ACTIONS(5151), - [sym__shortcode_open_escaped] = ACTIONS(5151), - [sym__shortcode_open] = ACTIONS(5151), - [sym__unclosed_span] = ACTIONS(5151), - [sym__strong_emphasis_open_star] = ACTIONS(5151), - [sym__strong_emphasis_open_underscore] = ACTIONS(5151), + [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(942)] = { - [sym__backslash_escape] = ACTIONS(5155), - [sym_entity_reference] = ACTIONS(5155), - [sym_numeric_character_reference] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_QMARK] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [sym__newline_token] = ACTIONS(5155), - [aux_sym_insert_token1] = ACTIONS(5155), - [aux_sym_delete_token1] = ACTIONS(5155), - [aux_sym_highlight_token1] = ACTIONS(5155), - [aux_sym_edit_comment_token1] = ACTIONS(5155), - [anon_sym_CARET_LBRACK] = ACTIONS(5155), - [anon_sym_LBRACK_CARET] = ACTIONS(5155), - [sym_uri_autolink] = ACTIONS(5155), - [sym_email_autolink] = ACTIONS(5155), - [sym__whitespace_ge_2] = ACTIONS(5155), - [aux_sym__whitespace_token1] = ACTIONS(5157), - [sym__word_no_digit] = ACTIONS(5155), - [sym__digits] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5155), - [sym__code_span_start] = ACTIONS(5155), - [sym__emphasis_open_star] = ACTIONS(5155), - [sym__emphasis_open_underscore] = ACTIONS(5155), - [sym__strikeout_open] = ACTIONS(5155), - [sym__latex_span_start] = ACTIONS(5155), - [sym__single_quote_open] = ACTIONS(5155), - [sym__double_quote_open] = ACTIONS(5155), - [sym__superscript_open] = ACTIONS(5155), - [sym__superscript_close] = ACTIONS(5155), - [sym__subscript_open] = ACTIONS(5155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5155), - [sym__cite_author_in_text] = ACTIONS(5155), - [sym__cite_suppress_author] = ACTIONS(5155), - [sym__shortcode_open_escaped] = ACTIONS(5155), - [sym__shortcode_open] = ACTIONS(5155), - [sym__unclosed_span] = ACTIONS(5155), - [sym__strong_emphasis_open_star] = ACTIONS(5155), - [sym__strong_emphasis_open_underscore] = ACTIONS(5155), + [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(943)] = { - [sym__backslash_escape] = ACTIONS(5159), - [sym_entity_reference] = ACTIONS(5159), - [sym_numeric_character_reference] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_DQUOTE] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_QMARK] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym__newline_token] = ACTIONS(5159), - [aux_sym_insert_token1] = ACTIONS(5159), - [aux_sym_delete_token1] = ACTIONS(5159), - [aux_sym_highlight_token1] = ACTIONS(5159), - [aux_sym_edit_comment_token1] = ACTIONS(5159), - [anon_sym_CARET_LBRACK] = ACTIONS(5159), - [anon_sym_LBRACK_CARET] = ACTIONS(5159), - [sym_uri_autolink] = ACTIONS(5159), - [sym_email_autolink] = ACTIONS(5159), - [sym__whitespace_ge_2] = ACTIONS(5159), - [aux_sym__whitespace_token1] = ACTIONS(5161), - [sym__word_no_digit] = ACTIONS(5159), - [sym__digits] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5159), - [sym__code_span_start] = ACTIONS(5159), - [sym__emphasis_open_star] = ACTIONS(5159), - [sym__emphasis_open_underscore] = ACTIONS(5159), - [sym__strikeout_open] = ACTIONS(5159), - [sym__latex_span_start] = ACTIONS(5159), - [sym__single_quote_open] = ACTIONS(5159), - [sym__double_quote_open] = ACTIONS(5159), - [sym__superscript_open] = ACTIONS(5159), - [sym__superscript_close] = ACTIONS(5159), - [sym__subscript_open] = ACTIONS(5159), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5159), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5159), - [sym__cite_author_in_text] = ACTIONS(5159), - [sym__cite_suppress_author] = ACTIONS(5159), - [sym__shortcode_open_escaped] = ACTIONS(5159), - [sym__shortcode_open] = ACTIONS(5159), - [sym__unclosed_span] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5159), - [sym__strong_emphasis_open_underscore] = ACTIONS(5159), + [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(944)] = { - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__superscript_close] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [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_close_star] = ACTIONS(4571), + [sym__strong_emphasis_open_underscore] = ACTIONS(4571), }, [STATE(945)] = { - [ts_builtin_sym_end] = ACTIONS(5143), - [sym__backslash_escape] = ACTIONS(5143), - [sym_entity_reference] = ACTIONS(5143), - [sym_numeric_character_reference] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_DQUOTE] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_PERCENT] = ACTIONS(5143), - [anon_sym_AMP] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH] = ACTIONS(5145), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym_BQUOTE] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [sym__newline_token] = ACTIONS(5143), - [aux_sym_insert_token1] = ACTIONS(5143), - [aux_sym_delete_token1] = ACTIONS(5143), - [aux_sym_highlight_token1] = ACTIONS(5143), - [aux_sym_edit_comment_token1] = ACTIONS(5143), - [anon_sym_CARET_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_CARET] = ACTIONS(5143), - [sym_uri_autolink] = ACTIONS(5143), - [sym_email_autolink] = ACTIONS(5143), - [sym__whitespace_ge_2] = ACTIONS(5143), - [aux_sym__whitespace_token1] = ACTIONS(5145), - [sym__word_no_digit] = ACTIONS(5143), - [sym__digits] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5143), - [sym__code_span_start] = ACTIONS(5143), - [sym__emphasis_open_star] = ACTIONS(5143), - [sym__emphasis_open_underscore] = ACTIONS(5143), - [sym__strikeout_open] = ACTIONS(5143), - [sym__latex_span_start] = ACTIONS(5143), - [sym__single_quote_open] = ACTIONS(5143), - [sym__double_quote_open] = ACTIONS(5143), - [sym__superscript_open] = ACTIONS(5143), - [sym__subscript_open] = ACTIONS(5143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5143), - [sym__cite_author_in_text] = ACTIONS(5143), - [sym__cite_suppress_author] = ACTIONS(5143), - [sym__shortcode_open_escaped] = ACTIONS(5143), - [sym__shortcode_open] = ACTIONS(5143), - [sym__unclosed_span] = ACTIONS(5143), - [sym__strong_emphasis_open_star] = ACTIONS(5143), - [sym__strong_emphasis_open_underscore] = ACTIONS(5143), + [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(946)] = { - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__superscript_close] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [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_close_star] = ACTIONS(4591), + [sym__strong_emphasis_open_underscore] = ACTIONS(4591), }, [STATE(947)] = { - [sym__backslash_escape] = ACTIONS(5163), - [sym_entity_reference] = ACTIONS(5163), - [sym_numeric_character_reference] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_PERCENT] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym_BQUOTE] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [sym__newline_token] = ACTIONS(5163), - [aux_sym_insert_token1] = ACTIONS(5163), - [aux_sym_delete_token1] = ACTIONS(5163), - [aux_sym_highlight_token1] = ACTIONS(5163), - [aux_sym_edit_comment_token1] = ACTIONS(5163), - [anon_sym_CARET_LBRACK] = ACTIONS(5163), - [anon_sym_LBRACK_CARET] = ACTIONS(5163), - [sym_uri_autolink] = ACTIONS(5163), - [sym_email_autolink] = ACTIONS(5163), - [sym__whitespace_ge_2] = ACTIONS(5163), - [aux_sym__whitespace_token1] = ACTIONS(5165), - [sym__word_no_digit] = ACTIONS(5163), - [sym__digits] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5163), - [sym__code_span_start] = ACTIONS(5163), - [sym__emphasis_open_star] = ACTIONS(5163), - [sym__emphasis_open_underscore] = ACTIONS(5163), - [sym__strikeout_open] = ACTIONS(5163), - [sym__latex_span_start] = ACTIONS(5163), - [sym__single_quote_open] = ACTIONS(5163), - [sym__double_quote_open] = ACTIONS(5163), - [sym__superscript_open] = ACTIONS(5163), - [sym__superscript_close] = ACTIONS(5163), - [sym__subscript_open] = ACTIONS(5163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5163), - [sym__cite_author_in_text] = ACTIONS(5163), - [sym__cite_suppress_author] = ACTIONS(5163), - [sym__shortcode_open_escaped] = ACTIONS(5163), - [sym__shortcode_open] = ACTIONS(5163), - [sym__unclosed_span] = ACTIONS(5163), - [sym__strong_emphasis_open_star] = ACTIONS(5163), - [sym__strong_emphasis_open_underscore] = ACTIONS(5163), + [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_close_star] = ACTIONS(4595), + [sym__strong_emphasis_open_underscore] = ACTIONS(4595), }, [STATE(948)] = { - [sym__backslash_escape] = ACTIONS(5167), - [sym_entity_reference] = ACTIONS(5167), - [sym_numeric_character_reference] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_POUND] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_PERCENT] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_QMARK] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [sym__newline_token] = ACTIONS(5167), - [aux_sym_insert_token1] = ACTIONS(5167), - [aux_sym_delete_token1] = ACTIONS(5167), - [aux_sym_highlight_token1] = ACTIONS(5167), - [aux_sym_edit_comment_token1] = ACTIONS(5167), - [anon_sym_CARET_LBRACK] = ACTIONS(5167), - [anon_sym_LBRACK_CARET] = ACTIONS(5167), - [sym_uri_autolink] = ACTIONS(5167), - [sym_email_autolink] = ACTIONS(5167), - [sym__whitespace_ge_2] = ACTIONS(5167), - [aux_sym__whitespace_token1] = ACTIONS(5169), - [sym__word_no_digit] = ACTIONS(5167), - [sym__digits] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5169), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), - [sym__code_span_start] = ACTIONS(5167), - [sym__emphasis_open_star] = ACTIONS(5167), - [sym__emphasis_open_underscore] = ACTIONS(5167), - [sym__strikeout_open] = ACTIONS(5167), - [sym__latex_span_start] = ACTIONS(5167), - [sym__single_quote_open] = ACTIONS(5167), - [sym__double_quote_open] = ACTIONS(5167), - [sym__superscript_open] = ACTIONS(5167), - [sym__superscript_close] = ACTIONS(5167), - [sym__subscript_open] = ACTIONS(5167), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5167), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5167), - [sym__cite_author_in_text] = ACTIONS(5167), - [sym__cite_suppress_author] = ACTIONS(5167), - [sym__shortcode_open_escaped] = ACTIONS(5167), - [sym__shortcode_open] = ACTIONS(5167), - [sym__unclosed_span] = ACTIONS(5167), - [sym__strong_emphasis_open_star] = ACTIONS(5167), - [sym__strong_emphasis_open_underscore] = ACTIONS(5167), + [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_close_star] = ACTIONS(4599), + [sym__strong_emphasis_open_underscore] = ACTIONS(4599), }, [STATE(949)] = { - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__superscript_close] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [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_close_star] = ACTIONS(4603), + [sym__strong_emphasis_open_underscore] = ACTIONS(4603), }, [STATE(950)] = { - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__superscript_close] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [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_close_star] = ACTIONS(4607), + [sym__strong_emphasis_open_underscore] = ACTIONS(4607), }, [STATE(951)] = { - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__superscript_close] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [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(952)] = { - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__superscript_close] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [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_close_star] = ACTIONS(4611), + [sym__strong_emphasis_open_underscore] = ACTIONS(4611), }, [STATE(953)] = { - [sym__backslash_escape] = ACTIONS(5171), - [sym_entity_reference] = ACTIONS(5171), - [sym_numeric_character_reference] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [anon_sym_POUND] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_QMARK] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH] = ACTIONS(5173), - [anon_sym_CARET] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [sym__newline_token] = ACTIONS(5171), - [aux_sym_insert_token1] = ACTIONS(5171), - [aux_sym_delete_token1] = ACTIONS(5171), - [aux_sym_highlight_token1] = ACTIONS(5171), - [aux_sym_edit_comment_token1] = ACTIONS(5171), - [anon_sym_CARET_LBRACK] = ACTIONS(5171), - [anon_sym_LBRACK_CARET] = ACTIONS(5171), - [sym_uri_autolink] = ACTIONS(5171), - [sym_email_autolink] = ACTIONS(5171), - [sym__whitespace_ge_2] = ACTIONS(5171), - [aux_sym__whitespace_token1] = ACTIONS(5173), - [sym__word_no_digit] = ACTIONS(5171), - [sym__digits] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5171), - [sym__code_span_start] = ACTIONS(5171), - [sym__emphasis_open_star] = ACTIONS(5171), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym__strikeout_open] = ACTIONS(5171), - [sym__latex_span_start] = ACTIONS(5171), - [sym__single_quote_open] = ACTIONS(5171), - [sym__double_quote_open] = ACTIONS(5171), - [sym__superscript_open] = ACTIONS(5171), - [sym__superscript_close] = ACTIONS(5171), - [sym__subscript_open] = ACTIONS(5171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5171), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5171), - [sym__cite_author_in_text] = ACTIONS(5171), - [sym__cite_suppress_author] = ACTIONS(5171), - [sym__shortcode_open_escaped] = ACTIONS(5171), - [sym__shortcode_open] = ACTIONS(5171), - [sym__unclosed_span] = ACTIONS(5171), - [sym__strong_emphasis_open_star] = ACTIONS(5171), - [sym__strong_emphasis_open_underscore] = ACTIONS(5171), + [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_close_star] = ACTIONS(4615), + [sym__strong_emphasis_open_underscore] = ACTIONS(4615), }, [STATE(954)] = { - [sym__backslash_escape] = ACTIONS(5175), - [sym_entity_reference] = ACTIONS(5175), - [sym_numeric_character_reference] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_QMARK] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [sym__newline_token] = ACTIONS(5175), - [aux_sym_insert_token1] = ACTIONS(5175), - [aux_sym_delete_token1] = ACTIONS(5175), - [aux_sym_highlight_token1] = ACTIONS(5175), - [aux_sym_edit_comment_token1] = ACTIONS(5175), - [anon_sym_CARET_LBRACK] = ACTIONS(5175), - [anon_sym_LBRACK_CARET] = ACTIONS(5175), - [sym_uri_autolink] = ACTIONS(5175), - [sym_email_autolink] = ACTIONS(5175), - [sym__whitespace_ge_2] = ACTIONS(5175), - [aux_sym__whitespace_token1] = ACTIONS(5177), - [sym__word_no_digit] = ACTIONS(5175), - [sym__digits] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5177), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5175), - [sym__code_span_start] = ACTIONS(5175), - [sym__emphasis_open_star] = ACTIONS(5175), - [sym__emphasis_open_underscore] = ACTIONS(5175), - [sym__strikeout_open] = ACTIONS(5175), - [sym__latex_span_start] = ACTIONS(5175), - [sym__single_quote_open] = ACTIONS(5175), - [sym__double_quote_open] = ACTIONS(5175), - [sym__superscript_open] = ACTIONS(5175), - [sym__superscript_close] = ACTIONS(5175), - [sym__subscript_open] = ACTIONS(5175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5175), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5175), - [sym__cite_author_in_text] = ACTIONS(5175), - [sym__cite_suppress_author] = ACTIONS(5175), - [sym__shortcode_open_escaped] = ACTIONS(5175), - [sym__shortcode_open] = ACTIONS(5175), - [sym__unclosed_span] = ACTIONS(5175), - [sym__strong_emphasis_open_star] = ACTIONS(5175), - [sym__strong_emphasis_open_underscore] = ACTIONS(5175), + [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__superscript_close] = 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(955)] = { - [sym__backslash_escape] = ACTIONS(4939), - [sym_entity_reference] = ACTIONS(4939), - [sym_numeric_character_reference] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_POUND] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [sym__newline_token] = ACTIONS(4939), - [aux_sym_insert_token1] = ACTIONS(4939), - [aux_sym_delete_token1] = ACTIONS(4939), - [aux_sym_highlight_token1] = ACTIONS(4939), - [aux_sym_edit_comment_token1] = ACTIONS(4939), - [anon_sym_CARET_LBRACK] = ACTIONS(4939), - [anon_sym_LBRACK_CARET] = ACTIONS(4939), - [sym_uri_autolink] = ACTIONS(4939), - [sym_email_autolink] = ACTIONS(4939), - [sym__whitespace_ge_2] = ACTIONS(4939), - [aux_sym__whitespace_token1] = ACTIONS(4941), - [sym__word_no_digit] = ACTIONS(4939), - [sym__digits] = ACTIONS(4939), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4939), - [sym__code_span_start] = ACTIONS(4939), - [sym__emphasis_open_star] = ACTIONS(4939), - [sym__emphasis_open_underscore] = ACTIONS(4939), - [sym__strikeout_open] = ACTIONS(4939), - [sym__latex_span_start] = ACTIONS(4939), - [sym__single_quote_open] = ACTIONS(4939), - [sym__double_quote_open] = ACTIONS(4939), - [sym__superscript_open] = ACTIONS(4939), - [sym__superscript_close] = ACTIONS(4939), - [sym__subscript_open] = ACTIONS(4939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4939), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4939), - [sym__cite_author_in_text] = ACTIONS(4939), - [sym__cite_suppress_author] = ACTIONS(4939), - [sym__shortcode_open_escaped] = ACTIONS(4939), - [sym__shortcode_open] = ACTIONS(4939), - [sym__unclosed_span] = ACTIONS(4939), - [sym__strong_emphasis_open_star] = ACTIONS(4939), - [sym__strong_emphasis_open_underscore] = ACTIONS(4939), + [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_close_star] = ACTIONS(4623), + [sym__strong_emphasis_open_underscore] = ACTIONS(4623), }, [STATE(956)] = { - [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_STAR] = 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__subscript_close] = 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), + [sym__backslash_escape] = ACTIONS(4495), + [sym_entity_reference] = ACTIONS(4495), + [sym_numeric_character_reference] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_QMARK] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_BSLASH] = ACTIONS(4497), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_BQUOTE] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [sym__newline_token] = ACTIONS(4495), + [aux_sym_insert_token1] = ACTIONS(4495), + [aux_sym_delete_token1] = ACTIONS(4495), + [aux_sym_highlight_token1] = ACTIONS(4495), + [aux_sym_edit_comment_token1] = ACTIONS(4495), + [anon_sym_CARET_LBRACK] = ACTIONS(4495), + [anon_sym_LBRACK_CARET] = ACTIONS(4495), + [sym_uri_autolink] = ACTIONS(4495), + [sym_email_autolink] = ACTIONS(4495), + [sym__whitespace_ge_2] = ACTIONS(4495), + [aux_sym__whitespace_token1] = ACTIONS(4497), + [sym__word_no_digit] = ACTIONS(4495), + [sym__digits] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4495), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(4495), + [sym__emphasis_open_underscore] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4495), + [sym__latex_span_start] = ACTIONS(4495), + [sym__single_quote_open] = ACTIONS(4495), + [sym__double_quote_open] = ACTIONS(4495), + [sym__superscript_open] = ACTIONS(4495), + [sym__subscript_open] = ACTIONS(4495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4495), + [sym__cite_author_in_text] = ACTIONS(4495), + [sym__cite_suppress_author] = ACTIONS(4495), + [sym__shortcode_open_escaped] = ACTIONS(4495), + [sym__shortcode_open] = ACTIONS(4495), + [sym__unclosed_span] = ACTIONS(4495), + [sym__strong_emphasis_open_star] = ACTIONS(4495), + [sym__strong_emphasis_close_star] = ACTIONS(4495), + [sym__strong_emphasis_open_underscore] = ACTIONS(4495), }, [STATE(957)] = { - [sym__backslash_escape] = ACTIONS(4943), - [sym_entity_reference] = ACTIONS(4943), - [sym_numeric_character_reference] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [sym__newline_token] = ACTIONS(4943), - [aux_sym_insert_token1] = ACTIONS(4943), - [aux_sym_delete_token1] = ACTIONS(4943), - [aux_sym_highlight_token1] = ACTIONS(4943), - [aux_sym_edit_comment_token1] = ACTIONS(4943), - [anon_sym_CARET_LBRACK] = ACTIONS(4943), - [anon_sym_LBRACK_CARET] = ACTIONS(4943), - [sym_uri_autolink] = ACTIONS(4943), - [sym_email_autolink] = ACTIONS(4943), - [sym__whitespace_ge_2] = ACTIONS(4943), - [aux_sym__whitespace_token1] = ACTIONS(4945), - [sym__word_no_digit] = ACTIONS(4943), - [sym__digits] = ACTIONS(4943), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4943), - [sym__code_span_start] = ACTIONS(4943), - [sym__emphasis_open_star] = ACTIONS(4943), - [sym__emphasis_open_underscore] = ACTIONS(4943), - [sym__strikeout_open] = ACTIONS(4943), - [sym__latex_span_start] = ACTIONS(4943), - [sym__single_quote_open] = ACTIONS(4943), - [sym__double_quote_open] = ACTIONS(4943), - [sym__superscript_open] = ACTIONS(4943), - [sym__subscript_open] = ACTIONS(4943), - [sym__subscript_close] = ACTIONS(4943), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4943), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4943), - [sym__cite_author_in_text] = ACTIONS(4943), - [sym__cite_suppress_author] = ACTIONS(4943), - [sym__shortcode_open_escaped] = ACTIONS(4943), - [sym__shortcode_open] = ACTIONS(4943), - [sym__unclosed_span] = ACTIONS(4943), - [sym__strong_emphasis_open_star] = ACTIONS(4943), - [sym__strong_emphasis_open_underscore] = ACTIONS(4943), + [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(958)] = { - [sym__backslash_escape] = ACTIONS(4947), - [sym_entity_reference] = ACTIONS(4947), - [sym_numeric_character_reference] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_DQUOTE] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [sym__newline_token] = ACTIONS(4947), - [aux_sym_insert_token1] = ACTIONS(4947), - [aux_sym_delete_token1] = ACTIONS(4947), - [aux_sym_highlight_token1] = ACTIONS(4947), - [aux_sym_edit_comment_token1] = ACTIONS(4947), - [anon_sym_CARET_LBRACK] = ACTIONS(4947), - [anon_sym_LBRACK_CARET] = ACTIONS(4947), - [sym_uri_autolink] = ACTIONS(4947), - [sym_email_autolink] = ACTIONS(4947), - [sym__whitespace_ge_2] = ACTIONS(4947), - [aux_sym__whitespace_token1] = ACTIONS(4949), - [sym__word_no_digit] = ACTIONS(4947), - [sym__digits] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4947), - [sym__code_span_start] = ACTIONS(4947), - [sym__emphasis_open_star] = ACTIONS(4947), - [sym__emphasis_open_underscore] = ACTIONS(4947), - [sym__strikeout_open] = ACTIONS(4947), - [sym__latex_span_start] = ACTIONS(4947), - [sym__single_quote_open] = ACTIONS(4947), - [sym__double_quote_open] = ACTIONS(4947), - [sym__superscript_open] = ACTIONS(4947), - [sym__subscript_open] = ACTIONS(4947), - [sym__subscript_close] = ACTIONS(4947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4947), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4947), - [sym__cite_author_in_text] = ACTIONS(4947), - [sym__cite_suppress_author] = ACTIONS(4947), - [sym__shortcode_open_escaped] = ACTIONS(4947), - [sym__shortcode_open] = ACTIONS(4947), - [sym__unclosed_span] = ACTIONS(4947), - [sym__strong_emphasis_open_star] = ACTIONS(4947), - [sym__strong_emphasis_open_underscore] = ACTIONS(4947), + [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_close_star] = ACTIONS(4583), + [sym__strong_emphasis_open_underscore] = ACTIONS(4583), }, [STATE(959)] = { - [sym__backslash_escape] = ACTIONS(4951), - [sym_entity_reference] = ACTIONS(4951), - [sym_numeric_character_reference] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [sym__newline_token] = ACTIONS(4951), - [aux_sym_insert_token1] = ACTIONS(4951), - [aux_sym_delete_token1] = ACTIONS(4951), - [aux_sym_highlight_token1] = ACTIONS(4951), - [aux_sym_edit_comment_token1] = ACTIONS(4951), - [anon_sym_CARET_LBRACK] = ACTIONS(4951), - [anon_sym_LBRACK_CARET] = ACTIONS(4951), - [sym_uri_autolink] = ACTIONS(4951), - [sym_email_autolink] = ACTIONS(4951), - [sym__whitespace_ge_2] = ACTIONS(4951), - [aux_sym__whitespace_token1] = ACTIONS(4953), - [sym__word_no_digit] = ACTIONS(4951), - [sym__digits] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4951), - [sym__code_span_start] = ACTIONS(4951), - [sym__emphasis_open_star] = ACTIONS(4951), - [sym__emphasis_open_underscore] = ACTIONS(4951), - [sym__strikeout_open] = ACTIONS(4951), - [sym__latex_span_start] = ACTIONS(4951), - [sym__single_quote_open] = ACTIONS(4951), - [sym__double_quote_open] = ACTIONS(4951), - [sym__superscript_open] = ACTIONS(4951), - [sym__subscript_open] = ACTIONS(4951), - [sym__subscript_close] = ACTIONS(4951), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4951), - [sym__cite_author_in_text] = ACTIONS(4951), - [sym__cite_suppress_author] = ACTIONS(4951), - [sym__shortcode_open_escaped] = ACTIONS(4951), - [sym__shortcode_open] = ACTIONS(4951), - [sym__unclosed_span] = ACTIONS(4951), - [sym__strong_emphasis_open_star] = ACTIONS(4951), - [sym__strong_emphasis_open_underscore] = ACTIONS(4951), + [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__double_quote_close] = 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(960)] = { - [sym__backslash_escape] = ACTIONS(4955), - [sym_entity_reference] = ACTIONS(4955), - [sym_numeric_character_reference] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_DQUOTE] = ACTIONS(4955), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4957), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [sym__newline_token] = ACTIONS(4955), - [aux_sym_insert_token1] = ACTIONS(4955), - [aux_sym_delete_token1] = ACTIONS(4955), - [aux_sym_highlight_token1] = ACTIONS(4955), - [aux_sym_edit_comment_token1] = ACTIONS(4955), - [anon_sym_CARET_LBRACK] = ACTIONS(4955), - [anon_sym_LBRACK_CARET] = ACTIONS(4955), - [sym_uri_autolink] = ACTIONS(4955), - [sym_email_autolink] = ACTIONS(4955), - [sym__whitespace_ge_2] = ACTIONS(4955), - [aux_sym__whitespace_token1] = ACTIONS(4957), - [sym__word_no_digit] = ACTIONS(4955), - [sym__digits] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4955), - [sym__code_span_start] = ACTIONS(4955), - [sym__emphasis_open_star] = ACTIONS(4955), - [sym__emphasis_open_underscore] = ACTIONS(4955), - [sym__strikeout_open] = ACTIONS(4955), - [sym__latex_span_start] = ACTIONS(4955), - [sym__single_quote_open] = ACTIONS(4955), - [sym__double_quote_open] = ACTIONS(4955), - [sym__superscript_open] = ACTIONS(4955), - [sym__subscript_open] = ACTIONS(4955), - [sym__subscript_close] = ACTIONS(4955), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4955), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4955), - [sym__cite_author_in_text] = ACTIONS(4955), - [sym__cite_suppress_author] = ACTIONS(4955), - [sym__shortcode_open_escaped] = ACTIONS(4955), - [sym__shortcode_open] = ACTIONS(4955), - [sym__unclosed_span] = ACTIONS(4955), - [sym__strong_emphasis_open_star] = ACTIONS(4955), - [sym__strong_emphasis_open_underscore] = ACTIONS(4955), + [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__subscript_close] = 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(961)] = { - [sym__backslash_escape] = ACTIONS(4959), - [sym_entity_reference] = ACTIONS(4959), - [sym_numeric_character_reference] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_DQUOTE] = ACTIONS(4959), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4961), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_TILDE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4959), - [sym__newline_token] = ACTIONS(4959), - [aux_sym_insert_token1] = ACTIONS(4959), - [aux_sym_delete_token1] = ACTIONS(4959), - [aux_sym_highlight_token1] = ACTIONS(4959), - [aux_sym_edit_comment_token1] = ACTIONS(4959), - [anon_sym_CARET_LBRACK] = ACTIONS(4959), - [anon_sym_LBRACK_CARET] = ACTIONS(4959), - [sym_uri_autolink] = ACTIONS(4959), - [sym_email_autolink] = ACTIONS(4959), - [sym__whitespace_ge_2] = ACTIONS(4959), - [aux_sym__whitespace_token1] = ACTIONS(4961), - [sym__word_no_digit] = ACTIONS(4959), - [sym__digits] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4959), - [sym__code_span_start] = ACTIONS(4959), - [sym__emphasis_open_star] = ACTIONS(4959), - [sym__emphasis_open_underscore] = ACTIONS(4959), - [sym__strikeout_open] = ACTIONS(4959), - [sym__latex_span_start] = ACTIONS(4959), - [sym__single_quote_open] = ACTIONS(4959), - [sym__double_quote_open] = ACTIONS(4959), - [sym__superscript_open] = ACTIONS(4959), - [sym__subscript_open] = ACTIONS(4959), - [sym__subscript_close] = ACTIONS(4959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4959), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4959), - [sym__cite_author_in_text] = ACTIONS(4959), - [sym__cite_suppress_author] = ACTIONS(4959), - [sym__shortcode_open_escaped] = ACTIONS(4959), - [sym__shortcode_open] = ACTIONS(4959), - [sym__unclosed_span] = ACTIONS(4959), - [sym__strong_emphasis_open_star] = ACTIONS(4959), - [sym__strong_emphasis_open_underscore] = ACTIONS(4959), + [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_close_star] = ACTIONS(4631), + [sym__strong_emphasis_open_underscore] = ACTIONS(4631), }, [STATE(962)] = { - [sym__backslash_escape] = ACTIONS(4963), - [sym_entity_reference] = ACTIONS(4963), - [sym_numeric_character_reference] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_DQUOTE] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4963), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_RPAREN] = ACTIONS(4963), - [sym__newline_token] = ACTIONS(4963), - [aux_sym_insert_token1] = ACTIONS(4963), - [aux_sym_delete_token1] = ACTIONS(4963), - [aux_sym_highlight_token1] = ACTIONS(4963), - [aux_sym_edit_comment_token1] = ACTIONS(4963), - [anon_sym_CARET_LBRACK] = ACTIONS(4963), - [anon_sym_LBRACK_CARET] = ACTIONS(4963), - [sym_uri_autolink] = ACTIONS(4963), - [sym_email_autolink] = ACTIONS(4963), - [sym__whitespace_ge_2] = ACTIONS(4963), - [aux_sym__whitespace_token1] = ACTIONS(4965), - [sym__word_no_digit] = ACTIONS(4963), - [sym__digits] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4963), - [sym__code_span_start] = ACTIONS(4963), - [sym__emphasis_open_star] = ACTIONS(4963), - [sym__emphasis_open_underscore] = ACTIONS(4963), - [sym__strikeout_open] = ACTIONS(4963), - [sym__latex_span_start] = ACTIONS(4963), - [sym__single_quote_open] = ACTIONS(4963), - [sym__double_quote_open] = ACTIONS(4963), - [sym__superscript_open] = ACTIONS(4963), - [sym__subscript_open] = ACTIONS(4963), - [sym__subscript_close] = ACTIONS(4963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4963), - [sym__cite_author_in_text] = ACTIONS(4963), - [sym__cite_suppress_author] = ACTIONS(4963), - [sym__shortcode_open_escaped] = ACTIONS(4963), - [sym__shortcode_open] = ACTIONS(4963), - [sym__unclosed_span] = ACTIONS(4963), - [sym__strong_emphasis_open_star] = ACTIONS(4963), - [sym__strong_emphasis_open_underscore] = ACTIONS(4963), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_close_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(963)] = { - [sym__backslash_escape] = ACTIONS(4967), - [sym_entity_reference] = ACTIONS(4967), - [sym_numeric_character_reference] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_BQUOTE] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [sym__newline_token] = ACTIONS(4967), - [aux_sym_insert_token1] = ACTIONS(4967), - [aux_sym_delete_token1] = ACTIONS(4967), - [aux_sym_highlight_token1] = ACTIONS(4967), - [aux_sym_edit_comment_token1] = ACTIONS(4967), - [anon_sym_CARET_LBRACK] = ACTIONS(4967), - [anon_sym_LBRACK_CARET] = ACTIONS(4967), - [sym_uri_autolink] = ACTIONS(4967), - [sym_email_autolink] = ACTIONS(4967), - [sym__whitespace_ge_2] = ACTIONS(4967), - [aux_sym__whitespace_token1] = ACTIONS(4969), - [sym__word_no_digit] = ACTIONS(4967), - [sym__digits] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [sym__code_span_start] = ACTIONS(4967), - [sym__emphasis_open_star] = ACTIONS(4967), - [sym__emphasis_open_underscore] = ACTIONS(4967), - [sym__strikeout_open] = ACTIONS(4967), - [sym__latex_span_start] = ACTIONS(4967), - [sym__single_quote_open] = ACTIONS(4967), - [sym__double_quote_open] = ACTIONS(4967), - [sym__superscript_open] = ACTIONS(4967), - [sym__subscript_open] = ACTIONS(4967), - [sym__subscript_close] = ACTIONS(4967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4967), - [sym__cite_author_in_text] = ACTIONS(4967), - [sym__cite_suppress_author] = ACTIONS(4967), - [sym__shortcode_open_escaped] = ACTIONS(4967), - [sym__shortcode_open] = ACTIONS(4967), - [sym__unclosed_span] = ACTIONS(4967), - [sym__strong_emphasis_open_star] = ACTIONS(4967), - [sym__strong_emphasis_open_underscore] = ACTIONS(4967), + [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(964)] = { - [sym__backslash_escape] = ACTIONS(4971), - [sym_entity_reference] = ACTIONS(4971), - [sym_numeric_character_reference] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym_BQUOTE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [sym__newline_token] = ACTIONS(4971), - [aux_sym_insert_token1] = ACTIONS(4971), - [aux_sym_delete_token1] = ACTIONS(4971), - [aux_sym_highlight_token1] = ACTIONS(4971), - [aux_sym_edit_comment_token1] = ACTIONS(4971), - [anon_sym_CARET_LBRACK] = ACTIONS(4971), - [anon_sym_LBRACK_CARET] = ACTIONS(4971), - [sym_uri_autolink] = ACTIONS(4971), - [sym_email_autolink] = ACTIONS(4971), - [sym__whitespace_ge_2] = ACTIONS(4971), - [aux_sym__whitespace_token1] = ACTIONS(4973), - [sym__word_no_digit] = ACTIONS(4971), - [sym__digits] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4971), - [sym__code_span_start] = ACTIONS(4971), - [sym__emphasis_open_star] = ACTIONS(4971), - [sym__emphasis_open_underscore] = ACTIONS(4971), - [sym__strikeout_open] = ACTIONS(4971), - [sym__latex_span_start] = ACTIONS(4971), - [sym__single_quote_open] = ACTIONS(4971), - [sym__double_quote_open] = ACTIONS(4971), - [sym__superscript_open] = ACTIONS(4971), - [sym__subscript_open] = ACTIONS(4971), - [sym__subscript_close] = ACTIONS(4971), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4971), - [sym__cite_author_in_text] = ACTIONS(4971), - [sym__cite_suppress_author] = ACTIONS(4971), - [sym__shortcode_open_escaped] = ACTIONS(4971), - [sym__shortcode_open] = ACTIONS(4971), - [sym__unclosed_span] = ACTIONS(4971), - [sym__strong_emphasis_open_star] = ACTIONS(4971), - [sym__strong_emphasis_open_underscore] = ACTIONS(4971), + [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_close_star] = ACTIONS(4635), + [sym__strong_emphasis_open_underscore] = ACTIONS(4635), }, [STATE(965)] = { - [sym__backslash_escape] = ACTIONS(4975), - [sym_entity_reference] = ACTIONS(4975), - [sym_numeric_character_reference] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [sym__newline_token] = ACTIONS(4975), - [aux_sym_insert_token1] = ACTIONS(4975), - [aux_sym_delete_token1] = ACTIONS(4975), - [aux_sym_highlight_token1] = ACTIONS(4975), - [aux_sym_edit_comment_token1] = ACTIONS(4975), - [anon_sym_CARET_LBRACK] = ACTIONS(4975), - [anon_sym_LBRACK_CARET] = ACTIONS(4975), - [sym_uri_autolink] = ACTIONS(4975), - [sym_email_autolink] = ACTIONS(4975), - [sym__whitespace_ge_2] = ACTIONS(4975), - [aux_sym__whitespace_token1] = ACTIONS(4977), - [sym__word_no_digit] = ACTIONS(4975), - [sym__digits] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [sym__code_span_start] = ACTIONS(4975), - [sym__emphasis_open_star] = ACTIONS(4975), - [sym__emphasis_open_underscore] = ACTIONS(4975), - [sym__strikeout_open] = ACTIONS(4975), - [sym__latex_span_start] = ACTIONS(4975), - [sym__single_quote_open] = ACTIONS(4975), - [sym__double_quote_open] = ACTIONS(4975), - [sym__superscript_open] = ACTIONS(4975), - [sym__subscript_open] = ACTIONS(4975), - [sym__subscript_close] = ACTIONS(4975), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4975), - [sym__cite_author_in_text] = ACTIONS(4975), - [sym__cite_suppress_author] = ACTIONS(4975), - [sym__shortcode_open_escaped] = ACTIONS(4975), - [sym__shortcode_open] = ACTIONS(4975), - [sym__unclosed_span] = ACTIONS(4975), - [sym__strong_emphasis_open_star] = ACTIONS(4975), - [sym__strong_emphasis_open_underscore] = ACTIONS(4975), + [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(966)] = { - [sym__backslash_escape] = ACTIONS(4979), - [sym_entity_reference] = ACTIONS(4979), - [sym_numeric_character_reference] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_COLON] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), - [sym__newline_token] = ACTIONS(4979), - [aux_sym_insert_token1] = ACTIONS(4979), - [aux_sym_delete_token1] = ACTIONS(4979), - [aux_sym_highlight_token1] = ACTIONS(4979), - [aux_sym_edit_comment_token1] = ACTIONS(4979), - [anon_sym_CARET_LBRACK] = ACTIONS(4979), - [anon_sym_LBRACK_CARET] = ACTIONS(4979), - [sym_uri_autolink] = ACTIONS(4979), - [sym_email_autolink] = ACTIONS(4979), - [sym__whitespace_ge_2] = ACTIONS(4979), - [aux_sym__whitespace_token1] = ACTIONS(4981), - [sym__word_no_digit] = ACTIONS(4979), - [sym__digits] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4979), - [sym__code_span_start] = ACTIONS(4979), - [sym__emphasis_open_star] = ACTIONS(4979), - [sym__emphasis_open_underscore] = ACTIONS(4979), - [sym__strikeout_open] = ACTIONS(4979), - [sym__latex_span_start] = ACTIONS(4979), - [sym__single_quote_open] = ACTIONS(4979), - [sym__double_quote_open] = ACTIONS(4979), - [sym__superscript_open] = ACTIONS(4979), - [sym__subscript_open] = ACTIONS(4979), - [sym__subscript_close] = ACTIONS(4979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4979), - [sym__cite_author_in_text] = ACTIONS(4979), - [sym__cite_suppress_author] = ACTIONS(4979), - [sym__shortcode_open_escaped] = ACTIONS(4979), - [sym__shortcode_open] = ACTIONS(4979), - [sym__unclosed_span] = ACTIONS(4979), - [sym__strong_emphasis_open_star] = ACTIONS(4979), - [sym__strong_emphasis_open_underscore] = ACTIONS(4979), + [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_close_star] = ACTIONS(4639), + [sym__strong_emphasis_open_underscore] = ACTIONS(4639), }, [STATE(967)] = { - [sym__backslash_escape] = ACTIONS(4983), - [sym_entity_reference] = ACTIONS(4983), - [sym_numeric_character_reference] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [sym__newline_token] = ACTIONS(4983), - [aux_sym_insert_token1] = ACTIONS(4983), - [aux_sym_delete_token1] = ACTIONS(4983), - [aux_sym_highlight_token1] = ACTIONS(4983), - [aux_sym_edit_comment_token1] = ACTIONS(4983), - [anon_sym_CARET_LBRACK] = ACTIONS(4983), - [anon_sym_LBRACK_CARET] = ACTIONS(4983), - [sym_uri_autolink] = ACTIONS(4983), - [sym_email_autolink] = ACTIONS(4983), - [sym__whitespace_ge_2] = ACTIONS(4983), - [aux_sym__whitespace_token1] = ACTIONS(4985), - [sym__word_no_digit] = ACTIONS(4983), - [sym__digits] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4983), - [sym__code_span_start] = ACTIONS(4983), - [sym__emphasis_open_star] = ACTIONS(4983), - [sym__emphasis_open_underscore] = ACTIONS(4983), - [sym__strikeout_open] = ACTIONS(4983), - [sym__latex_span_start] = ACTIONS(4983), - [sym__single_quote_open] = ACTIONS(4983), - [sym__double_quote_open] = ACTIONS(4983), - [sym__superscript_open] = ACTIONS(4983), - [sym__subscript_open] = ACTIONS(4983), - [sym__subscript_close] = ACTIONS(4983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4983), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4983), - [sym__cite_author_in_text] = ACTIONS(4983), - [sym__cite_suppress_author] = ACTIONS(4983), - [sym__shortcode_open_escaped] = ACTIONS(4983), - [sym__shortcode_open] = ACTIONS(4983), - [sym__unclosed_span] = ACTIONS(4983), - [sym__strong_emphasis_open_star] = ACTIONS(4983), - [sym__strong_emphasis_open_underscore] = ACTIONS(4983), + [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_close_star] = ACTIONS(4643), + [sym__strong_emphasis_open_underscore] = ACTIONS(4643), }, [STATE(968)] = { - [sym__backslash_escape] = ACTIONS(4987), - [sym_entity_reference] = ACTIONS(4987), - [sym_numeric_character_reference] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym__newline_token] = ACTIONS(4987), - [aux_sym_insert_token1] = ACTIONS(4987), - [aux_sym_delete_token1] = ACTIONS(4987), - [aux_sym_highlight_token1] = ACTIONS(4987), - [aux_sym_edit_comment_token1] = ACTIONS(4987), - [anon_sym_CARET_LBRACK] = ACTIONS(4987), - [anon_sym_LBRACK_CARET] = ACTIONS(4987), - [sym_uri_autolink] = ACTIONS(4987), - [sym_email_autolink] = ACTIONS(4987), - [sym__whitespace_ge_2] = ACTIONS(4987), - [aux_sym__whitespace_token1] = ACTIONS(4989), - [sym__word_no_digit] = ACTIONS(4987), - [sym__digits] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4987), - [sym__code_span_start] = ACTIONS(4987), - [sym__emphasis_open_star] = ACTIONS(4987), - [sym__emphasis_open_underscore] = ACTIONS(4987), - [sym__strikeout_open] = ACTIONS(4987), - [sym__latex_span_start] = ACTIONS(4987), - [sym__single_quote_open] = ACTIONS(4987), - [sym__double_quote_open] = ACTIONS(4987), - [sym__superscript_open] = ACTIONS(4987), - [sym__subscript_open] = ACTIONS(4987), - [sym__subscript_close] = ACTIONS(4987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4987), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4987), - [sym__cite_author_in_text] = ACTIONS(4987), - [sym__cite_suppress_author] = ACTIONS(4987), - [sym__shortcode_open_escaped] = ACTIONS(4987), - [sym__shortcode_open] = ACTIONS(4987), - [sym__unclosed_span] = ACTIONS(4987), - [sym__strong_emphasis_open_star] = ACTIONS(4987), - [sym__strong_emphasis_open_underscore] = ACTIONS(4987), + [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(969)] = { - [sym__backslash_escape] = ACTIONS(5179), - [sym_entity_reference] = ACTIONS(5179), - [sym_numeric_character_reference] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_QMARK] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_BSLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [sym__newline_token] = ACTIONS(5179), - [aux_sym_insert_token1] = ACTIONS(5179), - [aux_sym_delete_token1] = ACTIONS(5179), - [aux_sym_highlight_token1] = ACTIONS(5179), - [aux_sym_edit_comment_token1] = ACTIONS(5179), - [anon_sym_CARET_LBRACK] = ACTIONS(5179), - [anon_sym_LBRACK_CARET] = ACTIONS(5179), - [sym_uri_autolink] = ACTIONS(5179), - [sym_email_autolink] = ACTIONS(5179), - [sym__whitespace_ge_2] = ACTIONS(5179), - [aux_sym__whitespace_token1] = ACTIONS(5181), - [sym__word_no_digit] = ACTIONS(5179), - [sym__digits] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5181), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5179), - [sym__code_span_start] = ACTIONS(5179), - [sym__emphasis_open_star] = ACTIONS(5179), - [sym__emphasis_open_underscore] = ACTIONS(5179), - [sym__strikeout_open] = ACTIONS(5179), - [sym__latex_span_start] = ACTIONS(5179), - [sym__single_quote_open] = ACTIONS(5179), - [sym__double_quote_open] = ACTIONS(5179), - [sym__double_quote_close] = ACTIONS(5179), - [sym__superscript_open] = ACTIONS(5179), - [sym__subscript_open] = ACTIONS(5179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5179), - [sym__cite_author_in_text] = ACTIONS(5179), - [sym__cite_suppress_author] = ACTIONS(5179), - [sym__shortcode_open_escaped] = ACTIONS(5179), - [sym__shortcode_open] = ACTIONS(5179), - [sym__unclosed_span] = ACTIONS(5179), - [sym__strong_emphasis_open_star] = ACTIONS(5179), - [sym__strong_emphasis_open_underscore] = ACTIONS(5179), + [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_close_star] = ACTIONS(4651), + [sym__strong_emphasis_open_underscore] = ACTIONS(4651), }, [STATE(970)] = { - [sym__backslash_escape] = ACTIONS(4991), - [sym_entity_reference] = ACTIONS(4991), - [sym_numeric_character_reference] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH] = ACTIONS(4993), - [anon_sym_CARET] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym__newline_token] = ACTIONS(4991), - [aux_sym_insert_token1] = ACTIONS(4991), - [aux_sym_delete_token1] = ACTIONS(4991), - [aux_sym_highlight_token1] = ACTIONS(4991), - [aux_sym_edit_comment_token1] = ACTIONS(4991), - [anon_sym_CARET_LBRACK] = ACTIONS(4991), - [anon_sym_LBRACK_CARET] = ACTIONS(4991), - [sym_uri_autolink] = ACTIONS(4991), - [sym_email_autolink] = ACTIONS(4991), - [sym__whitespace_ge_2] = ACTIONS(4991), - [aux_sym__whitespace_token1] = ACTIONS(4993), - [sym__word_no_digit] = ACTIONS(4991), - [sym__digits] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), - [sym__code_span_start] = ACTIONS(4991), - [sym__emphasis_open_star] = ACTIONS(4991), - [sym__emphasis_open_underscore] = ACTIONS(4991), - [sym__strikeout_open] = ACTIONS(4991), - [sym__latex_span_start] = ACTIONS(4991), - [sym__single_quote_open] = ACTIONS(4991), - [sym__double_quote_open] = ACTIONS(4991), - [sym__superscript_open] = ACTIONS(4991), - [sym__subscript_open] = ACTIONS(4991), - [sym__subscript_close] = ACTIONS(4991), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4991), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4991), - [sym__cite_author_in_text] = ACTIONS(4991), - [sym__cite_suppress_author] = ACTIONS(4991), - [sym__shortcode_open_escaped] = ACTIONS(4991), - [sym__shortcode_open] = ACTIONS(4991), - [sym__unclosed_span] = ACTIONS(4991), - [sym__strong_emphasis_open_star] = ACTIONS(4991), - [sym__strong_emphasis_open_underscore] = ACTIONS(4991), + [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_close_star] = ACTIONS(4655), + [sym__strong_emphasis_open_underscore] = ACTIONS(4655), }, [STATE(971)] = { - [sym__backslash_escape] = ACTIONS(4995), - [sym_entity_reference] = ACTIONS(4995), - [sym_numeric_character_reference] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym__newline_token] = ACTIONS(4995), - [aux_sym_insert_token1] = ACTIONS(4995), - [aux_sym_delete_token1] = ACTIONS(4995), - [aux_sym_highlight_token1] = ACTIONS(4995), - [aux_sym_edit_comment_token1] = ACTIONS(4995), - [anon_sym_CARET_LBRACK] = ACTIONS(4995), - [anon_sym_LBRACK_CARET] = ACTIONS(4995), - [sym_uri_autolink] = ACTIONS(4995), - [sym_email_autolink] = ACTIONS(4995), - [sym__whitespace_ge_2] = ACTIONS(4995), - [aux_sym__whitespace_token1] = ACTIONS(4997), - [sym__word_no_digit] = ACTIONS(4995), - [sym__digits] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4995), - [sym__code_span_start] = ACTIONS(4995), - [sym__emphasis_open_star] = ACTIONS(4995), - [sym__emphasis_open_underscore] = ACTIONS(4995), - [sym__strikeout_open] = ACTIONS(4995), - [sym__latex_span_start] = ACTIONS(4995), - [sym__single_quote_open] = ACTIONS(4995), - [sym__double_quote_open] = ACTIONS(4995), - [sym__superscript_open] = ACTIONS(4995), - [sym__subscript_open] = ACTIONS(4995), - [sym__subscript_close] = ACTIONS(4995), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4995), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4995), - [sym__cite_author_in_text] = ACTIONS(4995), - [sym__cite_suppress_author] = ACTIONS(4995), - [sym__shortcode_open_escaped] = ACTIONS(4995), - [sym__shortcode_open] = ACTIONS(4995), - [sym__unclosed_span] = ACTIONS(4995), - [sym__strong_emphasis_open_star] = ACTIONS(4995), - [sym__strong_emphasis_open_underscore] = ACTIONS(4995), + [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_close_star] = ACTIONS(4659), + [sym__strong_emphasis_open_underscore] = ACTIONS(4659), }, [STATE(972)] = { - [sym__backslash_escape] = ACTIONS(4999), - [sym_entity_reference] = ACTIONS(4999), - [sym_numeric_character_reference] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [sym__newline_token] = ACTIONS(4999), - [aux_sym_insert_token1] = ACTIONS(4999), - [aux_sym_delete_token1] = ACTIONS(4999), - [aux_sym_highlight_token1] = ACTIONS(4999), - [aux_sym_edit_comment_token1] = ACTIONS(4999), - [anon_sym_CARET_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_CARET] = ACTIONS(4999), - [sym_uri_autolink] = ACTIONS(4999), - [sym_email_autolink] = ACTIONS(4999), - [sym__whitespace_ge_2] = ACTIONS(4999), - [aux_sym__whitespace_token1] = ACTIONS(5001), - [sym__word_no_digit] = ACTIONS(4999), - [sym__digits] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4999), - [sym__code_span_start] = ACTIONS(4999), - [sym__emphasis_open_star] = ACTIONS(4999), - [sym__emphasis_open_underscore] = ACTIONS(4999), - [sym__strikeout_open] = ACTIONS(4999), - [sym__latex_span_start] = ACTIONS(4999), - [sym__single_quote_open] = ACTIONS(4999), - [sym__double_quote_open] = ACTIONS(4999), - [sym__superscript_open] = ACTIONS(4999), - [sym__subscript_open] = ACTIONS(4999), - [sym__subscript_close] = ACTIONS(4999), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4999), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4999), - [sym__cite_author_in_text] = ACTIONS(4999), - [sym__cite_suppress_author] = ACTIONS(4999), - [sym__shortcode_open_escaped] = ACTIONS(4999), - [sym__shortcode_open] = ACTIONS(4999), - [sym__unclosed_span] = ACTIONS(4999), - [sym__strong_emphasis_open_star] = ACTIONS(4999), - [sym__strong_emphasis_open_underscore] = ACTIONS(4999), + [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_close_star] = ACTIONS(4663), + [sym__strong_emphasis_open_underscore] = ACTIONS(4663), }, [STATE(973)] = { - [sym__backslash_escape] = ACTIONS(5003), - [sym_entity_reference] = ACTIONS(5003), - [sym_numeric_character_reference] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym__newline_token] = ACTIONS(5003), - [aux_sym_insert_token1] = ACTIONS(5003), - [aux_sym_delete_token1] = ACTIONS(5003), - [aux_sym_highlight_token1] = ACTIONS(5003), - [aux_sym_edit_comment_token1] = ACTIONS(5003), - [anon_sym_CARET_LBRACK] = ACTIONS(5003), - [anon_sym_LBRACK_CARET] = ACTIONS(5003), - [sym_uri_autolink] = ACTIONS(5003), - [sym_email_autolink] = ACTIONS(5003), - [sym__whitespace_ge_2] = ACTIONS(5003), - [aux_sym__whitespace_token1] = ACTIONS(5005), - [sym__word_no_digit] = ACTIONS(5003), - [sym__digits] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [sym__code_span_start] = ACTIONS(5003), - [sym__emphasis_open_star] = ACTIONS(5003), - [sym__emphasis_open_underscore] = ACTIONS(5003), - [sym__strikeout_open] = ACTIONS(5003), - [sym__latex_span_start] = ACTIONS(5003), - [sym__single_quote_open] = ACTIONS(5003), - [sym__double_quote_open] = ACTIONS(5003), - [sym__superscript_open] = ACTIONS(5003), - [sym__subscript_open] = ACTIONS(5003), - [sym__subscript_close] = ACTIONS(5003), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5003), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5003), - [sym__cite_author_in_text] = ACTIONS(5003), - [sym__cite_suppress_author] = ACTIONS(5003), - [sym__shortcode_open_escaped] = ACTIONS(5003), - [sym__shortcode_open] = ACTIONS(5003), - [sym__unclosed_span] = ACTIONS(5003), - [sym__strong_emphasis_open_star] = ACTIONS(5003), - [sym__strong_emphasis_open_underscore] = ACTIONS(5003), + [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__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_close_star] = ACTIONS(4667), + [sym__strong_emphasis_open_underscore] = ACTIONS(4667), }, [STATE(974)] = { - [sym__backslash_escape] = ACTIONS(5007), - [sym_entity_reference] = ACTIONS(5007), - [sym_numeric_character_reference] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH] = ACTIONS(5009), - [anon_sym_CARET] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym__newline_token] = ACTIONS(5007), - [aux_sym_insert_token1] = ACTIONS(5007), - [aux_sym_delete_token1] = ACTIONS(5007), - [aux_sym_highlight_token1] = ACTIONS(5007), - [aux_sym_edit_comment_token1] = ACTIONS(5007), - [anon_sym_CARET_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_CARET] = ACTIONS(5007), - [sym_uri_autolink] = ACTIONS(5007), - [sym_email_autolink] = ACTIONS(5007), - [sym__whitespace_ge_2] = ACTIONS(5007), - [aux_sym__whitespace_token1] = ACTIONS(5009), - [sym__word_no_digit] = ACTIONS(5007), - [sym__digits] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), - [sym__code_span_start] = ACTIONS(5007), - [sym__emphasis_open_star] = ACTIONS(5007), - [sym__emphasis_open_underscore] = ACTIONS(5007), - [sym__strikeout_open] = ACTIONS(5007), - [sym__latex_span_start] = ACTIONS(5007), - [sym__single_quote_open] = ACTIONS(5007), - [sym__double_quote_open] = ACTIONS(5007), - [sym__superscript_open] = ACTIONS(5007), - [sym__superscript_close] = ACTIONS(5007), - [sym__subscript_open] = ACTIONS(5007), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5007), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5007), - [sym__cite_author_in_text] = ACTIONS(5007), - [sym__cite_suppress_author] = ACTIONS(5007), - [sym__shortcode_open_escaped] = ACTIONS(5007), - [sym__shortcode_open] = ACTIONS(5007), - [sym__unclosed_span] = ACTIONS(5007), - [sym__strong_emphasis_open_star] = ACTIONS(5007), - [sym__strong_emphasis_open_underscore] = ACTIONS(5007), + [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_close_star] = ACTIONS(4671), + [sym__strong_emphasis_open_underscore] = ACTIONS(4671), }, [STATE(975)] = { - [sym__backslash_escape] = ACTIONS(5011), - [sym_entity_reference] = ACTIONS(5011), - [sym_numeric_character_reference] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_AMP] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym_BQUOTE] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym__newline_token] = ACTIONS(5011), - [aux_sym_insert_token1] = ACTIONS(5011), - [aux_sym_delete_token1] = ACTIONS(5011), - [aux_sym_highlight_token1] = ACTIONS(5011), - [aux_sym_edit_comment_token1] = ACTIONS(5011), - [anon_sym_CARET_LBRACK] = ACTIONS(5011), - [anon_sym_LBRACK_CARET] = ACTIONS(5011), - [sym_uri_autolink] = ACTIONS(5011), - [sym_email_autolink] = ACTIONS(5011), - [sym__whitespace_ge_2] = ACTIONS(5011), - [aux_sym__whitespace_token1] = ACTIONS(5013), - [sym__word_no_digit] = ACTIONS(5011), - [sym__digits] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5011), - [sym__code_span_start] = ACTIONS(5011), - [sym__emphasis_open_star] = ACTIONS(5011), - [sym__emphasis_open_underscore] = ACTIONS(5011), - [sym__strikeout_open] = ACTIONS(5011), - [sym__latex_span_start] = ACTIONS(5011), - [sym__single_quote_open] = ACTIONS(5011), - [sym__double_quote_open] = ACTIONS(5011), - [sym__superscript_open] = ACTIONS(5011), - [sym__subscript_open] = ACTIONS(5011), - [sym__subscript_close] = ACTIONS(5011), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5011), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5011), - [sym__cite_author_in_text] = ACTIONS(5011), - [sym__cite_suppress_author] = ACTIONS(5011), - [sym__shortcode_open_escaped] = ACTIONS(5011), - [sym__shortcode_open] = ACTIONS(5011), - [sym__unclosed_span] = ACTIONS(5011), - [sym__strong_emphasis_open_star] = ACTIONS(5011), - [sym__strong_emphasis_open_underscore] = ACTIONS(5011), + [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_close_star] = ACTIONS(4675), + [sym__strong_emphasis_open_underscore] = ACTIONS(4675), }, [STATE(976)] = { - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__subscript_close] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [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_close_star] = ACTIONS(4679), + [sym__strong_emphasis_open_underscore] = ACTIONS(4679), }, [STATE(977)] = { - [sym__backslash_escape] = ACTIONS(5015), - [sym_entity_reference] = ACTIONS(5015), - [sym_numeric_character_reference] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym_BQUOTE] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__newline_token] = ACTIONS(5015), - [aux_sym_insert_token1] = ACTIONS(5015), - [aux_sym_delete_token1] = ACTIONS(5015), - [aux_sym_highlight_token1] = ACTIONS(5015), - [aux_sym_edit_comment_token1] = ACTIONS(5015), - [anon_sym_CARET_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_CARET] = ACTIONS(5015), - [sym_uri_autolink] = ACTIONS(5015), - [sym_email_autolink] = ACTIONS(5015), - [sym__whitespace_ge_2] = ACTIONS(5015), - [aux_sym__whitespace_token1] = ACTIONS(5017), - [sym__word_no_digit] = ACTIONS(5015), - [sym__digits] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5015), - [sym__code_span_start] = ACTIONS(5015), - [sym__emphasis_open_star] = ACTIONS(5015), - [sym__emphasis_open_underscore] = ACTIONS(5015), - [sym__strikeout_open] = ACTIONS(5015), - [sym__latex_span_start] = ACTIONS(5015), - [sym__single_quote_open] = ACTIONS(5015), - [sym__double_quote_open] = ACTIONS(5015), - [sym__superscript_open] = ACTIONS(5015), - [sym__subscript_open] = ACTIONS(5015), - [sym__subscript_close] = ACTIONS(5015), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5015), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5015), - [sym__cite_author_in_text] = ACTIONS(5015), - [sym__cite_suppress_author] = ACTIONS(5015), - [sym__shortcode_open_escaped] = ACTIONS(5015), - [sym__shortcode_open] = ACTIONS(5015), - [sym__unclosed_span] = ACTIONS(5015), - [sym__strong_emphasis_open_star] = ACTIONS(5015), - [sym__strong_emphasis_open_underscore] = ACTIONS(5015), + [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_close_star] = ACTIONS(4683), + [sym__strong_emphasis_open_underscore] = ACTIONS(4683), }, [STATE(978)] = { - [sym__backslash_escape] = ACTIONS(5019), - [sym_entity_reference] = ACTIONS(5019), - [sym_numeric_character_reference] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_DQUOTE] = ACTIONS(5019), - [anon_sym_POUND] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym__newline_token] = ACTIONS(5019), - [aux_sym_insert_token1] = ACTIONS(5019), - [aux_sym_delete_token1] = ACTIONS(5019), - [aux_sym_highlight_token1] = ACTIONS(5019), - [aux_sym_edit_comment_token1] = ACTIONS(5019), - [anon_sym_CARET_LBRACK] = ACTIONS(5019), - [anon_sym_LBRACK_CARET] = ACTIONS(5019), - [sym_uri_autolink] = ACTIONS(5019), - [sym_email_autolink] = ACTIONS(5019), - [sym__whitespace_ge_2] = ACTIONS(5019), - [aux_sym__whitespace_token1] = ACTIONS(5021), - [sym__word_no_digit] = ACTIONS(5019), - [sym__digits] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [sym__code_span_start] = ACTIONS(5019), - [sym__emphasis_open_star] = ACTIONS(5019), - [sym__emphasis_open_underscore] = ACTIONS(5019), - [sym__strikeout_open] = ACTIONS(5019), - [sym__latex_span_start] = ACTIONS(5019), - [sym__single_quote_open] = ACTIONS(5019), - [sym__double_quote_open] = ACTIONS(5019), - [sym__superscript_open] = ACTIONS(5019), - [sym__subscript_open] = ACTIONS(5019), - [sym__subscript_close] = ACTIONS(5019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5019), - [sym__cite_author_in_text] = ACTIONS(5019), - [sym__cite_suppress_author] = ACTIONS(5019), - [sym__shortcode_open_escaped] = ACTIONS(5019), - [sym__shortcode_open] = ACTIONS(5019), - [sym__unclosed_span] = ACTIONS(5019), - [sym__strong_emphasis_open_star] = ACTIONS(5019), - [sym__strong_emphasis_open_underscore] = ACTIONS(5019), + [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_close_star] = ACTIONS(4687), + [sym__strong_emphasis_open_underscore] = ACTIONS(4687), }, [STATE(979)] = { - [sym__backslash_escape] = ACTIONS(5023), - [sym_entity_reference] = ACTIONS(5023), - [sym_numeric_character_reference] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [sym__newline_token] = ACTIONS(5023), - [aux_sym_insert_token1] = ACTIONS(5023), - [aux_sym_delete_token1] = ACTIONS(5023), - [aux_sym_highlight_token1] = ACTIONS(5023), - [aux_sym_edit_comment_token1] = ACTIONS(5023), - [anon_sym_CARET_LBRACK] = ACTIONS(5023), - [anon_sym_LBRACK_CARET] = ACTIONS(5023), - [sym_uri_autolink] = ACTIONS(5023), - [sym_email_autolink] = ACTIONS(5023), - [sym__whitespace_ge_2] = ACTIONS(5023), - [aux_sym__whitespace_token1] = ACTIONS(5025), - [sym__word_no_digit] = ACTIONS(5023), - [sym__digits] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5023), - [sym__code_span_start] = ACTIONS(5023), - [sym__emphasis_open_star] = ACTIONS(5023), - [sym__emphasis_open_underscore] = ACTIONS(5023), - [sym__strikeout_open] = ACTIONS(5023), - [sym__latex_span_start] = ACTIONS(5023), - [sym__single_quote_open] = ACTIONS(5023), - [sym__double_quote_open] = ACTIONS(5023), - [sym__superscript_open] = ACTIONS(5023), - [sym__subscript_open] = ACTIONS(5023), - [sym__subscript_close] = ACTIONS(5023), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5023), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5023), - [sym__cite_author_in_text] = ACTIONS(5023), - [sym__cite_suppress_author] = ACTIONS(5023), - [sym__shortcode_open_escaped] = ACTIONS(5023), - [sym__shortcode_open] = ACTIONS(5023), - [sym__unclosed_span] = ACTIONS(5023), - [sym__strong_emphasis_open_star] = ACTIONS(5023), - [sym__strong_emphasis_open_underscore] = ACTIONS(5023), + [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_close_star] = ACTIONS(4691), + [sym__strong_emphasis_open_underscore] = ACTIONS(4691), }, [STATE(980)] = { - [sym__backslash_escape] = ACTIONS(5027), - [sym_entity_reference] = ACTIONS(5027), - [sym_numeric_character_reference] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [sym__newline_token] = ACTIONS(5027), - [aux_sym_insert_token1] = ACTIONS(5027), - [aux_sym_delete_token1] = ACTIONS(5027), - [aux_sym_highlight_token1] = ACTIONS(5027), - [aux_sym_edit_comment_token1] = ACTIONS(5027), - [anon_sym_CARET_LBRACK] = ACTIONS(5027), - [anon_sym_LBRACK_CARET] = ACTIONS(5027), - [sym_uri_autolink] = ACTIONS(5027), - [sym_email_autolink] = ACTIONS(5027), - [sym__whitespace_ge_2] = ACTIONS(5027), - [aux_sym__whitespace_token1] = ACTIONS(5029), - [sym__word_no_digit] = ACTIONS(5027), - [sym__digits] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5027), - [sym__code_span_start] = ACTIONS(5027), - [sym__emphasis_open_star] = ACTIONS(5027), - [sym__emphasis_open_underscore] = ACTIONS(5027), - [sym__strikeout_open] = ACTIONS(5027), - [sym__latex_span_start] = ACTIONS(5027), - [sym__single_quote_open] = ACTIONS(5027), - [sym__double_quote_open] = ACTIONS(5027), - [sym__superscript_open] = ACTIONS(5027), - [sym__subscript_open] = ACTIONS(5027), - [sym__subscript_close] = ACTIONS(5027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5027), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5027), - [sym__cite_author_in_text] = ACTIONS(5027), - [sym__cite_suppress_author] = ACTIONS(5027), - [sym__shortcode_open_escaped] = ACTIONS(5027), - [sym__shortcode_open] = ACTIONS(5027), - [sym__unclosed_span] = ACTIONS(5027), - [sym__strong_emphasis_open_star] = ACTIONS(5027), - [sym__strong_emphasis_open_underscore] = ACTIONS(5027), + [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_close_star] = ACTIONS(4695), + [sym__strong_emphasis_open_underscore] = ACTIONS(4695), }, [STATE(981)] = { - [sym__backslash_escape] = ACTIONS(5031), - [sym_entity_reference] = ACTIONS(5031), - [sym_numeric_character_reference] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_BSLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_BQUOTE] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [sym__newline_token] = ACTIONS(5031), - [aux_sym_insert_token1] = ACTIONS(5031), - [aux_sym_delete_token1] = ACTIONS(5031), - [aux_sym_highlight_token1] = ACTIONS(5031), - [aux_sym_edit_comment_token1] = ACTIONS(5031), - [anon_sym_CARET_LBRACK] = ACTIONS(5031), - [anon_sym_LBRACK_CARET] = ACTIONS(5031), - [sym_uri_autolink] = ACTIONS(5031), - [sym_email_autolink] = ACTIONS(5031), - [sym__whitespace_ge_2] = ACTIONS(5031), - [aux_sym__whitespace_token1] = ACTIONS(5033), - [sym__word_no_digit] = ACTIONS(5031), - [sym__digits] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [sym__code_span_start] = ACTIONS(5031), - [sym__emphasis_open_star] = ACTIONS(5031), - [sym__emphasis_open_underscore] = ACTIONS(5031), - [sym__strikeout_open] = ACTIONS(5031), - [sym__latex_span_start] = ACTIONS(5031), - [sym__single_quote_open] = ACTIONS(5031), - [sym__double_quote_open] = ACTIONS(5031), - [sym__superscript_open] = ACTIONS(5031), - [sym__subscript_open] = ACTIONS(5031), - [sym__subscript_close] = ACTIONS(5031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5031), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5031), - [sym__cite_author_in_text] = ACTIONS(5031), - [sym__cite_suppress_author] = ACTIONS(5031), - [sym__shortcode_open_escaped] = ACTIONS(5031), - [sym__shortcode_open] = ACTIONS(5031), - [sym__unclosed_span] = ACTIONS(5031), - [sym__strong_emphasis_open_star] = ACTIONS(5031), - [sym__strong_emphasis_open_underscore] = ACTIONS(5031), + [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_close_star] = ACTIONS(4699), + [sym__strong_emphasis_open_underscore] = ACTIONS(4699), }, [STATE(982)] = { - [sym__backslash_escape] = ACTIONS(5035), - [sym_entity_reference] = ACTIONS(5035), - [sym_numeric_character_reference] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_DQUOTE] = ACTIONS(5035), - [anon_sym_POUND] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_BSLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [sym__newline_token] = ACTIONS(5035), - [aux_sym_insert_token1] = ACTIONS(5035), - [aux_sym_delete_token1] = ACTIONS(5035), - [aux_sym_highlight_token1] = ACTIONS(5035), - [aux_sym_edit_comment_token1] = ACTIONS(5035), - [anon_sym_CARET_LBRACK] = ACTIONS(5035), - [anon_sym_LBRACK_CARET] = ACTIONS(5035), - [sym_uri_autolink] = ACTIONS(5035), - [sym_email_autolink] = ACTIONS(5035), - [sym__whitespace_ge_2] = ACTIONS(5035), - [aux_sym__whitespace_token1] = ACTIONS(5037), - [sym__word_no_digit] = ACTIONS(5035), - [sym__digits] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5035), - [sym__code_span_start] = ACTIONS(5035), - [sym__emphasis_open_star] = ACTIONS(5035), - [sym__emphasis_open_underscore] = ACTIONS(5035), - [sym__strikeout_open] = ACTIONS(5035), - [sym__latex_span_start] = ACTIONS(5035), - [sym__single_quote_open] = ACTIONS(5035), - [sym__double_quote_open] = ACTIONS(5035), - [sym__superscript_open] = ACTIONS(5035), - [sym__subscript_open] = ACTIONS(5035), - [sym__subscript_close] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5035), - [sym__cite_author_in_text] = ACTIONS(5035), - [sym__cite_suppress_author] = ACTIONS(5035), - [sym__shortcode_open_escaped] = ACTIONS(5035), - [sym__shortcode_open] = ACTIONS(5035), - [sym__unclosed_span] = ACTIONS(5035), - [sym__strong_emphasis_open_star] = ACTIONS(5035), - [sym__strong_emphasis_open_underscore] = ACTIONS(5035), + [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_close_star] = ACTIONS(4703), + [sym__strong_emphasis_open_underscore] = ACTIONS(4703), }, [STATE(983)] = { - [sym__backslash_escape] = ACTIONS(5039), - [sym_entity_reference] = ACTIONS(5039), - [sym_numeric_character_reference] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(5039), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_BSLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [sym__newline_token] = ACTIONS(5039), - [aux_sym_insert_token1] = ACTIONS(5039), - [aux_sym_delete_token1] = ACTIONS(5039), - [aux_sym_highlight_token1] = ACTIONS(5039), - [aux_sym_edit_comment_token1] = ACTIONS(5039), - [anon_sym_CARET_LBRACK] = ACTIONS(5039), - [anon_sym_LBRACK_CARET] = ACTIONS(5039), - [sym_uri_autolink] = ACTIONS(5039), - [sym_email_autolink] = ACTIONS(5039), - [sym__whitespace_ge_2] = ACTIONS(5039), - [aux_sym__whitespace_token1] = ACTIONS(5041), - [sym__word_no_digit] = ACTIONS(5039), - [sym__digits] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5039), - [sym__code_span_start] = ACTIONS(5039), - [sym__emphasis_open_star] = ACTIONS(5039), - [sym__emphasis_open_underscore] = ACTIONS(5039), - [sym__strikeout_open] = ACTIONS(5039), - [sym__latex_span_start] = ACTIONS(5039), - [sym__single_quote_open] = ACTIONS(5039), - [sym__double_quote_open] = ACTIONS(5039), - [sym__superscript_open] = ACTIONS(5039), - [sym__subscript_open] = ACTIONS(5039), - [sym__subscript_close] = ACTIONS(5039), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5039), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5039), - [sym__cite_author_in_text] = ACTIONS(5039), - [sym__cite_suppress_author] = ACTIONS(5039), - [sym__shortcode_open_escaped] = ACTIONS(5039), - [sym__shortcode_open] = ACTIONS(5039), - [sym__unclosed_span] = ACTIONS(5039), - [sym__strong_emphasis_open_star] = ACTIONS(5039), - [sym__strong_emphasis_open_underscore] = ACTIONS(5039), + [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_close_star] = ACTIONS(4707), + [sym__strong_emphasis_open_underscore] = ACTIONS(4707), }, [STATE(984)] = { - [sym__backslash_escape] = ACTIONS(5043), - [sym_entity_reference] = ACTIONS(5043), - [sym_numeric_character_reference] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_DQUOTE] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_QMARK] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_BSLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [sym__newline_token] = ACTIONS(5043), - [aux_sym_insert_token1] = ACTIONS(5043), - [aux_sym_delete_token1] = ACTIONS(5043), - [aux_sym_highlight_token1] = ACTIONS(5043), - [aux_sym_edit_comment_token1] = ACTIONS(5043), - [anon_sym_CARET_LBRACK] = ACTIONS(5043), - [anon_sym_LBRACK_CARET] = ACTIONS(5043), - [sym_uri_autolink] = ACTIONS(5043), - [sym_email_autolink] = ACTIONS(5043), - [sym__whitespace_ge_2] = ACTIONS(5043), - [aux_sym__whitespace_token1] = ACTIONS(5045), - [sym__word_no_digit] = ACTIONS(5043), - [sym__digits] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), - [sym__code_span_start] = ACTIONS(5043), - [sym__emphasis_open_star] = ACTIONS(5043), - [sym__emphasis_open_underscore] = ACTIONS(5043), - [sym__strikeout_open] = ACTIONS(5043), - [sym__latex_span_start] = ACTIONS(5043), - [sym__single_quote_open] = ACTIONS(5043), - [sym__double_quote_open] = ACTIONS(5043), - [sym__superscript_open] = ACTIONS(5043), - [sym__subscript_open] = ACTIONS(5043), - [sym__subscript_close] = ACTIONS(5043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5043), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5043), - [sym__cite_author_in_text] = ACTIONS(5043), - [sym__cite_suppress_author] = ACTIONS(5043), - [sym__shortcode_open_escaped] = ACTIONS(5043), - [sym__shortcode_open] = ACTIONS(5043), - [sym__unclosed_span] = ACTIONS(5043), - [sym__strong_emphasis_open_star] = ACTIONS(5043), - [sym__strong_emphasis_open_underscore] = ACTIONS(5043), + [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__strikeout_open] = ACTIONS(4559), + [sym__latex_span_start] = ACTIONS(4559), + [sym__single_quote_open] = ACTIONS(4559), + [sym__double_quote_open] = ACTIONS(4559), + [sym__double_quote_close] = 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(985)] = { - [sym__backslash_escape] = ACTIONS(5047), - [sym_entity_reference] = ACTIONS(5047), - [sym_numeric_character_reference] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(5047), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [sym__newline_token] = ACTIONS(5047), - [aux_sym_insert_token1] = ACTIONS(5047), - [aux_sym_delete_token1] = ACTIONS(5047), - [aux_sym_highlight_token1] = ACTIONS(5047), - [aux_sym_edit_comment_token1] = ACTIONS(5047), - [anon_sym_CARET_LBRACK] = ACTIONS(5047), - [anon_sym_LBRACK_CARET] = ACTIONS(5047), - [sym_uri_autolink] = ACTIONS(5047), - [sym_email_autolink] = ACTIONS(5047), - [sym__whitespace_ge_2] = ACTIONS(5047), - [aux_sym__whitespace_token1] = ACTIONS(5049), - [sym__word_no_digit] = ACTIONS(5047), - [sym__digits] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5047), - [sym__code_span_start] = ACTIONS(5047), - [sym__emphasis_open_star] = ACTIONS(5047), - [sym__emphasis_open_underscore] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5047), - [sym__latex_span_start] = ACTIONS(5047), - [sym__single_quote_open] = ACTIONS(5047), - [sym__double_quote_open] = ACTIONS(5047), - [sym__superscript_open] = ACTIONS(5047), - [sym__subscript_open] = ACTIONS(5047), - [sym__subscript_close] = ACTIONS(5047), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5047), - [sym__cite_author_in_text] = ACTIONS(5047), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__shortcode_open_escaped] = ACTIONS(5047), - [sym__shortcode_open] = ACTIONS(5047), - [sym__unclosed_span] = ACTIONS(5047), - [sym__strong_emphasis_open_star] = ACTIONS(5047), - [sym__strong_emphasis_open_underscore] = ACTIONS(5047), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_close_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(986)] = { - [sym__backslash_escape] = ACTIONS(5051), - [sym_entity_reference] = ACTIONS(5051), - [sym_numeric_character_reference] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_BSLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [sym__newline_token] = ACTIONS(5051), - [aux_sym_insert_token1] = ACTIONS(5051), - [aux_sym_delete_token1] = ACTIONS(5051), - [aux_sym_highlight_token1] = ACTIONS(5051), - [aux_sym_edit_comment_token1] = ACTIONS(5051), - [anon_sym_CARET_LBRACK] = ACTIONS(5051), - [anon_sym_LBRACK_CARET] = ACTIONS(5051), - [sym_uri_autolink] = ACTIONS(5051), - [sym_email_autolink] = ACTIONS(5051), - [sym__whitespace_ge_2] = ACTIONS(5051), - [aux_sym__whitespace_token1] = ACTIONS(5053), - [sym__word_no_digit] = ACTIONS(5051), - [sym__digits] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5051), - [sym__code_span_start] = ACTIONS(5051), - [sym__emphasis_open_star] = ACTIONS(5051), - [sym__emphasis_open_underscore] = ACTIONS(5051), - [sym__strikeout_open] = ACTIONS(5051), - [sym__latex_span_start] = ACTIONS(5051), - [sym__single_quote_open] = ACTIONS(5051), - [sym__double_quote_open] = ACTIONS(5051), - [sym__superscript_open] = ACTIONS(5051), - [sym__subscript_open] = ACTIONS(5051), - [sym__subscript_close] = ACTIONS(5051), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5051), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5051), - [sym__cite_author_in_text] = ACTIONS(5051), - [sym__cite_suppress_author] = ACTIONS(5051), - [sym__shortcode_open_escaped] = ACTIONS(5051), - [sym__shortcode_open] = ACTIONS(5051), - [sym__unclosed_span] = ACTIONS(5051), - [sym__strong_emphasis_open_star] = ACTIONS(5051), - [sym__strong_emphasis_open_underscore] = ACTIONS(5051), + [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__double_quote_close] = 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(987)] = { - [sym__backslash_escape] = ACTIONS(5055), - [sym_entity_reference] = ACTIONS(5055), - [sym_numeric_character_reference] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(5055), - [anon_sym_POUND] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_BSLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_BQUOTE] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [sym__newline_token] = ACTIONS(5055), - [aux_sym_insert_token1] = ACTIONS(5055), - [aux_sym_delete_token1] = ACTIONS(5055), - [aux_sym_highlight_token1] = ACTIONS(5055), - [aux_sym_edit_comment_token1] = ACTIONS(5055), - [anon_sym_CARET_LBRACK] = ACTIONS(5055), - [anon_sym_LBRACK_CARET] = ACTIONS(5055), - [sym_uri_autolink] = ACTIONS(5055), - [sym_email_autolink] = ACTIONS(5055), - [sym__whitespace_ge_2] = ACTIONS(5055), - [aux_sym__whitespace_token1] = ACTIONS(5057), - [sym__word_no_digit] = ACTIONS(5055), - [sym__digits] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5055), - [sym__code_span_start] = ACTIONS(5055), - [sym__emphasis_open_star] = ACTIONS(5055), - [sym__emphasis_open_underscore] = ACTIONS(5055), - [sym__strikeout_open] = ACTIONS(5055), - [sym__latex_span_start] = ACTIONS(5055), - [sym__single_quote_open] = ACTIONS(5055), - [sym__double_quote_open] = ACTIONS(5055), - [sym__superscript_open] = ACTIONS(5055), - [sym__subscript_open] = ACTIONS(5055), - [sym__subscript_close] = ACTIONS(5055), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5055), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5055), - [sym__cite_author_in_text] = ACTIONS(5055), - [sym__cite_suppress_author] = ACTIONS(5055), - [sym__shortcode_open_escaped] = ACTIONS(5055), - [sym__shortcode_open] = ACTIONS(5055), - [sym__unclosed_span] = ACTIONS(5055), - [sym__strong_emphasis_open_star] = ACTIONS(5055), - [sym__strong_emphasis_open_underscore] = ACTIONS(5055), + [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_close_star] = ACTIONS(4711), + [sym__strong_emphasis_open_underscore] = ACTIONS(4711), }, [STATE(988)] = { - [sym__backslash_escape] = ACTIONS(5059), - [sym_entity_reference] = ACTIONS(5059), - [sym_numeric_character_reference] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_DQUOTE] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_BSLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [sym__newline_token] = ACTIONS(5059), - [aux_sym_insert_token1] = ACTIONS(5059), - [aux_sym_delete_token1] = ACTIONS(5059), - [aux_sym_highlight_token1] = ACTIONS(5059), - [aux_sym_edit_comment_token1] = ACTIONS(5059), - [anon_sym_CARET_LBRACK] = ACTIONS(5059), - [anon_sym_LBRACK_CARET] = ACTIONS(5059), - [sym_uri_autolink] = ACTIONS(5059), - [sym_email_autolink] = ACTIONS(5059), - [sym__whitespace_ge_2] = ACTIONS(5059), - [aux_sym__whitespace_token1] = ACTIONS(5061), - [sym__word_no_digit] = ACTIONS(5059), - [sym__digits] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5059), - [sym__code_span_start] = ACTIONS(5059), - [sym__emphasis_open_star] = ACTIONS(5059), - [sym__emphasis_open_underscore] = ACTIONS(5059), - [sym__strikeout_open] = ACTIONS(5059), - [sym__latex_span_start] = ACTIONS(5059), - [sym__single_quote_open] = ACTIONS(5059), - [sym__double_quote_open] = ACTIONS(5059), - [sym__superscript_open] = ACTIONS(5059), - [sym__subscript_open] = ACTIONS(5059), - [sym__subscript_close] = ACTIONS(5059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5059), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5059), - [sym__cite_author_in_text] = ACTIONS(5059), - [sym__cite_suppress_author] = ACTIONS(5059), - [sym__shortcode_open_escaped] = ACTIONS(5059), - [sym__shortcode_open] = ACTIONS(5059), - [sym__unclosed_span] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5059), - [sym__strong_emphasis_open_underscore] = ACTIONS(5059), + [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(989)] = { - [sym__backslash_escape] = ACTIONS(5063), - [sym_entity_reference] = ACTIONS(5063), - [sym_numeric_character_reference] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_BSLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_BQUOTE] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [sym__newline_token] = ACTIONS(5063), - [aux_sym_insert_token1] = ACTIONS(5063), - [aux_sym_delete_token1] = ACTIONS(5063), - [aux_sym_highlight_token1] = ACTIONS(5063), - [aux_sym_edit_comment_token1] = ACTIONS(5063), - [anon_sym_CARET_LBRACK] = ACTIONS(5063), - [anon_sym_LBRACK_CARET] = ACTIONS(5063), - [sym_uri_autolink] = ACTIONS(5063), - [sym_email_autolink] = ACTIONS(5063), - [sym__whitespace_ge_2] = ACTIONS(5063), - [aux_sym__whitespace_token1] = ACTIONS(5065), - [sym__word_no_digit] = ACTIONS(5063), - [sym__digits] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5063), - [sym__code_span_start] = ACTIONS(5063), - [sym__emphasis_open_star] = ACTIONS(5063), - [sym__emphasis_open_underscore] = ACTIONS(5063), - [sym__strikeout_open] = ACTIONS(5063), - [sym__latex_span_start] = ACTIONS(5063), - [sym__single_quote_open] = ACTIONS(5063), - [sym__double_quote_open] = ACTIONS(5063), - [sym__superscript_open] = ACTIONS(5063), - [sym__subscript_open] = ACTIONS(5063), - [sym__subscript_close] = ACTIONS(5063), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5063), - [sym__cite_author_in_text] = ACTIONS(5063), - [sym__cite_suppress_author] = ACTIONS(5063), - [sym__shortcode_open_escaped] = ACTIONS(5063), - [sym__shortcode_open] = ACTIONS(5063), - [sym__unclosed_span] = ACTIONS(5063), - [sym__strong_emphasis_open_star] = ACTIONS(5063), - [sym__strong_emphasis_open_underscore] = ACTIONS(5063), + [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_close_star] = ACTIONS(4715), + [sym__strong_emphasis_open_underscore] = ACTIONS(4715), }, [STATE(990)] = { - [sym__backslash_escape] = ACTIONS(5067), - [sym_entity_reference] = ACTIONS(5067), - [sym_numeric_character_reference] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DQUOTE] = ACTIONS(5067), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_COLON] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [sym__newline_token] = ACTIONS(5067), - [aux_sym_insert_token1] = ACTIONS(5067), - [aux_sym_delete_token1] = ACTIONS(5067), - [aux_sym_highlight_token1] = ACTIONS(5067), - [aux_sym_edit_comment_token1] = ACTIONS(5067), - [anon_sym_CARET_LBRACK] = ACTIONS(5067), - [anon_sym_LBRACK_CARET] = ACTIONS(5067), - [sym_uri_autolink] = ACTIONS(5067), - [sym_email_autolink] = ACTIONS(5067), - [sym__whitespace_ge_2] = ACTIONS(5067), - [aux_sym__whitespace_token1] = ACTIONS(5069), - [sym__word_no_digit] = ACTIONS(5067), - [sym__digits] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5067), - [sym__code_span_start] = ACTIONS(5067), - [sym__emphasis_open_star] = ACTIONS(5067), - [sym__emphasis_open_underscore] = ACTIONS(5067), - [sym__strikeout_open] = ACTIONS(5067), - [sym__latex_span_start] = ACTIONS(5067), - [sym__single_quote_open] = ACTIONS(5067), - [sym__double_quote_open] = ACTIONS(5067), - [sym__superscript_open] = ACTIONS(5067), - [sym__subscript_open] = ACTIONS(5067), - [sym__subscript_close] = ACTIONS(5067), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5067), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5067), - [sym__cite_author_in_text] = ACTIONS(5067), - [sym__cite_suppress_author] = ACTIONS(5067), - [sym__shortcode_open_escaped] = ACTIONS(5067), - [sym__shortcode_open] = ACTIONS(5067), - [sym__unclosed_span] = ACTIONS(5067), - [sym__strong_emphasis_open_star] = ACTIONS(5067), - [sym__strong_emphasis_open_underscore] = ACTIONS(5067), + [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_close_star] = ACTIONS(4719), + [sym__strong_emphasis_open_underscore] = ACTIONS(4719), }, [STATE(991)] = { - [sym__backslash_escape] = ACTIONS(5071), - [sym_entity_reference] = ACTIONS(5071), - [sym_numeric_character_reference] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_POUND] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [sym__newline_token] = ACTIONS(5071), - [aux_sym_insert_token1] = ACTIONS(5071), - [aux_sym_delete_token1] = ACTIONS(5071), - [aux_sym_highlight_token1] = ACTIONS(5071), - [aux_sym_edit_comment_token1] = ACTIONS(5071), - [anon_sym_CARET_LBRACK] = ACTIONS(5071), - [anon_sym_LBRACK_CARET] = ACTIONS(5071), - [sym_uri_autolink] = ACTIONS(5071), - [sym_email_autolink] = ACTIONS(5071), - [sym__whitespace_ge_2] = ACTIONS(5071), - [aux_sym__whitespace_token1] = ACTIONS(5073), - [sym__word_no_digit] = ACTIONS(5071), - [sym__digits] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5071), - [sym__code_span_start] = ACTIONS(5071), - [sym__emphasis_open_star] = ACTIONS(5071), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym__strikeout_open] = ACTIONS(5071), - [sym__latex_span_start] = ACTIONS(5071), - [sym__single_quote_open] = ACTIONS(5071), - [sym__double_quote_open] = ACTIONS(5071), - [sym__superscript_open] = ACTIONS(5071), - [sym__subscript_open] = ACTIONS(5071), - [sym__subscript_close] = ACTIONS(5071), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5071), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5071), - [sym__cite_author_in_text] = ACTIONS(5071), - [sym__cite_suppress_author] = ACTIONS(5071), - [sym__shortcode_open_escaped] = ACTIONS(5071), - [sym__shortcode_open] = ACTIONS(5071), - [sym__unclosed_span] = ACTIONS(5071), - [sym__strong_emphasis_open_star] = ACTIONS(5071), - [sym__strong_emphasis_open_underscore] = ACTIONS(5071), + [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_close_star] = ACTIONS(4723), + [sym__strong_emphasis_open_underscore] = ACTIONS(4723), }, [STATE(992)] = { - [sym__backslash_escape] = ACTIONS(5075), - [sym_entity_reference] = ACTIONS(5075), - [sym_numeric_character_reference] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_QMARK] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_BSLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [sym__newline_token] = ACTIONS(5075), - [aux_sym_insert_token1] = ACTIONS(5075), - [aux_sym_delete_token1] = ACTIONS(5075), - [aux_sym_highlight_token1] = ACTIONS(5075), - [aux_sym_edit_comment_token1] = ACTIONS(5075), - [anon_sym_CARET_LBRACK] = ACTIONS(5075), - [anon_sym_LBRACK_CARET] = ACTIONS(5075), - [sym_uri_autolink] = ACTIONS(5075), - [sym_email_autolink] = ACTIONS(5075), - [sym__whitespace_ge_2] = ACTIONS(5075), - [aux_sym__whitespace_token1] = ACTIONS(5077), - [sym__word_no_digit] = ACTIONS(5075), - [sym__digits] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5075), - [sym__code_span_start] = ACTIONS(5075), - [sym__emphasis_open_star] = ACTIONS(5075), - [sym__emphasis_open_underscore] = ACTIONS(5075), - [sym__strikeout_open] = ACTIONS(5075), - [sym__latex_span_start] = ACTIONS(5075), - [sym__single_quote_open] = ACTIONS(5075), - [sym__double_quote_open] = ACTIONS(5075), - [sym__superscript_open] = ACTIONS(5075), - [sym__subscript_open] = ACTIONS(5075), - [sym__subscript_close] = ACTIONS(5075), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5075), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5075), - [sym__cite_author_in_text] = ACTIONS(5075), - [sym__cite_suppress_author] = ACTIONS(5075), - [sym__shortcode_open_escaped] = ACTIONS(5075), - [sym__shortcode_open] = ACTIONS(5075), - [sym__unclosed_span] = ACTIONS(5075), - [sym__strong_emphasis_open_star] = ACTIONS(5075), - [sym__strong_emphasis_open_underscore] = ACTIONS(5075), + [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_close_star] = ACTIONS(4727), + [sym__strong_emphasis_open_underscore] = ACTIONS(4727), }, [STATE(993)] = { - [sym__backslash_escape] = ACTIONS(5079), - [sym_entity_reference] = ACTIONS(5079), - [sym_numeric_character_reference] = ACTIONS(5079), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_DQUOTE] = ACTIONS(5079), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_QMARK] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BSLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5079), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [sym__newline_token] = ACTIONS(5079), - [aux_sym_insert_token1] = ACTIONS(5079), - [aux_sym_delete_token1] = ACTIONS(5079), - [aux_sym_highlight_token1] = ACTIONS(5079), - [aux_sym_edit_comment_token1] = ACTIONS(5079), - [anon_sym_CARET_LBRACK] = ACTIONS(5079), - [anon_sym_LBRACK_CARET] = ACTIONS(5079), - [sym_uri_autolink] = ACTIONS(5079), - [sym_email_autolink] = ACTIONS(5079), - [sym__whitespace_ge_2] = ACTIONS(5079), - [aux_sym__whitespace_token1] = ACTIONS(5081), - [sym__word_no_digit] = ACTIONS(5079), - [sym__digits] = ACTIONS(5079), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5079), - [sym__code_span_start] = ACTIONS(5079), - [sym__emphasis_open_star] = ACTIONS(5079), - [sym__emphasis_open_underscore] = ACTIONS(5079), - [sym__strikeout_open] = ACTIONS(5079), - [sym__latex_span_start] = ACTIONS(5079), - [sym__single_quote_open] = ACTIONS(5079), - [sym__double_quote_open] = ACTIONS(5079), - [sym__superscript_open] = ACTIONS(5079), - [sym__subscript_open] = ACTIONS(5079), - [sym__subscript_close] = ACTIONS(5079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5079), - [sym__cite_author_in_text] = ACTIONS(5079), - [sym__cite_suppress_author] = ACTIONS(5079), - [sym__shortcode_open_escaped] = ACTIONS(5079), - [sym__shortcode_open] = ACTIONS(5079), - [sym__unclosed_span] = ACTIONS(5079), - [sym__strong_emphasis_open_star] = ACTIONS(5079), - [sym__strong_emphasis_open_underscore] = ACTIONS(5079), + [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_close_star] = ACTIONS(4731), + [sym__strong_emphasis_open_underscore] = ACTIONS(4731), }, [STATE(994)] = { - [sym__backslash_escape] = ACTIONS(5083), - [sym_entity_reference] = ACTIONS(5083), - [sym_numeric_character_reference] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOT] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_QMARK] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_BSLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym_BQUOTE] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [sym__newline_token] = ACTIONS(5083), - [aux_sym_insert_token1] = ACTIONS(5083), - [aux_sym_delete_token1] = ACTIONS(5083), - [aux_sym_highlight_token1] = ACTIONS(5083), - [aux_sym_edit_comment_token1] = ACTIONS(5083), - [anon_sym_CARET_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_CARET] = ACTIONS(5083), - [sym_uri_autolink] = ACTIONS(5083), - [sym_email_autolink] = ACTIONS(5083), - [sym__whitespace_ge_2] = ACTIONS(5083), - [aux_sym__whitespace_token1] = ACTIONS(5085), - [sym__word_no_digit] = ACTIONS(5083), - [sym__digits] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5083), - [sym__code_span_start] = ACTIONS(5083), - [sym__emphasis_open_star] = ACTIONS(5083), - [sym__emphasis_open_underscore] = ACTIONS(5083), - [sym__strikeout_open] = ACTIONS(5083), - [sym__latex_span_start] = ACTIONS(5083), - [sym__single_quote_open] = ACTIONS(5083), - [sym__double_quote_open] = ACTIONS(5083), - [sym__superscript_open] = ACTIONS(5083), - [sym__subscript_open] = ACTIONS(5083), - [sym__subscript_close] = ACTIONS(5083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5083), - [sym__cite_author_in_text] = ACTIONS(5083), - [sym__cite_suppress_author] = ACTIONS(5083), - [sym__shortcode_open_escaped] = ACTIONS(5083), - [sym__shortcode_open] = ACTIONS(5083), - [sym__unclosed_span] = ACTIONS(5083), - [sym__strong_emphasis_open_star] = ACTIONS(5083), - [sym__strong_emphasis_open_underscore] = ACTIONS(5083), + [sym__backslash_escape] = ACTIONS(4523), + [sym_entity_reference] = ACTIONS(4523), + [sym_numeric_character_reference] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_BSLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [sym__newline_token] = ACTIONS(4523), + [aux_sym_insert_token1] = ACTIONS(4523), + [aux_sym_delete_token1] = ACTIONS(4523), + [aux_sym_highlight_token1] = ACTIONS(4523), + [aux_sym_edit_comment_token1] = ACTIONS(4523), + [anon_sym_CARET_LBRACK] = ACTIONS(4523), + [anon_sym_LBRACK_CARET] = ACTIONS(4523), + [sym_uri_autolink] = ACTIONS(4523), + [sym_email_autolink] = ACTIONS(4523), + [sym__whitespace_ge_2] = ACTIONS(4523), + [aux_sym__whitespace_token1] = ACTIONS(4525), + [sym__word_no_digit] = ACTIONS(4523), + [sym__digits] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4523), + [sym__code_span_start] = ACTIONS(4523), + [sym__emphasis_open_star] = ACTIONS(4523), + [sym__emphasis_open_underscore] = ACTIONS(4523), + [sym__strikeout_open] = ACTIONS(4523), + [sym__latex_span_start] = ACTIONS(4523), + [sym__single_quote_open] = ACTIONS(4523), + [sym__double_quote_open] = ACTIONS(4523), + [sym__double_quote_close] = ACTIONS(4523), + [sym__superscript_open] = ACTIONS(4523), + [sym__subscript_open] = ACTIONS(4523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4523), + [sym__cite_author_in_text] = ACTIONS(4523), + [sym__cite_suppress_author] = ACTIONS(4523), + [sym__shortcode_open_escaped] = ACTIONS(4523), + [sym__shortcode_open] = ACTIONS(4523), + [sym__unclosed_span] = ACTIONS(4523), + [sym__strong_emphasis_open_star] = ACTIONS(4523), + [sym__strong_emphasis_open_underscore] = ACTIONS(4523), }, [STATE(995)] = { - [sym__backslash_escape] = ACTIONS(5087), - [sym_entity_reference] = ACTIONS(5087), - [sym_numeric_character_reference] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_DQUOTE] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_AMP] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_QMARK] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym_BQUOTE] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_PIPE] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [sym__newline_token] = ACTIONS(5087), - [aux_sym_insert_token1] = ACTIONS(5087), - [aux_sym_delete_token1] = ACTIONS(5087), - [aux_sym_highlight_token1] = ACTIONS(5087), - [aux_sym_edit_comment_token1] = ACTIONS(5087), - [anon_sym_CARET_LBRACK] = ACTIONS(5087), - [anon_sym_LBRACK_CARET] = ACTIONS(5087), - [sym_uri_autolink] = ACTIONS(5087), - [sym_email_autolink] = ACTIONS(5087), - [sym__whitespace_ge_2] = ACTIONS(5087), - [aux_sym__whitespace_token1] = ACTIONS(5089), - [sym__word_no_digit] = ACTIONS(5087), - [sym__digits] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5087), - [sym__code_span_start] = ACTIONS(5087), - [sym__emphasis_open_star] = ACTIONS(5087), - [sym__emphasis_open_underscore] = ACTIONS(5087), - [sym__strikeout_open] = ACTIONS(5087), - [sym__latex_span_start] = ACTIONS(5087), - [sym__single_quote_open] = ACTIONS(5087), - [sym__double_quote_open] = ACTIONS(5087), - [sym__superscript_open] = ACTIONS(5087), - [sym__subscript_open] = ACTIONS(5087), - [sym__subscript_close] = ACTIONS(5087), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5087), - [sym__cite_author_in_text] = ACTIONS(5087), - [sym__cite_suppress_author] = ACTIONS(5087), - [sym__shortcode_open_escaped] = ACTIONS(5087), - [sym__shortcode_open] = ACTIONS(5087), - [sym__unclosed_span] = ACTIONS(5087), - [sym__strong_emphasis_open_star] = ACTIONS(5087), - [sym__strong_emphasis_open_underscore] = ACTIONS(5087), + [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_close_star] = ACTIONS(4735), + [sym__strong_emphasis_open_underscore] = ACTIONS(4735), }, [STATE(996)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__subscript_close] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [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_close_star] = ACTIONS(4739), + [sym__strong_emphasis_open_underscore] = ACTIONS(4739), }, [STATE(997)] = { - [ts_builtin_sym_end] = ACTIONS(4661), - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [sym__backslash_escape] = ACTIONS(4499), + [sym_entity_reference] = ACTIONS(4499), + [sym_numeric_character_reference] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4501), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_BSLASH] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_PIPE] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [sym__newline_token] = ACTIONS(4499), + [aux_sym_insert_token1] = ACTIONS(4499), + [aux_sym_delete_token1] = ACTIONS(4499), + [aux_sym_highlight_token1] = ACTIONS(4499), + [aux_sym_edit_comment_token1] = ACTIONS(4499), + [anon_sym_CARET_LBRACK] = ACTIONS(4499), + [anon_sym_LBRACK_CARET] = ACTIONS(4499), + [sym_uri_autolink] = ACTIONS(4499), + [sym_email_autolink] = ACTIONS(4499), + [sym__whitespace_ge_2] = ACTIONS(4499), + [aux_sym__whitespace_token1] = ACTIONS(4501), + [sym__word_no_digit] = ACTIONS(4499), + [sym__digits] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4499), + [sym__code_span_start] = ACTIONS(4499), + [sym__emphasis_open_star] = ACTIONS(4499), + [sym__emphasis_open_underscore] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4499), + [sym__latex_span_start] = ACTIONS(4499), + [sym__single_quote_open] = ACTIONS(4499), + [sym__double_quote_open] = ACTIONS(4499), + [sym__superscript_open] = ACTIONS(4499), + [sym__subscript_open] = ACTIONS(4499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4499), + [sym__cite_author_in_text] = ACTIONS(4499), + [sym__cite_suppress_author] = ACTIONS(4499), + [sym__shortcode_open_escaped] = ACTIONS(4499), + [sym__shortcode_open] = ACTIONS(4499), + [sym__unclosed_span] = ACTIONS(4499), + [sym__strong_emphasis_open_star] = ACTIONS(4499), + [sym__strong_emphasis_close_star] = ACTIONS(4499), + [sym__strong_emphasis_open_underscore] = ACTIONS(4499), }, [STATE(998)] = { - [sym__backslash_escape] = ACTIONS(5091), - [sym_entity_reference] = ACTIONS(5091), - [sym_numeric_character_reference] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(5091), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_BSLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym_BQUOTE] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [sym__newline_token] = ACTIONS(5091), - [aux_sym_insert_token1] = ACTIONS(5091), - [aux_sym_delete_token1] = ACTIONS(5091), - [aux_sym_highlight_token1] = ACTIONS(5091), - [aux_sym_edit_comment_token1] = ACTIONS(5091), - [anon_sym_CARET_LBRACK] = ACTIONS(5091), - [anon_sym_LBRACK_CARET] = ACTIONS(5091), - [sym_uri_autolink] = ACTIONS(5091), - [sym_email_autolink] = ACTIONS(5091), - [sym__whitespace_ge_2] = ACTIONS(5091), - [aux_sym__whitespace_token1] = ACTIONS(5093), - [sym__word_no_digit] = ACTIONS(5091), - [sym__digits] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), - [sym__code_span_start] = ACTIONS(5091), - [sym__emphasis_open_star] = ACTIONS(5091), - [sym__emphasis_open_underscore] = ACTIONS(5091), - [sym__strikeout_open] = ACTIONS(5091), - [sym__latex_span_start] = ACTIONS(5091), - [sym__single_quote_open] = ACTIONS(5091), - [sym__double_quote_open] = ACTIONS(5091), - [sym__superscript_open] = ACTIONS(5091), - [sym__subscript_open] = ACTIONS(5091), - [sym__subscript_close] = ACTIONS(5091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5091), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5091), - [sym__cite_author_in_text] = ACTIONS(5091), - [sym__cite_suppress_author] = ACTIONS(5091), - [sym__shortcode_open_escaped] = ACTIONS(5091), - [sym__shortcode_open] = ACTIONS(5091), - [sym__unclosed_span] = ACTIONS(5091), - [sym__strong_emphasis_open_star] = ACTIONS(5091), - [sym__strong_emphasis_open_underscore] = ACTIONS(5091), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_close_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(999)] = { - [sym__backslash_escape] = ACTIONS(5095), - [sym_entity_reference] = ACTIONS(5095), - [sym_numeric_character_reference] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_BSLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym_BQUOTE] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [sym__newline_token] = ACTIONS(5095), - [aux_sym_insert_token1] = ACTIONS(5095), - [aux_sym_delete_token1] = ACTIONS(5095), - [aux_sym_highlight_token1] = ACTIONS(5095), - [aux_sym_edit_comment_token1] = ACTIONS(5095), - [anon_sym_CARET_LBRACK] = ACTIONS(5095), - [anon_sym_LBRACK_CARET] = ACTIONS(5095), - [sym_uri_autolink] = ACTIONS(5095), - [sym_email_autolink] = ACTIONS(5095), - [sym__whitespace_ge_2] = ACTIONS(5095), - [aux_sym__whitespace_token1] = ACTIONS(5097), - [sym__word_no_digit] = ACTIONS(5095), - [sym__digits] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5095), - [sym__code_span_start] = ACTIONS(5095), - [sym__emphasis_open_star] = ACTIONS(5095), - [sym__emphasis_open_underscore] = ACTIONS(5095), - [sym__strikeout_open] = ACTIONS(5095), - [sym__latex_span_start] = ACTIONS(5095), - [sym__single_quote_open] = ACTIONS(5095), - [sym__double_quote_open] = ACTIONS(5095), - [sym__superscript_open] = ACTIONS(5095), - [sym__subscript_open] = ACTIONS(5095), - [sym__subscript_close] = ACTIONS(5095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5095), - [sym__cite_author_in_text] = ACTIONS(5095), - [sym__cite_suppress_author] = ACTIONS(5095), - [sym__shortcode_open_escaped] = ACTIONS(5095), - [sym__shortcode_open] = ACTIONS(5095), - [sym__unclosed_span] = ACTIONS(5095), - [sym__strong_emphasis_open_star] = ACTIONS(5095), - [sym__strong_emphasis_open_underscore] = ACTIONS(5095), + [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(1000)] = { - [sym__backslash_escape] = ACTIONS(5099), - [sym_entity_reference] = ACTIONS(5099), - [sym_numeric_character_reference] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [sym__newline_token] = ACTIONS(5099), - [aux_sym_insert_token1] = ACTIONS(5099), - [aux_sym_delete_token1] = ACTIONS(5099), - [aux_sym_highlight_token1] = ACTIONS(5099), - [aux_sym_edit_comment_token1] = ACTIONS(5099), - [anon_sym_CARET_LBRACK] = ACTIONS(5099), - [anon_sym_LBRACK_CARET] = ACTIONS(5099), - [sym_uri_autolink] = ACTIONS(5099), - [sym_email_autolink] = ACTIONS(5099), - [sym__whitespace_ge_2] = ACTIONS(5099), - [aux_sym__whitespace_token1] = ACTIONS(5101), - [sym__word_no_digit] = ACTIONS(5099), - [sym__digits] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5099), - [sym__code_span_start] = ACTIONS(5099), - [sym__emphasis_open_star] = ACTIONS(5099), - [sym__emphasis_open_underscore] = ACTIONS(5099), - [sym__strikeout_open] = ACTIONS(5099), - [sym__latex_span_start] = ACTIONS(5099), - [sym__single_quote_open] = ACTIONS(5099), - [sym__double_quote_open] = ACTIONS(5099), - [sym__superscript_open] = ACTIONS(5099), - [sym__subscript_open] = ACTIONS(5099), - [sym__subscript_close] = ACTIONS(5099), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5099), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5099), - [sym__cite_author_in_text] = ACTIONS(5099), - [sym__cite_suppress_author] = ACTIONS(5099), - [sym__shortcode_open_escaped] = ACTIONS(5099), - [sym__shortcode_open] = ACTIONS(5099), - [sym__unclosed_span] = ACTIONS(5099), - [sym__strong_emphasis_open_star] = ACTIONS(5099), - [sym__strong_emphasis_open_underscore] = ACTIONS(5099), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_close_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(1001)] = { - [sym__backslash_escape] = ACTIONS(5103), - [sym_entity_reference] = ACTIONS(5103), - [sym_numeric_character_reference] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(5103), - [anon_sym_POUND] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_BSLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [sym__newline_token] = ACTIONS(5103), - [aux_sym_insert_token1] = ACTIONS(5103), - [aux_sym_delete_token1] = ACTIONS(5103), - [aux_sym_highlight_token1] = ACTIONS(5103), - [aux_sym_edit_comment_token1] = ACTIONS(5103), - [anon_sym_CARET_LBRACK] = ACTIONS(5103), - [anon_sym_LBRACK_CARET] = ACTIONS(5103), - [sym_uri_autolink] = ACTIONS(5103), - [sym_email_autolink] = ACTIONS(5103), - [sym__whitespace_ge_2] = ACTIONS(5103), - [aux_sym__whitespace_token1] = ACTIONS(5105), - [sym__word_no_digit] = ACTIONS(5103), - [sym__digits] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5103), - [sym__code_span_start] = ACTIONS(5103), - [sym__emphasis_open_star] = ACTIONS(5103), - [sym__emphasis_open_underscore] = ACTIONS(5103), - [sym__strikeout_open] = ACTIONS(5103), - [sym__latex_span_start] = ACTIONS(5103), - [sym__single_quote_open] = ACTIONS(5103), - [sym__double_quote_open] = ACTIONS(5103), - [sym__superscript_open] = ACTIONS(5103), - [sym__subscript_open] = ACTIONS(5103), - [sym__subscript_close] = ACTIONS(5103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5103), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5103), - [sym__cite_author_in_text] = ACTIONS(5103), - [sym__cite_suppress_author] = ACTIONS(5103), - [sym__shortcode_open_escaped] = ACTIONS(5103), - [sym__shortcode_open] = ACTIONS(5103), - [sym__unclosed_span] = ACTIONS(5103), - [sym__strong_emphasis_open_star] = ACTIONS(5103), - [sym__strong_emphasis_open_underscore] = ACTIONS(5103), + [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(1002)] = { - [sym__backslash_escape] = ACTIONS(5107), - [sym_entity_reference] = ACTIONS(5107), - [sym_numeric_character_reference] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_COLON] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_BSLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_BQUOTE] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_PIPE] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [sym__newline_token] = ACTIONS(5107), - [aux_sym_insert_token1] = ACTIONS(5107), - [aux_sym_delete_token1] = ACTIONS(5107), - [aux_sym_highlight_token1] = ACTIONS(5107), - [aux_sym_edit_comment_token1] = ACTIONS(5107), - [anon_sym_CARET_LBRACK] = ACTIONS(5107), - [anon_sym_LBRACK_CARET] = ACTIONS(5107), - [sym_uri_autolink] = ACTIONS(5107), - [sym_email_autolink] = ACTIONS(5107), - [sym__whitespace_ge_2] = ACTIONS(5107), - [aux_sym__whitespace_token1] = ACTIONS(5109), - [sym__word_no_digit] = ACTIONS(5107), - [sym__digits] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5107), - [sym__code_span_start] = ACTIONS(5107), - [sym__emphasis_open_star] = ACTIONS(5107), - [sym__emphasis_open_underscore] = ACTIONS(5107), - [sym__strikeout_open] = ACTIONS(5107), - [sym__latex_span_start] = ACTIONS(5107), - [sym__single_quote_open] = ACTIONS(5107), - [sym__double_quote_open] = ACTIONS(5107), - [sym__superscript_open] = ACTIONS(5107), - [sym__subscript_open] = ACTIONS(5107), - [sym__subscript_close] = ACTIONS(5107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5107), - [sym__cite_author_in_text] = ACTIONS(5107), - [sym__cite_suppress_author] = ACTIONS(5107), - [sym__shortcode_open_escaped] = ACTIONS(5107), - [sym__shortcode_open] = ACTIONS(5107), - [sym__unclosed_span] = ACTIONS(5107), - [sym__strong_emphasis_open_star] = ACTIONS(5107), - [sym__strong_emphasis_open_underscore] = ACTIONS(5107), + [sym__backslash_escape] = ACTIONS(4507), + [sym_entity_reference] = ACTIONS(4507), + [sym_numeric_character_reference] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(4507), + [anon_sym_DOLLAR] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_QMARK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_BSLASH] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [sym__newline_token] = ACTIONS(4507), + [aux_sym_insert_token1] = ACTIONS(4507), + [aux_sym_delete_token1] = ACTIONS(4507), + [aux_sym_highlight_token1] = ACTIONS(4507), + [aux_sym_edit_comment_token1] = ACTIONS(4507), + [anon_sym_CARET_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK_CARET] = ACTIONS(4507), + [sym_uri_autolink] = ACTIONS(4507), + [sym_email_autolink] = ACTIONS(4507), + [sym__whitespace_ge_2] = ACTIONS(4507), + [aux_sym__whitespace_token1] = ACTIONS(4509), + [sym__word_no_digit] = ACTIONS(4507), + [sym__digits] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4507), + [sym__code_span_start] = ACTIONS(4507), + [sym__emphasis_open_star] = ACTIONS(4507), + [sym__emphasis_open_underscore] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4507), + [sym__latex_span_start] = ACTIONS(4507), + [sym__single_quote_open] = ACTIONS(4507), + [sym__double_quote_open] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4507), + [sym__subscript_open] = ACTIONS(4507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4507), + [sym__cite_author_in_text] = ACTIONS(4507), + [sym__cite_suppress_author] = ACTIONS(4507), + [sym__shortcode_open_escaped] = ACTIONS(4507), + [sym__shortcode_open] = ACTIONS(4507), + [sym__unclosed_span] = ACTIONS(4507), + [sym__strong_emphasis_open_star] = ACTIONS(4507), + [sym__strong_emphasis_close_star] = ACTIONS(4507), + [sym__strong_emphasis_open_underscore] = ACTIONS(4507), }, [STATE(1003)] = { - [sym__backslash_escape] = ACTIONS(5111), - [sym_entity_reference] = ACTIONS(5111), - [sym_numeric_character_reference] = ACTIONS(5111), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym_BQUOTE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [sym__newline_token] = ACTIONS(5111), - [aux_sym_insert_token1] = ACTIONS(5111), - [aux_sym_delete_token1] = ACTIONS(5111), - [aux_sym_highlight_token1] = ACTIONS(5111), - [aux_sym_edit_comment_token1] = ACTIONS(5111), - [anon_sym_CARET_LBRACK] = ACTIONS(5111), - [anon_sym_LBRACK_CARET] = ACTIONS(5111), - [sym_uri_autolink] = ACTIONS(5111), - [sym_email_autolink] = ACTIONS(5111), - [sym__whitespace_ge_2] = ACTIONS(5111), - [aux_sym__whitespace_token1] = ACTIONS(5113), - [sym__word_no_digit] = ACTIONS(5111), - [sym__digits] = ACTIONS(5111), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [sym__code_span_start] = ACTIONS(5111), - [sym__emphasis_open_star] = ACTIONS(5111), - [sym__emphasis_open_underscore] = ACTIONS(5111), - [sym__strikeout_open] = ACTIONS(5111), - [sym__latex_span_start] = ACTIONS(5111), - [sym__single_quote_open] = ACTIONS(5111), - [sym__double_quote_open] = ACTIONS(5111), - [sym__superscript_open] = ACTIONS(5111), - [sym__subscript_open] = ACTIONS(5111), - [sym__subscript_close] = ACTIONS(5111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5111), - [sym__cite_author_in_text] = ACTIONS(5111), - [sym__cite_suppress_author] = ACTIONS(5111), - [sym__shortcode_open_escaped] = ACTIONS(5111), - [sym__shortcode_open] = ACTIONS(5111), - [sym__unclosed_span] = ACTIONS(5111), - [sym__strong_emphasis_open_star] = ACTIONS(5111), - [sym__strong_emphasis_open_underscore] = ACTIONS(5111), + [sym__backslash_escape] = ACTIONS(4511), + [sym_entity_reference] = ACTIONS(4511), + [sym_numeric_character_reference] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4511), + [anon_sym_POUND] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_COMMA] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_QMARK] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_BQUOTE] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(4511), + [sym__newline_token] = ACTIONS(4511), + [aux_sym_insert_token1] = ACTIONS(4511), + [aux_sym_delete_token1] = ACTIONS(4511), + [aux_sym_highlight_token1] = ACTIONS(4511), + [aux_sym_edit_comment_token1] = ACTIONS(4511), + [anon_sym_CARET_LBRACK] = ACTIONS(4511), + [anon_sym_LBRACK_CARET] = ACTIONS(4511), + [sym_uri_autolink] = ACTIONS(4511), + [sym_email_autolink] = ACTIONS(4511), + [sym__whitespace_ge_2] = ACTIONS(4511), + [aux_sym__whitespace_token1] = ACTIONS(4513), + [sym__word_no_digit] = ACTIONS(4511), + [sym__digits] = ACTIONS(4511), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), + [sym__code_span_start] = ACTIONS(4511), + [sym__emphasis_open_star] = ACTIONS(4511), + [sym__emphasis_open_underscore] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4511), + [sym__latex_span_start] = ACTIONS(4511), + [sym__single_quote_open] = ACTIONS(4511), + [sym__double_quote_open] = ACTIONS(4511), + [sym__superscript_open] = ACTIONS(4511), + [sym__subscript_open] = ACTIONS(4511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), + [sym__cite_author_in_text] = ACTIONS(4511), + [sym__cite_suppress_author] = ACTIONS(4511), + [sym__shortcode_open_escaped] = ACTIONS(4511), + [sym__shortcode_open] = ACTIONS(4511), + [sym__unclosed_span] = ACTIONS(4511), + [sym__strong_emphasis_open_star] = ACTIONS(4511), + [sym__strong_emphasis_close_star] = ACTIONS(4511), + [sym__strong_emphasis_open_underscore] = ACTIONS(4511), }, [STATE(1004)] = { - [sym__backslash_escape] = ACTIONS(5115), - [sym_entity_reference] = ACTIONS(5115), - [sym_numeric_character_reference] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(5115), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_QMARK] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym_BQUOTE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [sym__newline_token] = ACTIONS(5115), - [aux_sym_insert_token1] = ACTIONS(5115), - [aux_sym_delete_token1] = ACTIONS(5115), - [aux_sym_highlight_token1] = ACTIONS(5115), - [aux_sym_edit_comment_token1] = ACTIONS(5115), - [anon_sym_CARET_LBRACK] = ACTIONS(5115), - [anon_sym_LBRACK_CARET] = ACTIONS(5115), - [sym_uri_autolink] = ACTIONS(5115), - [sym_email_autolink] = ACTIONS(5115), - [sym__whitespace_ge_2] = ACTIONS(5115), - [aux_sym__whitespace_token1] = ACTIONS(5117), - [sym__word_no_digit] = ACTIONS(5115), - [sym__digits] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5115), - [sym__code_span_start] = ACTIONS(5115), - [sym__emphasis_open_star] = ACTIONS(5115), - [sym__emphasis_open_underscore] = ACTIONS(5115), - [sym__strikeout_open] = ACTIONS(5115), - [sym__latex_span_start] = ACTIONS(5115), - [sym__single_quote_open] = ACTIONS(5115), - [sym__double_quote_open] = ACTIONS(5115), - [sym__superscript_open] = ACTIONS(5115), - [sym__subscript_open] = ACTIONS(5115), - [sym__subscript_close] = ACTIONS(5115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5115), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5115), - [sym__cite_author_in_text] = ACTIONS(5115), - [sym__cite_suppress_author] = ACTIONS(5115), - [sym__shortcode_open_escaped] = ACTIONS(5115), - [sym__shortcode_open] = ACTIONS(5115), - [sym__unclosed_span] = ACTIONS(5115), - [sym__strong_emphasis_open_star] = ACTIONS(5115), - [sym__strong_emphasis_open_underscore] = ACTIONS(5115), + [sym__backslash_escape] = ACTIONS(4515), + [sym_entity_reference] = ACTIONS(4515), + [sym_numeric_character_reference] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4515), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_BSLASH] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_RPAREN] = ACTIONS(4515), + [sym__newline_token] = ACTIONS(4515), + [aux_sym_insert_token1] = ACTIONS(4515), + [aux_sym_delete_token1] = ACTIONS(4515), + [aux_sym_highlight_token1] = ACTIONS(4515), + [aux_sym_edit_comment_token1] = ACTIONS(4515), + [anon_sym_CARET_LBRACK] = ACTIONS(4515), + [anon_sym_LBRACK_CARET] = ACTIONS(4515), + [sym_uri_autolink] = ACTIONS(4515), + [sym_email_autolink] = ACTIONS(4515), + [sym__whitespace_ge_2] = ACTIONS(4515), + [aux_sym__whitespace_token1] = ACTIONS(4517), + [sym__word_no_digit] = ACTIONS(4515), + [sym__digits] = ACTIONS(4515), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4515), + [sym__code_span_start] = ACTIONS(4515), + [sym__emphasis_open_star] = ACTIONS(4515), + [sym__emphasis_open_underscore] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4515), + [sym__latex_span_start] = ACTIONS(4515), + [sym__single_quote_open] = ACTIONS(4515), + [sym__double_quote_open] = ACTIONS(4515), + [sym__superscript_open] = ACTIONS(4515), + [sym__subscript_open] = ACTIONS(4515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4515), + [sym__cite_author_in_text] = ACTIONS(4515), + [sym__cite_suppress_author] = ACTIONS(4515), + [sym__shortcode_open_escaped] = ACTIONS(4515), + [sym__shortcode_open] = ACTIONS(4515), + [sym__unclosed_span] = ACTIONS(4515), + [sym__strong_emphasis_open_star] = ACTIONS(4515), + [sym__strong_emphasis_close_star] = ACTIONS(4515), + [sym__strong_emphasis_open_underscore] = ACTIONS(4515), }, [STATE(1005)] = { - [sym__backslash_escape] = ACTIONS(5119), - [sym_entity_reference] = ACTIONS(5119), - [sym_numeric_character_reference] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_AMP] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [sym__newline_token] = ACTIONS(5119), - [aux_sym_insert_token1] = ACTIONS(5119), - [aux_sym_delete_token1] = ACTIONS(5119), - [aux_sym_highlight_token1] = ACTIONS(5119), - [aux_sym_edit_comment_token1] = ACTIONS(5119), - [anon_sym_CARET_LBRACK] = ACTIONS(5119), - [anon_sym_LBRACK_CARET] = ACTIONS(5119), - [sym_uri_autolink] = ACTIONS(5119), - [sym_email_autolink] = ACTIONS(5119), - [sym__whitespace_ge_2] = ACTIONS(5119), - [aux_sym__whitespace_token1] = ACTIONS(5121), - [sym__word_no_digit] = ACTIONS(5119), - [sym__digits] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5119), - [sym__code_span_start] = ACTIONS(5119), - [sym__emphasis_open_star] = ACTIONS(5119), - [sym__emphasis_open_underscore] = ACTIONS(5119), - [sym__strikeout_open] = ACTIONS(5119), - [sym__latex_span_start] = ACTIONS(5119), - [sym__single_quote_open] = ACTIONS(5119), - [sym__double_quote_open] = ACTIONS(5119), - [sym__superscript_open] = ACTIONS(5119), - [sym__subscript_open] = ACTIONS(5119), - [sym__subscript_close] = ACTIONS(5119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5119), - [sym__cite_author_in_text] = ACTIONS(5119), - [sym__cite_suppress_author] = ACTIONS(5119), - [sym__shortcode_open_escaped] = ACTIONS(5119), - [sym__shortcode_open] = ACTIONS(5119), - [sym__unclosed_span] = ACTIONS(5119), - [sym__strong_emphasis_open_star] = ACTIONS(5119), - [sym__strong_emphasis_open_underscore] = ACTIONS(5119), + [sym__backslash_escape] = ACTIONS(4519), + [sym_entity_reference] = ACTIONS(4519), + [sym_numeric_character_reference] = ACTIONS(4519), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4519), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_BSLASH] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_BQUOTE] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [sym__newline_token] = ACTIONS(4519), + [aux_sym_insert_token1] = ACTIONS(4519), + [aux_sym_delete_token1] = ACTIONS(4519), + [aux_sym_highlight_token1] = ACTIONS(4519), + [aux_sym_edit_comment_token1] = ACTIONS(4519), + [anon_sym_CARET_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_CARET] = ACTIONS(4519), + [sym_uri_autolink] = ACTIONS(4519), + [sym_email_autolink] = ACTIONS(4519), + [sym__whitespace_ge_2] = ACTIONS(4519), + [aux_sym__whitespace_token1] = ACTIONS(4521), + [sym__word_no_digit] = ACTIONS(4519), + [sym__digits] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [sym__code_span_start] = ACTIONS(4519), + [sym__emphasis_open_star] = ACTIONS(4519), + [sym__emphasis_open_underscore] = ACTIONS(4519), + [sym__strikeout_open] = ACTIONS(4519), + [sym__latex_span_start] = ACTIONS(4519), + [sym__single_quote_open] = ACTIONS(4519), + [sym__double_quote_open] = ACTIONS(4519), + [sym__superscript_open] = ACTIONS(4519), + [sym__subscript_open] = ACTIONS(4519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4519), + [sym__cite_suppress_author] = ACTIONS(4519), + [sym__shortcode_open_escaped] = ACTIONS(4519), + [sym__shortcode_open] = ACTIONS(4519), + [sym__unclosed_span] = ACTIONS(4519), + [sym__strong_emphasis_open_star] = ACTIONS(4519), + [sym__strong_emphasis_close_star] = ACTIONS(4519), + [sym__strong_emphasis_open_underscore] = ACTIONS(4519), }, [STATE(1006)] = { - [sym__backslash_escape] = ACTIONS(5123), - [sym_entity_reference] = ACTIONS(5123), - [sym_numeric_character_reference] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_DQUOTE] = ACTIONS(5123), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym_BQUOTE] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [sym__newline_token] = ACTIONS(5123), - [aux_sym_insert_token1] = ACTIONS(5123), - [aux_sym_delete_token1] = ACTIONS(5123), - [aux_sym_highlight_token1] = ACTIONS(5123), - [aux_sym_edit_comment_token1] = ACTIONS(5123), - [anon_sym_CARET_LBRACK] = ACTIONS(5123), - [anon_sym_LBRACK_CARET] = ACTIONS(5123), - [sym_uri_autolink] = ACTIONS(5123), - [sym_email_autolink] = ACTIONS(5123), - [sym__whitespace_ge_2] = ACTIONS(5123), - [aux_sym__whitespace_token1] = ACTIONS(5125), - [sym__word_no_digit] = ACTIONS(5123), - [sym__digits] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), - [sym__code_span_start] = ACTIONS(5123), - [sym__emphasis_open_star] = ACTIONS(5123), - [sym__emphasis_open_underscore] = ACTIONS(5123), - [sym__strikeout_open] = ACTIONS(5123), - [sym__latex_span_start] = ACTIONS(5123), - [sym__single_quote_open] = ACTIONS(5123), - [sym__double_quote_open] = ACTIONS(5123), - [sym__superscript_open] = ACTIONS(5123), - [sym__subscript_open] = ACTIONS(5123), - [sym__subscript_close] = ACTIONS(5123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5123), - [sym__cite_author_in_text] = ACTIONS(5123), - [sym__cite_suppress_author] = ACTIONS(5123), - [sym__shortcode_open_escaped] = ACTIONS(5123), - [sym__shortcode_open] = ACTIONS(5123), - [sym__unclosed_span] = ACTIONS(5123), - [sym__strong_emphasis_open_star] = ACTIONS(5123), - [sym__strong_emphasis_open_underscore] = ACTIONS(5123), + [sym__backslash_escape] = ACTIONS(4523), + [sym_entity_reference] = ACTIONS(4523), + [sym_numeric_character_reference] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_BSLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [sym__newline_token] = ACTIONS(4523), + [aux_sym_insert_token1] = ACTIONS(4523), + [aux_sym_delete_token1] = ACTIONS(4523), + [aux_sym_highlight_token1] = ACTIONS(4523), + [aux_sym_edit_comment_token1] = ACTIONS(4523), + [anon_sym_CARET_LBRACK] = ACTIONS(4523), + [anon_sym_LBRACK_CARET] = ACTIONS(4523), + [sym_uri_autolink] = ACTIONS(4523), + [sym_email_autolink] = ACTIONS(4523), + [sym__whitespace_ge_2] = ACTIONS(4523), + [aux_sym__whitespace_token1] = ACTIONS(4525), + [sym__word_no_digit] = ACTIONS(4523), + [sym__digits] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4523), + [sym__code_span_start] = ACTIONS(4523), + [sym__emphasis_open_star] = ACTIONS(4523), + [sym__emphasis_open_underscore] = ACTIONS(4523), + [sym__strikeout_open] = ACTIONS(4523), + [sym__latex_span_start] = ACTIONS(4523), + [sym__single_quote_open] = ACTIONS(4523), + [sym__double_quote_open] = ACTIONS(4523), + [sym__superscript_open] = ACTIONS(4523), + [sym__subscript_open] = ACTIONS(4523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4523), + [sym__cite_author_in_text] = ACTIONS(4523), + [sym__cite_suppress_author] = ACTIONS(4523), + [sym__shortcode_open_escaped] = ACTIONS(4523), + [sym__shortcode_open] = ACTIONS(4523), + [sym__unclosed_span] = ACTIONS(4523), + [sym__strong_emphasis_open_star] = ACTIONS(4523), + [sym__strong_emphasis_close_star] = ACTIONS(4523), + [sym__strong_emphasis_open_underscore] = ACTIONS(4523), }, [STATE(1007)] = { + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_close_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), + }, + [STATE(1008)] = { + [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(1009)] = { + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_close_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), + }, + [STATE(1010)] = { + [sym__backslash_escape] = ACTIONS(4495), + [sym_entity_reference] = ACTIONS(4495), + [sym_numeric_character_reference] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_QMARK] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_BSLASH] = ACTIONS(4497), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_BQUOTE] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [sym__newline_token] = ACTIONS(4495), + [aux_sym_insert_token1] = ACTIONS(4495), + [aux_sym_delete_token1] = ACTIONS(4495), + [aux_sym_highlight_token1] = ACTIONS(4495), + [aux_sym_edit_comment_token1] = ACTIONS(4495), + [anon_sym_CARET_LBRACK] = ACTIONS(4495), + [anon_sym_LBRACK_CARET] = ACTIONS(4495), + [sym_uri_autolink] = ACTIONS(4495), + [sym_email_autolink] = ACTIONS(4495), + [sym__whitespace_ge_2] = ACTIONS(4495), + [aux_sym__whitespace_token1] = ACTIONS(4497), + [sym__word_no_digit] = ACTIONS(4495), + [sym__digits] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4495), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(4495), + [sym__emphasis_open_underscore] = ACTIONS(4495), + [sym__emphasis_close_star] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4495), + [sym__latex_span_start] = ACTIONS(4495), + [sym__single_quote_open] = ACTIONS(4495), + [sym__double_quote_open] = ACTIONS(4495), + [sym__superscript_open] = ACTIONS(4495), + [sym__subscript_open] = ACTIONS(4495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4495), + [sym__cite_author_in_text] = ACTIONS(4495), + [sym__cite_suppress_author] = ACTIONS(4495), + [sym__shortcode_open_escaped] = ACTIONS(4495), + [sym__shortcode_open] = ACTIONS(4495), + [sym__unclosed_span] = ACTIONS(4495), + [sym__strong_emphasis_open_star] = ACTIONS(4495), + [sym__strong_emphasis_open_underscore] = ACTIONS(4495), + }, + [STATE(1011)] = { + [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(1012)] = { + [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_close_star] = ACTIONS(4535), + [sym__strong_emphasis_open_underscore] = ACTIONS(4535), + }, + [STATE(1013)] = { + [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__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_close_star] = ACTIONS(4539), + [sym__strong_emphasis_open_underscore] = ACTIONS(4539), + }, + [STATE(1014)] = { + [sym__backslash_escape] = ACTIONS(4503), + [sym_entity_reference] = ACTIONS(4503), + [sym_numeric_character_reference] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_BQUOTE] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_PIPE] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [sym__newline_token] = ACTIONS(4503), + [aux_sym_insert_token1] = ACTIONS(4503), + [aux_sym_delete_token1] = ACTIONS(4503), + [aux_sym_highlight_token1] = ACTIONS(4503), + [aux_sym_edit_comment_token1] = ACTIONS(4503), + [anon_sym_CARET_LBRACK] = ACTIONS(4503), + [anon_sym_LBRACK_CARET] = ACTIONS(4503), + [sym_uri_autolink] = ACTIONS(4503), + [sym_email_autolink] = ACTIONS(4503), + [sym__whitespace_ge_2] = ACTIONS(4503), + [aux_sym__whitespace_token1] = ACTIONS(4505), + [sym__word_no_digit] = ACTIONS(4503), + [sym__digits] = ACTIONS(4503), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4503), + [sym__code_span_start] = ACTIONS(4503), + [sym__emphasis_open_star] = ACTIONS(4503), + [sym__emphasis_open_underscore] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4503), + [sym__latex_span_start] = ACTIONS(4503), + [sym__single_quote_open] = ACTIONS(4503), + [sym__double_quote_open] = ACTIONS(4503), + [sym__superscript_open] = ACTIONS(4503), + [sym__subscript_open] = ACTIONS(4503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4503), + [sym__cite_author_in_text] = ACTIONS(4503), + [sym__cite_suppress_author] = ACTIONS(4503), + [sym__shortcode_open_escaped] = ACTIONS(4503), + [sym__shortcode_open] = ACTIONS(4503), + [sym__unclosed_span] = ACTIONS(4503), + [sym__strong_emphasis_open_star] = ACTIONS(4503), + [sym__strong_emphasis_close_star] = ACTIONS(4503), + [sym__strong_emphasis_open_underscore] = ACTIONS(4503), + }, + [STATE(1015)] = { + [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(4251), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(1016)] = { + [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(1017)] = { + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_close_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), + }, + [STATE(1018)] = { + [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(1019)] = { + [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_close_star] = ACTIONS(4543), + [sym__strong_emphasis_open_underscore] = ACTIONS(4543), + }, + [STATE(1020)] = { + [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_close_star] = ACTIONS(4547), + [sym__strong_emphasis_open_underscore] = ACTIONS(4547), + }, + [STATE(1021)] = { + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_close_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), + }, + [STATE(1022)] = { + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__double_quote_close] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), + }, + [STATE(1023)] = { + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_close_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), + }, + [STATE(1024)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -116453,7 +116561,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(4631), [anon_sym_AMP] = ACTIONS(4633), [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_STAR] = ACTIONS(4631), [anon_sym_PLUS] = ACTIONS(4631), [anon_sym_COMMA] = ACTIONS(4631), [anon_sym_DASH] = ACTIONS(4633), @@ -116491,13 +116598,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__subscript_close] = 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), @@ -116508,10955 +116615,8918 @@ 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(1008)] = { - [ts_builtin_sym_end] = ACTIONS(4975), - [sym__backslash_escape] = ACTIONS(4975), - [sym_entity_reference] = ACTIONS(4975), - [sym_numeric_character_reference] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [sym__newline_token] = ACTIONS(4975), - [aux_sym_insert_token1] = ACTIONS(4975), - [aux_sym_delete_token1] = ACTIONS(4975), - [aux_sym_highlight_token1] = ACTIONS(4975), - [aux_sym_edit_comment_token1] = ACTIONS(4975), - [anon_sym_CARET_LBRACK] = ACTIONS(4975), - [anon_sym_LBRACK_CARET] = ACTIONS(4975), - [sym_uri_autolink] = ACTIONS(4975), - [sym_email_autolink] = ACTIONS(4975), - [sym__whitespace_ge_2] = ACTIONS(4975), - [aux_sym__whitespace_token1] = ACTIONS(4977), - [sym__word_no_digit] = ACTIONS(4975), - [sym__digits] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [sym__code_span_start] = ACTIONS(4975), - [sym__emphasis_open_star] = ACTIONS(4975), - [sym__emphasis_open_underscore] = ACTIONS(4975), - [sym__strikeout_open] = ACTIONS(4975), - [sym__latex_span_start] = ACTIONS(4975), - [sym__single_quote_open] = ACTIONS(4975), - [sym__double_quote_open] = ACTIONS(4975), - [sym__superscript_open] = ACTIONS(4975), - [sym__subscript_open] = ACTIONS(4975), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4975), - [sym__cite_author_in_text] = ACTIONS(4975), - [sym__cite_suppress_author] = ACTIONS(4975), - [sym__shortcode_open_escaped] = ACTIONS(4975), - [sym__shortcode_open] = ACTIONS(4975), - [sym__unclosed_span] = ACTIONS(4975), - [sym__strong_emphasis_open_star] = ACTIONS(4975), - [sym__strong_emphasis_open_underscore] = ACTIONS(4975), - }, - [STATE(1009)] = { - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__subscript_close] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), - }, - [STATE(1010)] = { - [sym__backslash_escape] = ACTIONS(5127), - [sym_entity_reference] = ACTIONS(5127), - [sym_numeric_character_reference] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_DQUOTE] = ACTIONS(5127), - [anon_sym_POUND] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_PERCENT] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_QMARK] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym_BQUOTE] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym__newline_token] = ACTIONS(5127), - [aux_sym_insert_token1] = ACTIONS(5127), - [aux_sym_delete_token1] = ACTIONS(5127), - [aux_sym_highlight_token1] = ACTIONS(5127), - [aux_sym_edit_comment_token1] = ACTIONS(5127), - [anon_sym_CARET_LBRACK] = ACTIONS(5127), - [anon_sym_LBRACK_CARET] = ACTIONS(5127), - [sym_uri_autolink] = ACTIONS(5127), - [sym_email_autolink] = ACTIONS(5127), - [sym__whitespace_ge_2] = ACTIONS(5127), - [aux_sym__whitespace_token1] = ACTIONS(5129), - [sym__word_no_digit] = ACTIONS(5127), - [sym__digits] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5127), - [sym__code_span_start] = ACTIONS(5127), - [sym__emphasis_open_star] = ACTIONS(5127), - [sym__emphasis_open_underscore] = ACTIONS(5127), - [sym__strikeout_open] = ACTIONS(5127), - [sym__latex_span_start] = ACTIONS(5127), - [sym__single_quote_open] = ACTIONS(5127), - [sym__double_quote_open] = ACTIONS(5127), - [sym__superscript_open] = ACTIONS(5127), - [sym__subscript_open] = ACTIONS(5127), - [sym__subscript_close] = ACTIONS(5127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5127), - [sym__cite_author_in_text] = ACTIONS(5127), - [sym__cite_suppress_author] = ACTIONS(5127), - [sym__shortcode_open_escaped] = ACTIONS(5127), - [sym__shortcode_open] = ACTIONS(5127), - [sym__unclosed_span] = ACTIONS(5127), - [sym__strong_emphasis_open_star] = ACTIONS(5127), - [sym__strong_emphasis_open_underscore] = ACTIONS(5127), - }, - [STATE(1011)] = { - [sym__backslash_escape] = ACTIONS(5131), - [sym_entity_reference] = ACTIONS(5131), - [sym_numeric_character_reference] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(5131), - [anon_sym_POUND] = ACTIONS(5131), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(5133), - [anon_sym_SQUOTE] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_QMARK] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(5133), - [anon_sym_BQUOTE] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_PIPE] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [sym__newline_token] = ACTIONS(5131), - [aux_sym_insert_token1] = ACTIONS(5131), - [aux_sym_delete_token1] = ACTIONS(5131), - [aux_sym_highlight_token1] = ACTIONS(5131), - [aux_sym_edit_comment_token1] = ACTIONS(5131), - [anon_sym_CARET_LBRACK] = ACTIONS(5131), - [anon_sym_LBRACK_CARET] = ACTIONS(5131), - [sym_uri_autolink] = ACTIONS(5131), - [sym_email_autolink] = ACTIONS(5131), - [sym__whitespace_ge_2] = ACTIONS(5131), - [aux_sym__whitespace_token1] = ACTIONS(5133), - [sym__word_no_digit] = ACTIONS(5131), - [sym__digits] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), - [sym__code_span_start] = ACTIONS(5131), - [sym__emphasis_open_star] = ACTIONS(5131), - [sym__emphasis_open_underscore] = ACTIONS(5131), - [sym__strikeout_open] = ACTIONS(5131), - [sym__latex_span_start] = ACTIONS(5131), - [sym__single_quote_open] = ACTIONS(5131), - [sym__double_quote_open] = ACTIONS(5131), - [sym__superscript_open] = ACTIONS(5131), - [sym__subscript_open] = ACTIONS(5131), - [sym__subscript_close] = ACTIONS(5131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5131), - [sym__cite_author_in_text] = ACTIONS(5131), - [sym__cite_suppress_author] = ACTIONS(5131), - [sym__shortcode_open_escaped] = ACTIONS(5131), - [sym__shortcode_open] = ACTIONS(5131), - [sym__unclosed_span] = ACTIONS(5131), - [sym__strong_emphasis_open_star] = ACTIONS(5131), - [sym__strong_emphasis_open_underscore] = ACTIONS(5131), - }, - [STATE(1012)] = { - [sym__backslash_escape] = ACTIONS(5135), - [sym_entity_reference] = ACTIONS(5135), - [sym_numeric_character_reference] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_AMP] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_QMARK] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH] = ACTIONS(5137), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [sym__newline_token] = ACTIONS(5135), - [aux_sym_insert_token1] = ACTIONS(5135), - [aux_sym_delete_token1] = ACTIONS(5135), - [aux_sym_highlight_token1] = ACTIONS(5135), - [aux_sym_edit_comment_token1] = ACTIONS(5135), - [anon_sym_CARET_LBRACK] = ACTIONS(5135), - [anon_sym_LBRACK_CARET] = ACTIONS(5135), - [sym_uri_autolink] = ACTIONS(5135), - [sym_email_autolink] = ACTIONS(5135), - [sym__whitespace_ge_2] = ACTIONS(5135), - [aux_sym__whitespace_token1] = ACTIONS(5137), - [sym__word_no_digit] = ACTIONS(5135), - [sym__digits] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5135), - [sym__code_span_start] = ACTIONS(5135), - [sym__emphasis_open_star] = ACTIONS(5135), - [sym__emphasis_open_underscore] = ACTIONS(5135), - [sym__strikeout_open] = ACTIONS(5135), - [sym__latex_span_start] = ACTIONS(5135), - [sym__single_quote_open] = ACTIONS(5135), - [sym__double_quote_open] = ACTIONS(5135), - [sym__superscript_open] = ACTIONS(5135), - [sym__subscript_open] = ACTIONS(5135), - [sym__subscript_close] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5135), - [sym__cite_author_in_text] = ACTIONS(5135), - [sym__cite_suppress_author] = ACTIONS(5135), - [sym__shortcode_open_escaped] = ACTIONS(5135), - [sym__shortcode_open] = ACTIONS(5135), - [sym__unclosed_span] = ACTIONS(5135), - [sym__strong_emphasis_open_star] = ACTIONS(5135), - [sym__strong_emphasis_open_underscore] = ACTIONS(5135), - }, - [STATE(1013)] = { - [sym__backslash_escape] = ACTIONS(5139), - [sym_entity_reference] = ACTIONS(5139), - [sym_numeric_character_reference] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_DQUOTE] = ACTIONS(5139), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH] = ACTIONS(5141), - [anon_sym_CARET] = ACTIONS(5141), - [anon_sym_BQUOTE] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_RPAREN] = ACTIONS(5139), - [sym__newline_token] = ACTIONS(5139), - [aux_sym_insert_token1] = ACTIONS(5139), - [aux_sym_delete_token1] = ACTIONS(5139), - [aux_sym_highlight_token1] = ACTIONS(5139), - [aux_sym_edit_comment_token1] = ACTIONS(5139), - [anon_sym_CARET_LBRACK] = ACTIONS(5139), - [anon_sym_LBRACK_CARET] = ACTIONS(5139), - [sym_uri_autolink] = ACTIONS(5139), - [sym_email_autolink] = ACTIONS(5139), - [sym__whitespace_ge_2] = ACTIONS(5139), - [aux_sym__whitespace_token1] = ACTIONS(5141), - [sym__word_no_digit] = ACTIONS(5139), - [sym__digits] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5141), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5139), - [sym__code_span_start] = ACTIONS(5139), - [sym__emphasis_open_star] = ACTIONS(5139), - [sym__emphasis_open_underscore] = ACTIONS(5139), - [sym__strikeout_open] = ACTIONS(5139), - [sym__latex_span_start] = ACTIONS(5139), - [sym__single_quote_open] = ACTIONS(5139), - [sym__double_quote_open] = ACTIONS(5139), - [sym__superscript_open] = ACTIONS(5139), - [sym__subscript_open] = ACTIONS(5139), - [sym__subscript_close] = ACTIONS(5139), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5139), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5139), - [sym__cite_author_in_text] = ACTIONS(5139), - [sym__cite_suppress_author] = ACTIONS(5139), - [sym__shortcode_open_escaped] = ACTIONS(5139), - [sym__shortcode_open] = ACTIONS(5139), - [sym__unclosed_span] = ACTIONS(5139), - [sym__strong_emphasis_open_star] = ACTIONS(5139), - [sym__strong_emphasis_open_underscore] = ACTIONS(5139), - }, - [STATE(1014)] = { - [sym__backslash_escape] = ACTIONS(5143), - [sym_entity_reference] = ACTIONS(5143), - [sym_numeric_character_reference] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_DQUOTE] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_PERCENT] = ACTIONS(5143), - [anon_sym_AMP] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH] = ACTIONS(5145), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym_BQUOTE] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [sym__newline_token] = ACTIONS(5143), - [aux_sym_insert_token1] = ACTIONS(5143), - [aux_sym_delete_token1] = ACTIONS(5143), - [aux_sym_highlight_token1] = ACTIONS(5143), - [aux_sym_edit_comment_token1] = ACTIONS(5143), - [anon_sym_CARET_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_CARET] = ACTIONS(5143), - [sym_uri_autolink] = ACTIONS(5143), - [sym_email_autolink] = ACTIONS(5143), - [sym__whitespace_ge_2] = ACTIONS(5143), - [aux_sym__whitespace_token1] = ACTIONS(5145), - [sym__word_no_digit] = ACTIONS(5143), - [sym__digits] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5143), - [sym__code_span_start] = ACTIONS(5143), - [sym__emphasis_open_star] = ACTIONS(5143), - [sym__emphasis_open_underscore] = ACTIONS(5143), - [sym__strikeout_open] = ACTIONS(5143), - [sym__latex_span_start] = ACTIONS(5143), - [sym__single_quote_open] = ACTIONS(5143), - [sym__double_quote_open] = ACTIONS(5143), - [sym__superscript_open] = ACTIONS(5143), - [sym__subscript_open] = ACTIONS(5143), - [sym__subscript_close] = ACTIONS(5143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5143), - [sym__cite_author_in_text] = ACTIONS(5143), - [sym__cite_suppress_author] = ACTIONS(5143), - [sym__shortcode_open_escaped] = ACTIONS(5143), - [sym__shortcode_open] = ACTIONS(5143), - [sym__unclosed_span] = ACTIONS(5143), - [sym__strong_emphasis_open_star] = ACTIONS(5143), - [sym__strong_emphasis_open_underscore] = ACTIONS(5143), - }, - [STATE(1015)] = { - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__subscript_close] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), - }, - [STATE(1016)] = { - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__subscript_close] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), - }, - [STATE(1017)] = { - [sym__backslash_escape] = ACTIONS(5147), - [sym_entity_reference] = ACTIONS(5147), - [sym_numeric_character_reference] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_DQUOTE] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [sym__newline_token] = ACTIONS(5147), - [aux_sym_insert_token1] = ACTIONS(5147), - [aux_sym_delete_token1] = ACTIONS(5147), - [aux_sym_highlight_token1] = ACTIONS(5147), - [aux_sym_edit_comment_token1] = ACTIONS(5147), - [anon_sym_CARET_LBRACK] = ACTIONS(5147), - [anon_sym_LBRACK_CARET] = ACTIONS(5147), - [sym_uri_autolink] = ACTIONS(5147), - [sym_email_autolink] = ACTIONS(5147), - [sym__whitespace_ge_2] = ACTIONS(5147), - [aux_sym__whitespace_token1] = ACTIONS(5149), - [sym__word_no_digit] = ACTIONS(5147), - [sym__digits] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5147), - [sym__code_span_start] = ACTIONS(5147), - [sym__emphasis_open_star] = ACTIONS(5147), - [sym__emphasis_open_underscore] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5147), - [sym__latex_span_start] = ACTIONS(5147), - [sym__single_quote_open] = ACTIONS(5147), - [sym__double_quote_open] = ACTIONS(5147), - [sym__superscript_open] = ACTIONS(5147), - [sym__subscript_open] = ACTIONS(5147), - [sym__subscript_close] = ACTIONS(5147), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5147), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5147), - [sym__cite_author_in_text] = ACTIONS(5147), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__shortcode_open_escaped] = ACTIONS(5147), - [sym__shortcode_open] = ACTIONS(5147), - [sym__unclosed_span] = ACTIONS(5147), - [sym__strong_emphasis_open_star] = ACTIONS(5147), - [sym__strong_emphasis_open_underscore] = ACTIONS(5147), - }, - [STATE(1018)] = { - [sym__backslash_escape] = ACTIONS(5151), - [sym_entity_reference] = ACTIONS(5151), - [sym_numeric_character_reference] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_DQUOTE] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_PERCENT] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_QMARK] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [sym__newline_token] = ACTIONS(5151), - [aux_sym_insert_token1] = ACTIONS(5151), - [aux_sym_delete_token1] = ACTIONS(5151), - [aux_sym_highlight_token1] = ACTIONS(5151), - [aux_sym_edit_comment_token1] = ACTIONS(5151), - [anon_sym_CARET_LBRACK] = ACTIONS(5151), - [anon_sym_LBRACK_CARET] = ACTIONS(5151), - [sym_uri_autolink] = ACTIONS(5151), - [sym_email_autolink] = ACTIONS(5151), - [sym__whitespace_ge_2] = ACTIONS(5151), - [aux_sym__whitespace_token1] = ACTIONS(5153), - [sym__word_no_digit] = ACTIONS(5151), - [sym__digits] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5151), - [sym__code_span_start] = ACTIONS(5151), - [sym__emphasis_open_star] = ACTIONS(5151), - [sym__emphasis_open_underscore] = ACTIONS(5151), - [sym__strikeout_open] = ACTIONS(5151), - [sym__latex_span_start] = ACTIONS(5151), - [sym__single_quote_open] = ACTIONS(5151), - [sym__double_quote_open] = ACTIONS(5151), - [sym__superscript_open] = ACTIONS(5151), - [sym__subscript_open] = ACTIONS(5151), - [sym__subscript_close] = ACTIONS(5151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5151), - [sym__cite_author_in_text] = ACTIONS(5151), - [sym__cite_suppress_author] = ACTIONS(5151), - [sym__shortcode_open_escaped] = ACTIONS(5151), - [sym__shortcode_open] = ACTIONS(5151), - [sym__unclosed_span] = ACTIONS(5151), - [sym__strong_emphasis_open_star] = ACTIONS(5151), - [sym__strong_emphasis_open_underscore] = ACTIONS(5151), - }, - [STATE(1019)] = { - [sym__backslash_escape] = ACTIONS(5155), - [sym_entity_reference] = ACTIONS(5155), - [sym_numeric_character_reference] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_QMARK] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [sym__newline_token] = ACTIONS(5155), - [aux_sym_insert_token1] = ACTIONS(5155), - [aux_sym_delete_token1] = ACTIONS(5155), - [aux_sym_highlight_token1] = ACTIONS(5155), - [aux_sym_edit_comment_token1] = ACTIONS(5155), - [anon_sym_CARET_LBRACK] = ACTIONS(5155), - [anon_sym_LBRACK_CARET] = ACTIONS(5155), - [sym_uri_autolink] = ACTIONS(5155), - [sym_email_autolink] = ACTIONS(5155), - [sym__whitespace_ge_2] = ACTIONS(5155), - [aux_sym__whitespace_token1] = ACTIONS(5157), - [sym__word_no_digit] = ACTIONS(5155), - [sym__digits] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5155), - [sym__code_span_start] = ACTIONS(5155), - [sym__emphasis_open_star] = ACTIONS(5155), - [sym__emphasis_open_underscore] = ACTIONS(5155), - [sym__strikeout_open] = ACTIONS(5155), - [sym__latex_span_start] = ACTIONS(5155), - [sym__single_quote_open] = ACTIONS(5155), - [sym__double_quote_open] = ACTIONS(5155), - [sym__superscript_open] = ACTIONS(5155), - [sym__subscript_open] = ACTIONS(5155), - [sym__subscript_close] = ACTIONS(5155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5155), - [sym__cite_author_in_text] = ACTIONS(5155), - [sym__cite_suppress_author] = ACTIONS(5155), - [sym__shortcode_open_escaped] = ACTIONS(5155), - [sym__shortcode_open] = ACTIONS(5155), - [sym__unclosed_span] = ACTIONS(5155), - [sym__strong_emphasis_open_star] = ACTIONS(5155), - [sym__strong_emphasis_open_underscore] = ACTIONS(5155), - }, - [STATE(1020)] = { - [sym__backslash_escape] = ACTIONS(5159), - [sym_entity_reference] = ACTIONS(5159), - [sym_numeric_character_reference] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_DQUOTE] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_QMARK] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym__newline_token] = ACTIONS(5159), - [aux_sym_insert_token1] = ACTIONS(5159), - [aux_sym_delete_token1] = ACTIONS(5159), - [aux_sym_highlight_token1] = ACTIONS(5159), - [aux_sym_edit_comment_token1] = ACTIONS(5159), - [anon_sym_CARET_LBRACK] = ACTIONS(5159), - [anon_sym_LBRACK_CARET] = ACTIONS(5159), - [sym_uri_autolink] = ACTIONS(5159), - [sym_email_autolink] = ACTIONS(5159), - [sym__whitespace_ge_2] = ACTIONS(5159), - [aux_sym__whitespace_token1] = ACTIONS(5161), - [sym__word_no_digit] = ACTIONS(5159), - [sym__digits] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5159), - [sym__code_span_start] = ACTIONS(5159), - [sym__emphasis_open_star] = ACTIONS(5159), - [sym__emphasis_open_underscore] = ACTIONS(5159), - [sym__strikeout_open] = ACTIONS(5159), - [sym__latex_span_start] = ACTIONS(5159), - [sym__single_quote_open] = ACTIONS(5159), - [sym__double_quote_open] = ACTIONS(5159), - [sym__superscript_open] = ACTIONS(5159), - [sym__subscript_open] = ACTIONS(5159), - [sym__subscript_close] = ACTIONS(5159), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5159), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5159), - [sym__cite_author_in_text] = ACTIONS(5159), - [sym__cite_suppress_author] = ACTIONS(5159), - [sym__shortcode_open_escaped] = ACTIONS(5159), - [sym__shortcode_open] = ACTIONS(5159), - [sym__unclosed_span] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5159), - [sym__strong_emphasis_open_underscore] = ACTIONS(5159), - }, - [STATE(1021)] = { - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__subscript_close] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), - }, - [STATE(1022)] = { - [ts_builtin_sym_end] = ACTIONS(4637), - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), - }, - [STATE(1023)] = { - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__subscript_close] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), - }, - [STATE(1024)] = { - [sym__backslash_escape] = ACTIONS(5163), - [sym_entity_reference] = ACTIONS(5163), - [sym_numeric_character_reference] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_PERCENT] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym_BQUOTE] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [sym__newline_token] = ACTIONS(5163), - [aux_sym_insert_token1] = ACTIONS(5163), - [aux_sym_delete_token1] = ACTIONS(5163), - [aux_sym_highlight_token1] = ACTIONS(5163), - [aux_sym_edit_comment_token1] = ACTIONS(5163), - [anon_sym_CARET_LBRACK] = ACTIONS(5163), - [anon_sym_LBRACK_CARET] = ACTIONS(5163), - [sym_uri_autolink] = ACTIONS(5163), - [sym_email_autolink] = ACTIONS(5163), - [sym__whitespace_ge_2] = ACTIONS(5163), - [aux_sym__whitespace_token1] = ACTIONS(5165), - [sym__word_no_digit] = ACTIONS(5163), - [sym__digits] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5163), - [sym__code_span_start] = ACTIONS(5163), - [sym__emphasis_open_star] = ACTIONS(5163), - [sym__emphasis_open_underscore] = ACTIONS(5163), - [sym__strikeout_open] = ACTIONS(5163), - [sym__latex_span_start] = ACTIONS(5163), - [sym__single_quote_open] = ACTIONS(5163), - [sym__double_quote_open] = ACTIONS(5163), - [sym__superscript_open] = ACTIONS(5163), - [sym__subscript_open] = ACTIONS(5163), - [sym__subscript_close] = ACTIONS(5163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5163), - [sym__cite_author_in_text] = ACTIONS(5163), - [sym__cite_suppress_author] = ACTIONS(5163), - [sym__shortcode_open_escaped] = ACTIONS(5163), - [sym__shortcode_open] = ACTIONS(5163), - [sym__unclosed_span] = ACTIONS(5163), - [sym__strong_emphasis_open_star] = ACTIONS(5163), - [sym__strong_emphasis_open_underscore] = ACTIONS(5163), - }, [STATE(1025)] = { - [sym__backslash_escape] = ACTIONS(5167), - [sym_entity_reference] = ACTIONS(5167), - [sym_numeric_character_reference] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_POUND] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_PERCENT] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_QMARK] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [sym__newline_token] = ACTIONS(5167), - [aux_sym_insert_token1] = ACTIONS(5167), - [aux_sym_delete_token1] = ACTIONS(5167), - [aux_sym_highlight_token1] = ACTIONS(5167), - [aux_sym_edit_comment_token1] = ACTIONS(5167), - [anon_sym_CARET_LBRACK] = ACTIONS(5167), - [anon_sym_LBRACK_CARET] = ACTIONS(5167), - [sym_uri_autolink] = ACTIONS(5167), - [sym_email_autolink] = ACTIONS(5167), - [sym__whitespace_ge_2] = ACTIONS(5167), - [aux_sym__whitespace_token1] = ACTIONS(5169), - [sym__word_no_digit] = ACTIONS(5167), - [sym__digits] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5169), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), - [sym__code_span_start] = ACTIONS(5167), - [sym__emphasis_open_star] = ACTIONS(5167), - [sym__emphasis_open_underscore] = ACTIONS(5167), - [sym__strikeout_open] = ACTIONS(5167), - [sym__latex_span_start] = ACTIONS(5167), - [sym__single_quote_open] = ACTIONS(5167), - [sym__double_quote_open] = ACTIONS(5167), - [sym__superscript_open] = ACTIONS(5167), - [sym__subscript_open] = ACTIONS(5167), - [sym__subscript_close] = ACTIONS(5167), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5167), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5167), - [sym__cite_author_in_text] = ACTIONS(5167), - [sym__cite_suppress_author] = ACTIONS(5167), - [sym__shortcode_open_escaped] = ACTIONS(5167), - [sym__shortcode_open] = ACTIONS(5167), - [sym__unclosed_span] = ACTIONS(5167), - [sym__strong_emphasis_open_star] = ACTIONS(5167), - [sym__strong_emphasis_open_underscore] = ACTIONS(5167), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_close_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(1026)] = { - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__subscript_close] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__emphasis_close_star] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, [STATE(1027)] = { - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__subscript_close] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_close_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(1028)] = { - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__subscript_close] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [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(1029)] = { - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__subscript_close] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [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_close_star] = ACTIONS(4555), + [sym__strong_emphasis_open_underscore] = ACTIONS(4555), }, [STATE(1030)] = { - [sym__backslash_escape] = ACTIONS(5171), - [sym_entity_reference] = ACTIONS(5171), - [sym_numeric_character_reference] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [anon_sym_POUND] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_QMARK] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH] = ACTIONS(5173), - [anon_sym_CARET] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [sym__newline_token] = ACTIONS(5171), - [aux_sym_insert_token1] = ACTIONS(5171), - [aux_sym_delete_token1] = ACTIONS(5171), - [aux_sym_highlight_token1] = ACTIONS(5171), - [aux_sym_edit_comment_token1] = ACTIONS(5171), - [anon_sym_CARET_LBRACK] = ACTIONS(5171), - [anon_sym_LBRACK_CARET] = ACTIONS(5171), - [sym_uri_autolink] = ACTIONS(5171), - [sym_email_autolink] = ACTIONS(5171), - [sym__whitespace_ge_2] = ACTIONS(5171), - [aux_sym__whitespace_token1] = ACTIONS(5173), - [sym__word_no_digit] = ACTIONS(5171), - [sym__digits] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5171), - [sym__code_span_start] = ACTIONS(5171), - [sym__emphasis_open_star] = ACTIONS(5171), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym__strikeout_open] = ACTIONS(5171), - [sym__latex_span_start] = ACTIONS(5171), - [sym__single_quote_open] = ACTIONS(5171), - [sym__double_quote_open] = ACTIONS(5171), - [sym__superscript_open] = ACTIONS(5171), - [sym__subscript_open] = ACTIONS(5171), - [sym__subscript_close] = ACTIONS(5171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5171), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5171), - [sym__cite_author_in_text] = ACTIONS(5171), - [sym__cite_suppress_author] = ACTIONS(5171), - [sym__shortcode_open_escaped] = ACTIONS(5171), - [sym__shortcode_open] = ACTIONS(5171), - [sym__unclosed_span] = ACTIONS(5171), - [sym__strong_emphasis_open_star] = ACTIONS(5171), - [sym__strong_emphasis_open_underscore] = ACTIONS(5171), + [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__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_close_star] = ACTIONS(4559), + [sym__strong_emphasis_open_underscore] = ACTIONS(4559), }, [STATE(1031)] = { - [sym__backslash_escape] = ACTIONS(5175), - [sym_entity_reference] = ACTIONS(5175), - [sym_numeric_character_reference] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_QMARK] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [sym__newline_token] = ACTIONS(5175), - [aux_sym_insert_token1] = ACTIONS(5175), - [aux_sym_delete_token1] = ACTIONS(5175), - [aux_sym_highlight_token1] = ACTIONS(5175), - [aux_sym_edit_comment_token1] = ACTIONS(5175), - [anon_sym_CARET_LBRACK] = ACTIONS(5175), - [anon_sym_LBRACK_CARET] = ACTIONS(5175), - [sym_uri_autolink] = ACTIONS(5175), - [sym_email_autolink] = ACTIONS(5175), - [sym__whitespace_ge_2] = ACTIONS(5175), - [aux_sym__whitespace_token1] = ACTIONS(5177), - [sym__word_no_digit] = ACTIONS(5175), - [sym__digits] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5177), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5175), - [sym__code_span_start] = ACTIONS(5175), - [sym__emphasis_open_star] = ACTIONS(5175), - [sym__emphasis_open_underscore] = ACTIONS(5175), - [sym__strikeout_open] = ACTIONS(5175), - [sym__latex_span_start] = ACTIONS(5175), - [sym__single_quote_open] = ACTIONS(5175), - [sym__double_quote_open] = ACTIONS(5175), - [sym__superscript_open] = ACTIONS(5175), - [sym__subscript_open] = ACTIONS(5175), - [sym__subscript_close] = ACTIONS(5175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5175), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5175), - [sym__cite_author_in_text] = ACTIONS(5175), - [sym__cite_suppress_author] = ACTIONS(5175), - [sym__shortcode_open_escaped] = ACTIONS(5175), - [sym__shortcode_open] = ACTIONS(5175), - [sym__unclosed_span] = ACTIONS(5175), - [sym__strong_emphasis_open_star] = ACTIONS(5175), - [sym__strong_emphasis_open_underscore] = ACTIONS(5175), + [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_close_star] = ACTIONS(4563), + [sym__strong_emphasis_open_underscore] = ACTIONS(4563), }, [STATE(1032)] = { - [sym__backslash_escape] = ACTIONS(4939), - [sym_entity_reference] = ACTIONS(4939), - [sym_numeric_character_reference] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_POUND] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [sym__newline_token] = ACTIONS(4939), - [aux_sym_insert_token1] = ACTIONS(4939), - [aux_sym_delete_token1] = ACTIONS(4939), - [aux_sym_highlight_token1] = ACTIONS(4939), - [aux_sym_edit_comment_token1] = ACTIONS(4939), - [anon_sym_CARET_LBRACK] = ACTIONS(4939), - [anon_sym_LBRACK_CARET] = ACTIONS(4939), - [sym_uri_autolink] = ACTIONS(4939), - [sym_email_autolink] = ACTIONS(4939), - [sym__whitespace_ge_2] = ACTIONS(4939), - [aux_sym__whitespace_token1] = ACTIONS(4941), - [sym__word_no_digit] = ACTIONS(4939), - [sym__digits] = ACTIONS(4939), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4939), - [sym__code_span_start] = ACTIONS(4939), - [sym__emphasis_open_star] = ACTIONS(4939), - [sym__emphasis_open_underscore] = ACTIONS(4939), - [sym__strikeout_open] = ACTIONS(4939), - [sym__latex_span_start] = ACTIONS(4939), - [sym__single_quote_open] = ACTIONS(4939), - [sym__double_quote_open] = ACTIONS(4939), - [sym__superscript_open] = ACTIONS(4939), - [sym__subscript_open] = ACTIONS(4939), - [sym__subscript_close] = ACTIONS(4939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4939), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4939), - [sym__cite_author_in_text] = ACTIONS(4939), - [sym__cite_suppress_author] = ACTIONS(4939), - [sym__shortcode_open_escaped] = ACTIONS(4939), - [sym__shortcode_open] = ACTIONS(4939), - [sym__unclosed_span] = ACTIONS(4939), - [sym__strong_emphasis_open_star] = ACTIONS(4939), - [sym__strong_emphasis_open_underscore] = ACTIONS(4939), + [ts_builtin_sym_end] = ACTIONS(4243), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(1033)] = { - [ts_builtin_sym_end] = ACTIONS(5147), - [sym__backslash_escape] = ACTIONS(5147), - [sym_entity_reference] = ACTIONS(5147), - [sym_numeric_character_reference] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_DQUOTE] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [sym__newline_token] = ACTIONS(5147), - [aux_sym_insert_token1] = ACTIONS(5147), - [aux_sym_delete_token1] = ACTIONS(5147), - [aux_sym_highlight_token1] = ACTIONS(5147), - [aux_sym_edit_comment_token1] = ACTIONS(5147), - [anon_sym_CARET_LBRACK] = ACTIONS(5147), - [anon_sym_LBRACK_CARET] = ACTIONS(5147), - [sym_uri_autolink] = ACTIONS(5147), - [sym_email_autolink] = ACTIONS(5147), - [sym__whitespace_ge_2] = ACTIONS(5147), - [aux_sym__whitespace_token1] = ACTIONS(5149), - [sym__word_no_digit] = ACTIONS(5147), - [sym__digits] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5147), - [sym__code_span_start] = ACTIONS(5147), - [sym__emphasis_open_star] = ACTIONS(5147), - [sym__emphasis_open_underscore] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5147), - [sym__latex_span_start] = ACTIONS(5147), - [sym__single_quote_open] = ACTIONS(5147), - [sym__double_quote_open] = ACTIONS(5147), - [sym__superscript_open] = ACTIONS(5147), - [sym__subscript_open] = ACTIONS(5147), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5147), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5147), - [sym__cite_author_in_text] = ACTIONS(5147), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__shortcode_open_escaped] = ACTIONS(5147), - [sym__shortcode_open] = ACTIONS(5147), - [sym__unclosed_span] = ACTIONS(5147), - [sym__strong_emphasis_open_star] = ACTIONS(5147), - [sym__strong_emphasis_open_underscore] = ACTIONS(5147), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__double_quote_close] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(1034)] = { - [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_STAR] = 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_close_star] = ACTIONS(4747), - [sym__strong_emphasis_open_underscore] = ACTIONS(4747), + [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(1035)] = { - [ts_builtin_sym_end] = ACTIONS(5151), - [sym__backslash_escape] = ACTIONS(5151), - [sym_entity_reference] = ACTIONS(5151), - [sym_numeric_character_reference] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_DQUOTE] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_PERCENT] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_QMARK] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [sym__newline_token] = ACTIONS(5151), - [aux_sym_insert_token1] = ACTIONS(5151), - [aux_sym_delete_token1] = ACTIONS(5151), - [aux_sym_highlight_token1] = ACTIONS(5151), - [aux_sym_edit_comment_token1] = ACTIONS(5151), - [anon_sym_CARET_LBRACK] = ACTIONS(5151), - [anon_sym_LBRACK_CARET] = ACTIONS(5151), - [sym_uri_autolink] = ACTIONS(5151), - [sym_email_autolink] = ACTIONS(5151), - [sym__whitespace_ge_2] = ACTIONS(5151), - [aux_sym__whitespace_token1] = ACTIONS(5153), - [sym__word_no_digit] = ACTIONS(5151), - [sym__digits] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5151), - [sym__code_span_start] = ACTIONS(5151), - [sym__emphasis_open_star] = ACTIONS(5151), - [sym__emphasis_open_underscore] = ACTIONS(5151), - [sym__strikeout_open] = ACTIONS(5151), - [sym__latex_span_start] = ACTIONS(5151), - [sym__single_quote_open] = ACTIONS(5151), - [sym__double_quote_open] = ACTIONS(5151), - [sym__superscript_open] = ACTIONS(5151), - [sym__subscript_open] = ACTIONS(5151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5151), - [sym__cite_author_in_text] = ACTIONS(5151), - [sym__cite_suppress_author] = ACTIONS(5151), - [sym__shortcode_open_escaped] = ACTIONS(5151), - [sym__shortcode_open] = ACTIONS(5151), - [sym__unclosed_span] = ACTIONS(5151), - [sym__strong_emphasis_open_star] = ACTIONS(5151), - [sym__strong_emphasis_open_underscore] = ACTIONS(5151), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), + [sym__strong_emphasis_close_underscore] = ACTIONS(4303), }, [STATE(1036)] = { - [sym__backslash_escape] = ACTIONS(4943), - [sym_entity_reference] = ACTIONS(4943), - [sym_numeric_character_reference] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [sym__newline_token] = ACTIONS(4943), - [aux_sym_insert_token1] = ACTIONS(4943), - [aux_sym_delete_token1] = ACTIONS(4943), - [aux_sym_highlight_token1] = ACTIONS(4943), - [aux_sym_edit_comment_token1] = ACTIONS(4943), - [anon_sym_CARET_LBRACK] = ACTIONS(4943), - [anon_sym_LBRACK_CARET] = ACTIONS(4943), - [sym_uri_autolink] = ACTIONS(4943), - [sym_email_autolink] = ACTIONS(4943), - [sym__whitespace_ge_2] = ACTIONS(4943), - [aux_sym__whitespace_token1] = ACTIONS(4945), - [sym__word_no_digit] = ACTIONS(4943), - [sym__digits] = ACTIONS(4943), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4943), - [sym__code_span_start] = ACTIONS(4943), - [sym__emphasis_open_star] = ACTIONS(4943), - [sym__emphasis_open_underscore] = ACTIONS(4943), - [sym__strikeout_open] = ACTIONS(4943), - [sym__latex_span_start] = ACTIONS(4943), - [sym__single_quote_open] = ACTIONS(4943), - [sym__double_quote_open] = ACTIONS(4943), - [sym__superscript_open] = ACTIONS(4943), - [sym__subscript_open] = ACTIONS(4943), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4943), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4943), - [sym__cite_author_in_text] = ACTIONS(4943), - [sym__cite_suppress_author] = ACTIONS(4943), - [sym__shortcode_open_escaped] = ACTIONS(4943), - [sym__shortcode_open] = ACTIONS(4943), - [sym__unclosed_span] = ACTIONS(4943), - [sym__strong_emphasis_open_star] = ACTIONS(4943), - [sym__strong_emphasis_close_star] = ACTIONS(4943), - [sym__strong_emphasis_open_underscore] = ACTIONS(4943), + [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(1037)] = { - [sym__backslash_escape] = ACTIONS(4947), - [sym_entity_reference] = ACTIONS(4947), - [sym_numeric_character_reference] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_DQUOTE] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [sym__newline_token] = ACTIONS(4947), - [aux_sym_insert_token1] = ACTIONS(4947), - [aux_sym_delete_token1] = ACTIONS(4947), - [aux_sym_highlight_token1] = ACTIONS(4947), - [aux_sym_edit_comment_token1] = ACTIONS(4947), - [anon_sym_CARET_LBRACK] = ACTIONS(4947), - [anon_sym_LBRACK_CARET] = ACTIONS(4947), - [sym_uri_autolink] = ACTIONS(4947), - [sym_email_autolink] = ACTIONS(4947), - [sym__whitespace_ge_2] = ACTIONS(4947), - [aux_sym__whitespace_token1] = ACTIONS(4949), - [sym__word_no_digit] = ACTIONS(4947), - [sym__digits] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4947), - [sym__code_span_start] = ACTIONS(4947), - [sym__emphasis_open_star] = ACTIONS(4947), - [sym__emphasis_open_underscore] = ACTIONS(4947), - [sym__strikeout_open] = ACTIONS(4947), - [sym__latex_span_start] = ACTIONS(4947), - [sym__single_quote_open] = ACTIONS(4947), - [sym__double_quote_open] = ACTIONS(4947), - [sym__superscript_open] = ACTIONS(4947), - [sym__subscript_open] = ACTIONS(4947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4947), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4947), - [sym__cite_author_in_text] = ACTIONS(4947), - [sym__cite_suppress_author] = ACTIONS(4947), - [sym__shortcode_open_escaped] = ACTIONS(4947), - [sym__shortcode_open] = ACTIONS(4947), - [sym__unclosed_span] = ACTIONS(4947), - [sym__strong_emphasis_open_star] = ACTIONS(4947), - [sym__strong_emphasis_close_star] = ACTIONS(4947), - [sym__strong_emphasis_open_underscore] = ACTIONS(4947), + [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__emphasis_close_star] = 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(1038)] = { - [ts_builtin_sym_end] = ACTIONS(5155), - [sym__backslash_escape] = ACTIONS(5155), - [sym_entity_reference] = ACTIONS(5155), - [sym_numeric_character_reference] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_QMARK] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [sym__newline_token] = ACTIONS(5155), - [aux_sym_insert_token1] = ACTIONS(5155), - [aux_sym_delete_token1] = ACTIONS(5155), - [aux_sym_highlight_token1] = ACTIONS(5155), - [aux_sym_edit_comment_token1] = ACTIONS(5155), - [anon_sym_CARET_LBRACK] = ACTIONS(5155), - [anon_sym_LBRACK_CARET] = ACTIONS(5155), - [sym_uri_autolink] = ACTIONS(5155), - [sym_email_autolink] = ACTIONS(5155), - [sym__whitespace_ge_2] = ACTIONS(5155), - [aux_sym__whitespace_token1] = ACTIONS(5157), - [sym__word_no_digit] = ACTIONS(5155), - [sym__digits] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5155), - [sym__code_span_start] = ACTIONS(5155), - [sym__emphasis_open_star] = ACTIONS(5155), - [sym__emphasis_open_underscore] = ACTIONS(5155), - [sym__strikeout_open] = ACTIONS(5155), - [sym__latex_span_start] = ACTIONS(5155), - [sym__single_quote_open] = ACTIONS(5155), - [sym__double_quote_open] = ACTIONS(5155), - [sym__superscript_open] = ACTIONS(5155), - [sym__subscript_open] = ACTIONS(5155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5155), - [sym__cite_author_in_text] = ACTIONS(5155), - [sym__cite_suppress_author] = ACTIONS(5155), - [sym__shortcode_open_escaped] = ACTIONS(5155), - [sym__shortcode_open] = ACTIONS(5155), - [sym__unclosed_span] = ACTIONS(5155), - [sym__strong_emphasis_open_star] = ACTIONS(5155), - [sym__strong_emphasis_open_underscore] = ACTIONS(5155), + [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(1039)] = { - [sym__backslash_escape] = ACTIONS(4951), - [sym_entity_reference] = ACTIONS(4951), - [sym_numeric_character_reference] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [sym__newline_token] = ACTIONS(4951), - [aux_sym_insert_token1] = ACTIONS(4951), - [aux_sym_delete_token1] = ACTIONS(4951), - [aux_sym_highlight_token1] = ACTIONS(4951), - [aux_sym_edit_comment_token1] = ACTIONS(4951), - [anon_sym_CARET_LBRACK] = ACTIONS(4951), - [anon_sym_LBRACK_CARET] = ACTIONS(4951), - [sym_uri_autolink] = ACTIONS(4951), - [sym_email_autolink] = ACTIONS(4951), - [sym__whitespace_ge_2] = ACTIONS(4951), - [aux_sym__whitespace_token1] = ACTIONS(4953), - [sym__word_no_digit] = ACTIONS(4951), - [sym__digits] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4951), - [sym__code_span_start] = ACTIONS(4951), - [sym__emphasis_open_star] = ACTIONS(4951), - [sym__emphasis_open_underscore] = ACTIONS(4951), - [sym__strikeout_open] = ACTIONS(4951), - [sym__latex_span_start] = ACTIONS(4951), - [sym__single_quote_open] = ACTIONS(4951), - [sym__double_quote_open] = ACTIONS(4951), - [sym__superscript_open] = ACTIONS(4951), - [sym__subscript_open] = ACTIONS(4951), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4951), - [sym__cite_author_in_text] = ACTIONS(4951), - [sym__cite_suppress_author] = ACTIONS(4951), - [sym__shortcode_open_escaped] = ACTIONS(4951), - [sym__shortcode_open] = ACTIONS(4951), - [sym__unclosed_span] = ACTIONS(4951), - [sym__strong_emphasis_open_star] = ACTIONS(4951), - [sym__strong_emphasis_close_star] = ACTIONS(4951), - [sym__strong_emphasis_open_underscore] = ACTIONS(4951), + [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__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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4579), }, [STATE(1040)] = { - [sym__backslash_escape] = ACTIONS(4955), - [sym_entity_reference] = ACTIONS(4955), - [sym_numeric_character_reference] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_DQUOTE] = ACTIONS(4955), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4957), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [sym__newline_token] = ACTIONS(4955), - [aux_sym_insert_token1] = ACTIONS(4955), - [aux_sym_delete_token1] = ACTIONS(4955), - [aux_sym_highlight_token1] = ACTIONS(4955), - [aux_sym_edit_comment_token1] = ACTIONS(4955), - [anon_sym_CARET_LBRACK] = ACTIONS(4955), - [anon_sym_LBRACK_CARET] = ACTIONS(4955), - [sym_uri_autolink] = ACTIONS(4955), - [sym_email_autolink] = ACTIONS(4955), - [sym__whitespace_ge_2] = ACTIONS(4955), - [aux_sym__whitespace_token1] = ACTIONS(4957), - [sym__word_no_digit] = ACTIONS(4955), - [sym__digits] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4955), - [sym__code_span_start] = ACTIONS(4955), - [sym__emphasis_open_star] = ACTIONS(4955), - [sym__emphasis_open_underscore] = ACTIONS(4955), - [sym__strikeout_open] = ACTIONS(4955), - [sym__latex_span_start] = ACTIONS(4955), - [sym__single_quote_open] = ACTIONS(4955), - [sym__double_quote_open] = ACTIONS(4955), - [sym__superscript_open] = ACTIONS(4955), - [sym__subscript_open] = ACTIONS(4955), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4955), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4955), - [sym__cite_author_in_text] = ACTIONS(4955), - [sym__cite_suppress_author] = ACTIONS(4955), - [sym__shortcode_open_escaped] = ACTIONS(4955), - [sym__shortcode_open] = ACTIONS(4955), - [sym__unclosed_span] = ACTIONS(4955), - [sym__strong_emphasis_open_star] = ACTIONS(4955), - [sym__strong_emphasis_close_star] = ACTIONS(4955), - [sym__strong_emphasis_open_underscore] = ACTIONS(4955), + [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(1041)] = { - [sym__backslash_escape] = ACTIONS(4959), - [sym_entity_reference] = ACTIONS(4959), - [sym_numeric_character_reference] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_DQUOTE] = ACTIONS(4959), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4961), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_TILDE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4959), - [sym__newline_token] = ACTIONS(4959), - [aux_sym_insert_token1] = ACTIONS(4959), - [aux_sym_delete_token1] = ACTIONS(4959), - [aux_sym_highlight_token1] = ACTIONS(4959), - [aux_sym_edit_comment_token1] = ACTIONS(4959), - [anon_sym_CARET_LBRACK] = ACTIONS(4959), - [anon_sym_LBRACK_CARET] = ACTIONS(4959), - [sym_uri_autolink] = ACTIONS(4959), - [sym_email_autolink] = ACTIONS(4959), - [sym__whitespace_ge_2] = ACTIONS(4959), - [aux_sym__whitespace_token1] = ACTIONS(4961), - [sym__word_no_digit] = ACTIONS(4959), - [sym__digits] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4959), - [sym__code_span_start] = ACTIONS(4959), - [sym__emphasis_open_star] = ACTIONS(4959), - [sym__emphasis_open_underscore] = ACTIONS(4959), - [sym__strikeout_open] = ACTIONS(4959), - [sym__latex_span_start] = ACTIONS(4959), - [sym__single_quote_open] = ACTIONS(4959), - [sym__double_quote_open] = ACTIONS(4959), - [sym__superscript_open] = ACTIONS(4959), - [sym__subscript_open] = ACTIONS(4959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4959), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4959), - [sym__cite_author_in_text] = ACTIONS(4959), - [sym__cite_suppress_author] = ACTIONS(4959), - [sym__shortcode_open_escaped] = ACTIONS(4959), - [sym__shortcode_open] = ACTIONS(4959), - [sym__unclosed_span] = ACTIONS(4959), - [sym__strong_emphasis_open_star] = ACTIONS(4959), - [sym__strong_emphasis_close_star] = ACTIONS(4959), - [sym__strong_emphasis_open_underscore] = ACTIONS(4959), + [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(1042)] = { - [sym__backslash_escape] = ACTIONS(4963), - [sym_entity_reference] = ACTIONS(4963), - [sym_numeric_character_reference] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_DQUOTE] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4963), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_RPAREN] = ACTIONS(4963), - [sym__newline_token] = ACTIONS(4963), - [aux_sym_insert_token1] = ACTIONS(4963), - [aux_sym_delete_token1] = ACTIONS(4963), - [aux_sym_highlight_token1] = ACTIONS(4963), - [aux_sym_edit_comment_token1] = ACTIONS(4963), - [anon_sym_CARET_LBRACK] = ACTIONS(4963), - [anon_sym_LBRACK_CARET] = ACTIONS(4963), - [sym_uri_autolink] = ACTIONS(4963), - [sym_email_autolink] = ACTIONS(4963), - [sym__whitespace_ge_2] = ACTIONS(4963), - [aux_sym__whitespace_token1] = ACTIONS(4965), - [sym__word_no_digit] = ACTIONS(4963), - [sym__digits] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4963), - [sym__code_span_start] = ACTIONS(4963), - [sym__emphasis_open_star] = ACTIONS(4963), - [sym__emphasis_open_underscore] = ACTIONS(4963), - [sym__strikeout_open] = ACTIONS(4963), - [sym__latex_span_start] = ACTIONS(4963), - [sym__single_quote_open] = ACTIONS(4963), - [sym__double_quote_open] = ACTIONS(4963), - [sym__superscript_open] = ACTIONS(4963), - [sym__subscript_open] = ACTIONS(4963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4963), - [sym__cite_author_in_text] = ACTIONS(4963), - [sym__cite_suppress_author] = ACTIONS(4963), - [sym__shortcode_open_escaped] = ACTIONS(4963), - [sym__shortcode_open] = ACTIONS(4963), - [sym__unclosed_span] = ACTIONS(4963), - [sym__strong_emphasis_open_star] = ACTIONS(4963), - [sym__strong_emphasis_close_star] = ACTIONS(4963), - [sym__strong_emphasis_open_underscore] = ACTIONS(4963), + [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(1043)] = { - [sym__backslash_escape] = ACTIONS(4967), - [sym_entity_reference] = ACTIONS(4967), - [sym_numeric_character_reference] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_BQUOTE] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [sym__newline_token] = ACTIONS(4967), - [aux_sym_insert_token1] = ACTIONS(4967), - [aux_sym_delete_token1] = ACTIONS(4967), - [aux_sym_highlight_token1] = ACTIONS(4967), - [aux_sym_edit_comment_token1] = ACTIONS(4967), - [anon_sym_CARET_LBRACK] = ACTIONS(4967), - [anon_sym_LBRACK_CARET] = ACTIONS(4967), - [sym_uri_autolink] = ACTIONS(4967), - [sym_email_autolink] = ACTIONS(4967), - [sym__whitespace_ge_2] = ACTIONS(4967), - [aux_sym__whitespace_token1] = ACTIONS(4969), - [sym__word_no_digit] = ACTIONS(4967), - [sym__digits] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [sym__code_span_start] = ACTIONS(4967), - [sym__emphasis_open_star] = ACTIONS(4967), - [sym__emphasis_open_underscore] = ACTIONS(4967), - [sym__strikeout_open] = ACTIONS(4967), - [sym__latex_span_start] = ACTIONS(4967), - [sym__single_quote_open] = ACTIONS(4967), - [sym__double_quote_open] = ACTIONS(4967), - [sym__superscript_open] = ACTIONS(4967), - [sym__subscript_open] = ACTIONS(4967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4967), - [sym__cite_author_in_text] = ACTIONS(4967), - [sym__cite_suppress_author] = ACTIONS(4967), - [sym__shortcode_open_escaped] = ACTIONS(4967), - [sym__shortcode_open] = ACTIONS(4967), - [sym__unclosed_span] = ACTIONS(4967), - [sym__strong_emphasis_open_star] = ACTIONS(4967), - [sym__strong_emphasis_close_star] = ACTIONS(4967), - [sym__strong_emphasis_open_underscore] = ACTIONS(4967), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4571), }, [STATE(1044)] = { - [sym__backslash_escape] = ACTIONS(4971), - [sym_entity_reference] = ACTIONS(4971), - [sym_numeric_character_reference] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym_BQUOTE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [sym__newline_token] = ACTIONS(4971), - [aux_sym_insert_token1] = ACTIONS(4971), - [aux_sym_delete_token1] = ACTIONS(4971), - [aux_sym_highlight_token1] = ACTIONS(4971), - [aux_sym_edit_comment_token1] = ACTIONS(4971), - [anon_sym_CARET_LBRACK] = ACTIONS(4971), - [anon_sym_LBRACK_CARET] = ACTIONS(4971), - [sym_uri_autolink] = ACTIONS(4971), - [sym_email_autolink] = ACTIONS(4971), - [sym__whitespace_ge_2] = ACTIONS(4971), - [aux_sym__whitespace_token1] = ACTIONS(4973), - [sym__word_no_digit] = ACTIONS(4971), - [sym__digits] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4971), - [sym__code_span_start] = ACTIONS(4971), - [sym__emphasis_open_star] = ACTIONS(4971), - [sym__emphasis_open_underscore] = ACTIONS(4971), - [sym__strikeout_open] = ACTIONS(4971), - [sym__latex_span_start] = ACTIONS(4971), - [sym__single_quote_open] = ACTIONS(4971), - [sym__double_quote_open] = ACTIONS(4971), - [sym__superscript_open] = ACTIONS(4971), - [sym__subscript_open] = ACTIONS(4971), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4971), - [sym__cite_author_in_text] = ACTIONS(4971), - [sym__cite_suppress_author] = ACTIONS(4971), - [sym__shortcode_open_escaped] = ACTIONS(4971), - [sym__shortcode_open] = ACTIONS(4971), - [sym__unclosed_span] = ACTIONS(4971), - [sym__strong_emphasis_open_star] = ACTIONS(4971), - [sym__strong_emphasis_close_star] = ACTIONS(4971), - [sym__strong_emphasis_open_underscore] = ACTIONS(4971), + [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(1045)] = { - [sym__backslash_escape] = ACTIONS(4975), - [sym_entity_reference] = ACTIONS(4975), - [sym_numeric_character_reference] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [sym__newline_token] = ACTIONS(4975), - [aux_sym_insert_token1] = ACTIONS(4975), - [aux_sym_delete_token1] = ACTIONS(4975), - [aux_sym_highlight_token1] = ACTIONS(4975), - [aux_sym_edit_comment_token1] = ACTIONS(4975), - [anon_sym_CARET_LBRACK] = ACTIONS(4975), - [anon_sym_LBRACK_CARET] = ACTIONS(4975), - [sym_uri_autolink] = ACTIONS(4975), - [sym_email_autolink] = ACTIONS(4975), - [sym__whitespace_ge_2] = ACTIONS(4975), - [aux_sym__whitespace_token1] = ACTIONS(4977), - [sym__word_no_digit] = ACTIONS(4975), - [sym__digits] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [sym__code_span_start] = ACTIONS(4975), - [sym__emphasis_open_star] = ACTIONS(4975), - [sym__emphasis_open_underscore] = ACTIONS(4975), - [sym__strikeout_open] = ACTIONS(4975), - [sym__latex_span_start] = ACTIONS(4975), - [sym__single_quote_open] = ACTIONS(4975), - [sym__double_quote_open] = ACTIONS(4975), - [sym__superscript_open] = ACTIONS(4975), - [sym__subscript_open] = ACTIONS(4975), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4975), - [sym__cite_author_in_text] = ACTIONS(4975), - [sym__cite_suppress_author] = ACTIONS(4975), - [sym__shortcode_open_escaped] = ACTIONS(4975), - [sym__shortcode_open] = ACTIONS(4975), - [sym__unclosed_span] = ACTIONS(4975), - [sym__strong_emphasis_open_star] = ACTIONS(4975), - [sym__strong_emphasis_close_star] = ACTIONS(4975), - [sym__strong_emphasis_open_underscore] = ACTIONS(4975), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4591), }, [STATE(1046)] = { - [sym__backslash_escape] = ACTIONS(4979), - [sym_entity_reference] = ACTIONS(4979), - [sym_numeric_character_reference] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_COLON] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), - [sym__newline_token] = ACTIONS(4979), - [aux_sym_insert_token1] = ACTIONS(4979), - [aux_sym_delete_token1] = ACTIONS(4979), - [aux_sym_highlight_token1] = ACTIONS(4979), - [aux_sym_edit_comment_token1] = ACTIONS(4979), - [anon_sym_CARET_LBRACK] = ACTIONS(4979), - [anon_sym_LBRACK_CARET] = ACTIONS(4979), - [sym_uri_autolink] = ACTIONS(4979), - [sym_email_autolink] = ACTIONS(4979), - [sym__whitespace_ge_2] = ACTIONS(4979), - [aux_sym__whitespace_token1] = ACTIONS(4981), - [sym__word_no_digit] = ACTIONS(4979), - [sym__digits] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4979), - [sym__code_span_start] = ACTIONS(4979), - [sym__emphasis_open_star] = ACTIONS(4979), - [sym__emphasis_open_underscore] = ACTIONS(4979), - [sym__strikeout_open] = ACTIONS(4979), - [sym__latex_span_start] = ACTIONS(4979), - [sym__single_quote_open] = ACTIONS(4979), - [sym__double_quote_open] = ACTIONS(4979), - [sym__superscript_open] = ACTIONS(4979), - [sym__subscript_open] = ACTIONS(4979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4979), - [sym__cite_author_in_text] = ACTIONS(4979), - [sym__cite_suppress_author] = ACTIONS(4979), - [sym__shortcode_open_escaped] = ACTIONS(4979), - [sym__shortcode_open] = ACTIONS(4979), - [sym__unclosed_span] = ACTIONS(4979), - [sym__strong_emphasis_open_star] = ACTIONS(4979), - [sym__strong_emphasis_close_star] = ACTIONS(4979), - [sym__strong_emphasis_open_underscore] = ACTIONS(4979), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4595), }, [STATE(1047)] = { - [sym__backslash_escape] = ACTIONS(4983), - [sym_entity_reference] = ACTIONS(4983), - [sym_numeric_character_reference] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [sym__newline_token] = ACTIONS(4983), - [aux_sym_insert_token1] = ACTIONS(4983), - [aux_sym_delete_token1] = ACTIONS(4983), - [aux_sym_highlight_token1] = ACTIONS(4983), - [aux_sym_edit_comment_token1] = ACTIONS(4983), - [anon_sym_CARET_LBRACK] = ACTIONS(4983), - [anon_sym_LBRACK_CARET] = ACTIONS(4983), - [sym_uri_autolink] = ACTIONS(4983), - [sym_email_autolink] = ACTIONS(4983), - [sym__whitespace_ge_2] = ACTIONS(4983), - [aux_sym__whitespace_token1] = ACTIONS(4985), - [sym__word_no_digit] = ACTIONS(4983), - [sym__digits] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4983), - [sym__code_span_start] = ACTIONS(4983), - [sym__emphasis_open_star] = ACTIONS(4983), - [sym__emphasis_open_underscore] = ACTIONS(4983), - [sym__strikeout_open] = ACTIONS(4983), - [sym__latex_span_start] = ACTIONS(4983), - [sym__single_quote_open] = ACTIONS(4983), - [sym__double_quote_open] = ACTIONS(4983), - [sym__superscript_open] = ACTIONS(4983), - [sym__subscript_open] = ACTIONS(4983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4983), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4983), - [sym__cite_author_in_text] = ACTIONS(4983), - [sym__cite_suppress_author] = ACTIONS(4983), - [sym__shortcode_open_escaped] = ACTIONS(4983), - [sym__shortcode_open] = ACTIONS(4983), - [sym__unclosed_span] = ACTIONS(4983), - [sym__strong_emphasis_open_star] = ACTIONS(4983), - [sym__strong_emphasis_close_star] = ACTIONS(4983), - [sym__strong_emphasis_open_underscore] = ACTIONS(4983), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4599), }, [STATE(1048)] = { - [sym__backslash_escape] = ACTIONS(4987), - [sym_entity_reference] = ACTIONS(4987), - [sym_numeric_character_reference] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym__newline_token] = ACTIONS(4987), - [aux_sym_insert_token1] = ACTIONS(4987), - [aux_sym_delete_token1] = ACTIONS(4987), - [aux_sym_highlight_token1] = ACTIONS(4987), - [aux_sym_edit_comment_token1] = ACTIONS(4987), - [anon_sym_CARET_LBRACK] = ACTIONS(4987), - [anon_sym_LBRACK_CARET] = ACTIONS(4987), - [sym_uri_autolink] = ACTIONS(4987), - [sym_email_autolink] = ACTIONS(4987), - [sym__whitespace_ge_2] = ACTIONS(4987), - [aux_sym__whitespace_token1] = ACTIONS(4989), - [sym__word_no_digit] = ACTIONS(4987), - [sym__digits] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4987), - [sym__code_span_start] = ACTIONS(4987), - [sym__emphasis_open_star] = ACTIONS(4987), - [sym__emphasis_open_underscore] = ACTIONS(4987), - [sym__strikeout_open] = ACTIONS(4987), - [sym__latex_span_start] = ACTIONS(4987), - [sym__single_quote_open] = ACTIONS(4987), - [sym__double_quote_open] = ACTIONS(4987), - [sym__superscript_open] = ACTIONS(4987), - [sym__subscript_open] = ACTIONS(4987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4987), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4987), - [sym__cite_author_in_text] = ACTIONS(4987), - [sym__cite_suppress_author] = ACTIONS(4987), - [sym__shortcode_open_escaped] = ACTIONS(4987), - [sym__shortcode_open] = ACTIONS(4987), - [sym__unclosed_span] = ACTIONS(4987), - [sym__strong_emphasis_open_star] = ACTIONS(4987), - [sym__strong_emphasis_close_star] = ACTIONS(4987), - [sym__strong_emphasis_open_underscore] = ACTIONS(4987), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4603), }, [STATE(1049)] = { - [sym__backslash_escape] = ACTIONS(5179), - [sym_entity_reference] = ACTIONS(5179), - [sym_numeric_character_reference] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_QMARK] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_BSLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [sym__newline_token] = ACTIONS(5179), - [aux_sym_insert_token1] = ACTIONS(5179), - [aux_sym_delete_token1] = ACTIONS(5179), - [aux_sym_highlight_token1] = ACTIONS(5179), - [aux_sym_edit_comment_token1] = ACTIONS(5179), - [anon_sym_CARET_LBRACK] = ACTIONS(5179), - [anon_sym_LBRACK_CARET] = ACTIONS(5179), - [sym_uri_autolink] = ACTIONS(5179), - [sym_email_autolink] = ACTIONS(5179), - [sym__whitespace_ge_2] = ACTIONS(5179), - [aux_sym__whitespace_token1] = ACTIONS(5181), - [sym__word_no_digit] = ACTIONS(5179), - [sym__digits] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5181), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5179), - [sym__code_span_start] = ACTIONS(5179), - [sym__emphasis_open_star] = ACTIONS(5179), - [sym__emphasis_open_underscore] = ACTIONS(5179), - [sym__strikeout_open] = ACTIONS(5179), - [sym__latex_span_start] = ACTIONS(5179), - [sym__single_quote_open] = ACTIONS(5179), - [sym__double_quote_open] = ACTIONS(5179), - [sym__superscript_open] = ACTIONS(5179), - [sym__superscript_close] = ACTIONS(5179), - [sym__subscript_open] = ACTIONS(5179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5179), - [sym__cite_author_in_text] = ACTIONS(5179), - [sym__cite_suppress_author] = ACTIONS(5179), - [sym__shortcode_open_escaped] = ACTIONS(5179), - [sym__shortcode_open] = ACTIONS(5179), - [sym__unclosed_span] = ACTIONS(5179), - [sym__strong_emphasis_open_star] = ACTIONS(5179), - [sym__strong_emphasis_open_underscore] = ACTIONS(5179), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4607), }, [STATE(1050)] = { - [sym__backslash_escape] = ACTIONS(4991), - [sym_entity_reference] = ACTIONS(4991), - [sym_numeric_character_reference] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH] = ACTIONS(4993), - [anon_sym_CARET] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym__newline_token] = ACTIONS(4991), - [aux_sym_insert_token1] = ACTIONS(4991), - [aux_sym_delete_token1] = ACTIONS(4991), - [aux_sym_highlight_token1] = ACTIONS(4991), - [aux_sym_edit_comment_token1] = ACTIONS(4991), - [anon_sym_CARET_LBRACK] = ACTIONS(4991), - [anon_sym_LBRACK_CARET] = ACTIONS(4991), - [sym_uri_autolink] = ACTIONS(4991), - [sym_email_autolink] = ACTIONS(4991), - [sym__whitespace_ge_2] = ACTIONS(4991), - [aux_sym__whitespace_token1] = ACTIONS(4993), - [sym__word_no_digit] = ACTIONS(4991), - [sym__digits] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), - [sym__code_span_start] = ACTIONS(4991), - [sym__emphasis_open_star] = ACTIONS(4991), - [sym__emphasis_open_underscore] = ACTIONS(4991), - [sym__strikeout_open] = ACTIONS(4991), - [sym__latex_span_start] = ACTIONS(4991), - [sym__single_quote_open] = ACTIONS(4991), - [sym__double_quote_open] = ACTIONS(4991), - [sym__superscript_open] = ACTIONS(4991), - [sym__subscript_open] = ACTIONS(4991), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4991), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4991), - [sym__cite_author_in_text] = ACTIONS(4991), - [sym__cite_suppress_author] = ACTIONS(4991), - [sym__shortcode_open_escaped] = ACTIONS(4991), - [sym__shortcode_open] = ACTIONS(4991), - [sym__unclosed_span] = ACTIONS(4991), - [sym__strong_emphasis_open_star] = ACTIONS(4991), - [sym__strong_emphasis_close_star] = ACTIONS(4991), - [sym__strong_emphasis_open_underscore] = ACTIONS(4991), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4611), }, [STATE(1051)] = { - [sym__backslash_escape] = ACTIONS(4995), - [sym_entity_reference] = ACTIONS(4995), - [sym_numeric_character_reference] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym__newline_token] = ACTIONS(4995), - [aux_sym_insert_token1] = ACTIONS(4995), - [aux_sym_delete_token1] = ACTIONS(4995), - [aux_sym_highlight_token1] = ACTIONS(4995), - [aux_sym_edit_comment_token1] = ACTIONS(4995), - [anon_sym_CARET_LBRACK] = ACTIONS(4995), - [anon_sym_LBRACK_CARET] = ACTIONS(4995), - [sym_uri_autolink] = ACTIONS(4995), - [sym_email_autolink] = ACTIONS(4995), - [sym__whitespace_ge_2] = ACTIONS(4995), - [aux_sym__whitespace_token1] = ACTIONS(4997), - [sym__word_no_digit] = ACTIONS(4995), - [sym__digits] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4995), - [sym__code_span_start] = ACTIONS(4995), - [sym__emphasis_open_star] = ACTIONS(4995), - [sym__emphasis_open_underscore] = ACTIONS(4995), - [sym__strikeout_open] = ACTIONS(4995), - [sym__latex_span_start] = ACTIONS(4995), - [sym__single_quote_open] = ACTIONS(4995), - [sym__double_quote_open] = ACTIONS(4995), - [sym__superscript_open] = ACTIONS(4995), - [sym__subscript_open] = ACTIONS(4995), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4995), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4995), - [sym__cite_author_in_text] = ACTIONS(4995), - [sym__cite_suppress_author] = ACTIONS(4995), - [sym__shortcode_open_escaped] = ACTIONS(4995), - [sym__shortcode_open] = ACTIONS(4995), - [sym__unclosed_span] = ACTIONS(4995), - [sym__strong_emphasis_open_star] = ACTIONS(4995), - [sym__strong_emphasis_close_star] = ACTIONS(4995), - [sym__strong_emphasis_open_underscore] = ACTIONS(4995), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4615), }, [STATE(1052)] = { - [sym__backslash_escape] = ACTIONS(4999), - [sym_entity_reference] = ACTIONS(4999), - [sym_numeric_character_reference] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [sym__newline_token] = ACTIONS(4999), - [aux_sym_insert_token1] = ACTIONS(4999), - [aux_sym_delete_token1] = ACTIONS(4999), - [aux_sym_highlight_token1] = ACTIONS(4999), - [aux_sym_edit_comment_token1] = ACTIONS(4999), - [anon_sym_CARET_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_CARET] = ACTIONS(4999), - [sym_uri_autolink] = ACTIONS(4999), - [sym_email_autolink] = ACTIONS(4999), - [sym__whitespace_ge_2] = ACTIONS(4999), - [aux_sym__whitespace_token1] = ACTIONS(5001), - [sym__word_no_digit] = ACTIONS(4999), - [sym__digits] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4999), - [sym__code_span_start] = ACTIONS(4999), - [sym__emphasis_open_star] = ACTIONS(4999), - [sym__emphasis_open_underscore] = ACTIONS(4999), - [sym__strikeout_open] = ACTIONS(4999), - [sym__latex_span_start] = ACTIONS(4999), - [sym__single_quote_open] = ACTIONS(4999), - [sym__double_quote_open] = ACTIONS(4999), - [sym__superscript_open] = ACTIONS(4999), - [sym__subscript_open] = ACTIONS(4999), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4999), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4999), - [sym__cite_author_in_text] = ACTIONS(4999), - [sym__cite_suppress_author] = ACTIONS(4999), - [sym__shortcode_open_escaped] = ACTIONS(4999), - [sym__shortcode_open] = ACTIONS(4999), - [sym__unclosed_span] = ACTIONS(4999), - [sym__strong_emphasis_open_star] = ACTIONS(4999), - [sym__strong_emphasis_close_star] = ACTIONS(4999), - [sym__strong_emphasis_open_underscore] = ACTIONS(4999), + [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__subscript_close] = 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(1053)] = { - [sym__backslash_escape] = ACTIONS(5003), - [sym_entity_reference] = ACTIONS(5003), - [sym_numeric_character_reference] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym__newline_token] = ACTIONS(5003), - [aux_sym_insert_token1] = ACTIONS(5003), - [aux_sym_delete_token1] = ACTIONS(5003), - [aux_sym_highlight_token1] = ACTIONS(5003), - [aux_sym_edit_comment_token1] = ACTIONS(5003), - [anon_sym_CARET_LBRACK] = ACTIONS(5003), - [anon_sym_LBRACK_CARET] = ACTIONS(5003), - [sym_uri_autolink] = ACTIONS(5003), - [sym_email_autolink] = ACTIONS(5003), - [sym__whitespace_ge_2] = ACTIONS(5003), - [aux_sym__whitespace_token1] = ACTIONS(5005), - [sym__word_no_digit] = ACTIONS(5003), - [sym__digits] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [sym__code_span_start] = ACTIONS(5003), - [sym__emphasis_open_star] = ACTIONS(5003), - [sym__emphasis_open_underscore] = ACTIONS(5003), - [sym__strikeout_open] = ACTIONS(5003), - [sym__latex_span_start] = ACTIONS(5003), - [sym__single_quote_open] = ACTIONS(5003), - [sym__double_quote_open] = ACTIONS(5003), - [sym__superscript_open] = ACTIONS(5003), - [sym__subscript_open] = ACTIONS(5003), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5003), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5003), - [sym__cite_author_in_text] = ACTIONS(5003), - [sym__cite_suppress_author] = ACTIONS(5003), - [sym__shortcode_open_escaped] = ACTIONS(5003), - [sym__shortcode_open] = ACTIONS(5003), - [sym__unclosed_span] = ACTIONS(5003), - [sym__strong_emphasis_open_star] = ACTIONS(5003), - [sym__strong_emphasis_close_star] = ACTIONS(5003), - [sym__strong_emphasis_open_underscore] = ACTIONS(5003), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4623), }, [STATE(1054)] = { - [sym__backslash_escape] = ACTIONS(5007), - [sym_entity_reference] = ACTIONS(5007), - [sym_numeric_character_reference] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH] = ACTIONS(5009), - [anon_sym_CARET] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym__newline_token] = ACTIONS(5007), - [aux_sym_insert_token1] = ACTIONS(5007), - [aux_sym_delete_token1] = ACTIONS(5007), - [aux_sym_highlight_token1] = ACTIONS(5007), - [aux_sym_edit_comment_token1] = ACTIONS(5007), - [anon_sym_CARET_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_CARET] = ACTIONS(5007), - [sym_uri_autolink] = ACTIONS(5007), - [sym_email_autolink] = ACTIONS(5007), - [sym__whitespace_ge_2] = ACTIONS(5007), - [aux_sym__whitespace_token1] = ACTIONS(5009), - [sym__word_no_digit] = ACTIONS(5007), - [sym__digits] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), - [sym__code_span_start] = ACTIONS(5007), - [sym__emphasis_open_star] = ACTIONS(5007), - [sym__emphasis_open_underscore] = ACTIONS(5007), - [sym__strikeout_open] = ACTIONS(5007), - [sym__latex_span_start] = ACTIONS(5007), - [sym__single_quote_open] = ACTIONS(5007), - [sym__double_quote_open] = ACTIONS(5007), - [sym__superscript_open] = ACTIONS(5007), - [sym__subscript_open] = ACTIONS(5007), - [sym__subscript_close] = ACTIONS(5007), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5007), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5007), - [sym__cite_author_in_text] = ACTIONS(5007), - [sym__cite_suppress_author] = ACTIONS(5007), - [sym__shortcode_open_escaped] = ACTIONS(5007), - [sym__shortcode_open] = ACTIONS(5007), - [sym__unclosed_span] = ACTIONS(5007), - [sym__strong_emphasis_open_star] = ACTIONS(5007), - [sym__strong_emphasis_open_underscore] = ACTIONS(5007), + [sym__backslash_escape] = ACTIONS(4495), + [sym_entity_reference] = ACTIONS(4495), + [sym_numeric_character_reference] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_QMARK] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_BSLASH] = ACTIONS(4497), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_BQUOTE] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [sym__newline_token] = ACTIONS(4495), + [aux_sym_insert_token1] = ACTIONS(4495), + [aux_sym_delete_token1] = ACTIONS(4495), + [aux_sym_highlight_token1] = ACTIONS(4495), + [aux_sym_edit_comment_token1] = ACTIONS(4495), + [anon_sym_CARET_LBRACK] = ACTIONS(4495), + [anon_sym_LBRACK_CARET] = ACTIONS(4495), + [sym_uri_autolink] = ACTIONS(4495), + [sym_email_autolink] = ACTIONS(4495), + [sym__whitespace_ge_2] = ACTIONS(4495), + [aux_sym__whitespace_token1] = ACTIONS(4497), + [sym__word_no_digit] = ACTIONS(4495), + [sym__digits] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4495), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(4495), + [sym__emphasis_open_underscore] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4495), + [sym__latex_span_start] = ACTIONS(4495), + [sym__single_quote_open] = ACTIONS(4495), + [sym__double_quote_open] = ACTIONS(4495), + [sym__superscript_open] = ACTIONS(4495), + [sym__subscript_open] = ACTIONS(4495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4495), + [sym__cite_author_in_text] = ACTIONS(4495), + [sym__cite_suppress_author] = ACTIONS(4495), + [sym__shortcode_open_escaped] = ACTIONS(4495), + [sym__shortcode_open] = ACTIONS(4495), + [sym__unclosed_span] = ACTIONS(4495), + [sym__strong_emphasis_open_star] = ACTIONS(4495), + [sym__strong_emphasis_open_underscore] = ACTIONS(4495), + [sym__strong_emphasis_close_underscore] = ACTIONS(4495), }, [STATE(1055)] = { - [sym__backslash_escape] = ACTIONS(5011), - [sym_entity_reference] = ACTIONS(5011), - [sym_numeric_character_reference] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_AMP] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym_BQUOTE] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym__newline_token] = ACTIONS(5011), - [aux_sym_insert_token1] = ACTIONS(5011), - [aux_sym_delete_token1] = ACTIONS(5011), - [aux_sym_highlight_token1] = ACTIONS(5011), - [aux_sym_edit_comment_token1] = ACTIONS(5011), - [anon_sym_CARET_LBRACK] = ACTIONS(5011), - [anon_sym_LBRACK_CARET] = ACTIONS(5011), - [sym_uri_autolink] = ACTIONS(5011), - [sym_email_autolink] = ACTIONS(5011), - [sym__whitespace_ge_2] = ACTIONS(5011), - [aux_sym__whitespace_token1] = ACTIONS(5013), - [sym__word_no_digit] = ACTIONS(5011), - [sym__digits] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5011), - [sym__code_span_start] = ACTIONS(5011), - [sym__emphasis_open_star] = ACTIONS(5011), - [sym__emphasis_open_underscore] = ACTIONS(5011), - [sym__strikeout_open] = ACTIONS(5011), - [sym__latex_span_start] = ACTIONS(5011), - [sym__single_quote_open] = ACTIONS(5011), - [sym__double_quote_open] = ACTIONS(5011), - [sym__superscript_open] = ACTIONS(5011), - [sym__subscript_open] = ACTIONS(5011), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5011), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5011), - [sym__cite_author_in_text] = ACTIONS(5011), - [sym__cite_suppress_author] = ACTIONS(5011), - [sym__shortcode_open_escaped] = ACTIONS(5011), - [sym__shortcode_open] = ACTIONS(5011), - [sym__unclosed_span] = ACTIONS(5011), - [sym__strong_emphasis_open_star] = ACTIONS(5011), - [sym__strong_emphasis_close_star] = ACTIONS(5011), - [sym__strong_emphasis_open_underscore] = ACTIONS(5011), + [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(1056)] = { - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_close_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4583), }, [STATE(1057)] = { - [sym__backslash_escape] = ACTIONS(5015), - [sym_entity_reference] = ACTIONS(5015), - [sym_numeric_character_reference] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym_BQUOTE] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__newline_token] = ACTIONS(5015), - [aux_sym_insert_token1] = ACTIONS(5015), - [aux_sym_delete_token1] = ACTIONS(5015), - [aux_sym_highlight_token1] = ACTIONS(5015), - [aux_sym_edit_comment_token1] = ACTIONS(5015), - [anon_sym_CARET_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_CARET] = ACTIONS(5015), - [sym_uri_autolink] = ACTIONS(5015), - [sym_email_autolink] = ACTIONS(5015), - [sym__whitespace_ge_2] = ACTIONS(5015), - [aux_sym__whitespace_token1] = ACTIONS(5017), - [sym__word_no_digit] = ACTIONS(5015), - [sym__digits] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5015), - [sym__code_span_start] = ACTIONS(5015), - [sym__emphasis_open_star] = ACTIONS(5015), - [sym__emphasis_open_underscore] = ACTIONS(5015), - [sym__strikeout_open] = ACTIONS(5015), - [sym__latex_span_start] = ACTIONS(5015), - [sym__single_quote_open] = ACTIONS(5015), - [sym__double_quote_open] = ACTIONS(5015), - [sym__superscript_open] = ACTIONS(5015), - [sym__subscript_open] = ACTIONS(5015), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5015), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5015), - [sym__cite_author_in_text] = ACTIONS(5015), - [sym__cite_suppress_author] = ACTIONS(5015), - [sym__shortcode_open_escaped] = ACTIONS(5015), - [sym__shortcode_open] = ACTIONS(5015), - [sym__unclosed_span] = ACTIONS(5015), - [sym__strong_emphasis_open_star] = ACTIONS(5015), - [sym__strong_emphasis_close_star] = ACTIONS(5015), - [sym__strong_emphasis_open_underscore] = ACTIONS(5015), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__superscript_close] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(1058)] = { - [sym__backslash_escape] = ACTIONS(5019), - [sym_entity_reference] = ACTIONS(5019), - [sym_numeric_character_reference] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_DQUOTE] = ACTIONS(5019), - [anon_sym_POUND] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym__newline_token] = ACTIONS(5019), - [aux_sym_insert_token1] = ACTIONS(5019), - [aux_sym_delete_token1] = ACTIONS(5019), - [aux_sym_highlight_token1] = ACTIONS(5019), - [aux_sym_edit_comment_token1] = ACTIONS(5019), - [anon_sym_CARET_LBRACK] = ACTIONS(5019), - [anon_sym_LBRACK_CARET] = ACTIONS(5019), - [sym_uri_autolink] = ACTIONS(5019), - [sym_email_autolink] = ACTIONS(5019), - [sym__whitespace_ge_2] = ACTIONS(5019), - [aux_sym__whitespace_token1] = ACTIONS(5021), - [sym__word_no_digit] = ACTIONS(5019), - [sym__digits] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [sym__code_span_start] = ACTIONS(5019), - [sym__emphasis_open_star] = ACTIONS(5019), - [sym__emphasis_open_underscore] = ACTIONS(5019), - [sym__strikeout_open] = ACTIONS(5019), - [sym__latex_span_start] = ACTIONS(5019), - [sym__single_quote_open] = ACTIONS(5019), - [sym__double_quote_open] = ACTIONS(5019), - [sym__superscript_open] = ACTIONS(5019), - [sym__subscript_open] = ACTIONS(5019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5019), - [sym__cite_author_in_text] = ACTIONS(5019), - [sym__cite_suppress_author] = ACTIONS(5019), - [sym__shortcode_open_escaped] = ACTIONS(5019), - [sym__shortcode_open] = ACTIONS(5019), - [sym__unclosed_span] = ACTIONS(5019), - [sym__strong_emphasis_open_star] = ACTIONS(5019), - [sym__strong_emphasis_close_star] = ACTIONS(5019), - [sym__strong_emphasis_open_underscore] = ACTIONS(5019), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4631), }, [STATE(1059)] = { - [sym__backslash_escape] = ACTIONS(5023), - [sym_entity_reference] = ACTIONS(5023), - [sym_numeric_character_reference] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [sym__newline_token] = ACTIONS(5023), - [aux_sym_insert_token1] = ACTIONS(5023), - [aux_sym_delete_token1] = ACTIONS(5023), - [aux_sym_highlight_token1] = ACTIONS(5023), - [aux_sym_edit_comment_token1] = ACTIONS(5023), - [anon_sym_CARET_LBRACK] = ACTIONS(5023), - [anon_sym_LBRACK_CARET] = ACTIONS(5023), - [sym_uri_autolink] = ACTIONS(5023), - [sym_email_autolink] = ACTIONS(5023), - [sym__whitespace_ge_2] = ACTIONS(5023), - [aux_sym__whitespace_token1] = ACTIONS(5025), - [sym__word_no_digit] = ACTIONS(5023), - [sym__digits] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5023), - [sym__code_span_start] = ACTIONS(5023), - [sym__emphasis_open_star] = ACTIONS(5023), - [sym__emphasis_open_underscore] = ACTIONS(5023), - [sym__strikeout_open] = ACTIONS(5023), - [sym__latex_span_start] = ACTIONS(5023), - [sym__single_quote_open] = ACTIONS(5023), - [sym__double_quote_open] = ACTIONS(5023), - [sym__superscript_open] = ACTIONS(5023), - [sym__subscript_open] = ACTIONS(5023), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5023), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5023), - [sym__cite_author_in_text] = ACTIONS(5023), - [sym__cite_suppress_author] = ACTIONS(5023), - [sym__shortcode_open_escaped] = ACTIONS(5023), - [sym__shortcode_open] = ACTIONS(5023), - [sym__unclosed_span] = ACTIONS(5023), - [sym__strong_emphasis_open_star] = ACTIONS(5023), - [sym__strong_emphasis_close_star] = ACTIONS(5023), - [sym__strong_emphasis_open_underscore] = ACTIONS(5023), + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), + [sym__strong_emphasis_close_underscore] = ACTIONS(4223), }, [STATE(1060)] = { - [sym__backslash_escape] = ACTIONS(5027), - [sym_entity_reference] = ACTIONS(5027), - [sym_numeric_character_reference] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [sym__newline_token] = ACTIONS(5027), - [aux_sym_insert_token1] = ACTIONS(5027), - [aux_sym_delete_token1] = ACTIONS(5027), - [aux_sym_highlight_token1] = ACTIONS(5027), - [aux_sym_edit_comment_token1] = ACTIONS(5027), - [anon_sym_CARET_LBRACK] = ACTIONS(5027), - [anon_sym_LBRACK_CARET] = ACTIONS(5027), - [sym_uri_autolink] = ACTIONS(5027), - [sym_email_autolink] = ACTIONS(5027), - [sym__whitespace_ge_2] = ACTIONS(5027), - [aux_sym__whitespace_token1] = ACTIONS(5029), - [sym__word_no_digit] = ACTIONS(5027), - [sym__digits] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5027), - [sym__code_span_start] = ACTIONS(5027), - [sym__emphasis_open_star] = ACTIONS(5027), - [sym__emphasis_open_underscore] = ACTIONS(5027), - [sym__strikeout_open] = ACTIONS(5027), - [sym__latex_span_start] = ACTIONS(5027), - [sym__single_quote_open] = ACTIONS(5027), - [sym__double_quote_open] = ACTIONS(5027), - [sym__superscript_open] = ACTIONS(5027), - [sym__subscript_open] = ACTIONS(5027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5027), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5027), - [sym__cite_author_in_text] = ACTIONS(5027), - [sym__cite_suppress_author] = ACTIONS(5027), - [sym__shortcode_open_escaped] = ACTIONS(5027), - [sym__shortcode_open] = ACTIONS(5027), - [sym__unclosed_span] = ACTIONS(5027), - [sym__strong_emphasis_open_star] = ACTIONS(5027), - [sym__strong_emphasis_close_star] = ACTIONS(5027), - [sym__strong_emphasis_open_underscore] = ACTIONS(5027), + [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_star] = 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(1061)] = { - [sym__backslash_escape] = ACTIONS(5031), - [sym_entity_reference] = ACTIONS(5031), - [sym_numeric_character_reference] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_BSLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_BQUOTE] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [sym__newline_token] = ACTIONS(5031), - [aux_sym_insert_token1] = ACTIONS(5031), - [aux_sym_delete_token1] = ACTIONS(5031), - [aux_sym_highlight_token1] = ACTIONS(5031), - [aux_sym_edit_comment_token1] = ACTIONS(5031), - [anon_sym_CARET_LBRACK] = ACTIONS(5031), - [anon_sym_LBRACK_CARET] = ACTIONS(5031), - [sym_uri_autolink] = ACTIONS(5031), - [sym_email_autolink] = ACTIONS(5031), - [sym__whitespace_ge_2] = ACTIONS(5031), - [aux_sym__whitespace_token1] = ACTIONS(5033), - [sym__word_no_digit] = ACTIONS(5031), - [sym__digits] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [sym__code_span_start] = ACTIONS(5031), - [sym__emphasis_open_star] = ACTIONS(5031), - [sym__emphasis_open_underscore] = ACTIONS(5031), - [sym__strikeout_open] = ACTIONS(5031), - [sym__latex_span_start] = ACTIONS(5031), - [sym__single_quote_open] = ACTIONS(5031), - [sym__double_quote_open] = ACTIONS(5031), - [sym__superscript_open] = ACTIONS(5031), - [sym__subscript_open] = ACTIONS(5031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5031), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5031), - [sym__cite_author_in_text] = ACTIONS(5031), - [sym__cite_suppress_author] = ACTIONS(5031), - [sym__shortcode_open_escaped] = ACTIONS(5031), - [sym__shortcode_open] = ACTIONS(5031), - [sym__unclosed_span] = ACTIONS(5031), - [sym__strong_emphasis_open_star] = ACTIONS(5031), - [sym__strong_emphasis_close_star] = ACTIONS(5031), - [sym__strong_emphasis_open_underscore] = ACTIONS(5031), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4635), }, [STATE(1062)] = { - [sym__backslash_escape] = ACTIONS(5035), - [sym_entity_reference] = ACTIONS(5035), - [sym_numeric_character_reference] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_DQUOTE] = ACTIONS(5035), - [anon_sym_POUND] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_BSLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [sym__newline_token] = ACTIONS(5035), - [aux_sym_insert_token1] = ACTIONS(5035), - [aux_sym_delete_token1] = ACTIONS(5035), - [aux_sym_highlight_token1] = ACTIONS(5035), - [aux_sym_edit_comment_token1] = ACTIONS(5035), - [anon_sym_CARET_LBRACK] = ACTIONS(5035), - [anon_sym_LBRACK_CARET] = ACTIONS(5035), - [sym_uri_autolink] = ACTIONS(5035), - [sym_email_autolink] = ACTIONS(5035), - [sym__whitespace_ge_2] = ACTIONS(5035), - [aux_sym__whitespace_token1] = ACTIONS(5037), - [sym__word_no_digit] = ACTIONS(5035), - [sym__digits] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5035), - [sym__code_span_start] = ACTIONS(5035), - [sym__emphasis_open_star] = ACTIONS(5035), - [sym__emphasis_open_underscore] = ACTIONS(5035), - [sym__strikeout_open] = ACTIONS(5035), - [sym__latex_span_start] = ACTIONS(5035), - [sym__single_quote_open] = ACTIONS(5035), - [sym__double_quote_open] = ACTIONS(5035), - [sym__superscript_open] = ACTIONS(5035), - [sym__subscript_open] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5035), - [sym__cite_author_in_text] = ACTIONS(5035), - [sym__cite_suppress_author] = ACTIONS(5035), - [sym__shortcode_open_escaped] = ACTIONS(5035), - [sym__shortcode_open] = ACTIONS(5035), - [sym__unclosed_span] = ACTIONS(5035), - [sym__strong_emphasis_open_star] = ACTIONS(5035), - [sym__strong_emphasis_close_star] = ACTIONS(5035), - [sym__strong_emphasis_open_underscore] = ACTIONS(5035), + [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(1063)] = { - [sym__backslash_escape] = ACTIONS(5039), - [sym_entity_reference] = ACTIONS(5039), - [sym_numeric_character_reference] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(5039), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_BSLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [sym__newline_token] = ACTIONS(5039), - [aux_sym_insert_token1] = ACTIONS(5039), - [aux_sym_delete_token1] = ACTIONS(5039), - [aux_sym_highlight_token1] = ACTIONS(5039), - [aux_sym_edit_comment_token1] = ACTIONS(5039), - [anon_sym_CARET_LBRACK] = ACTIONS(5039), - [anon_sym_LBRACK_CARET] = ACTIONS(5039), - [sym_uri_autolink] = ACTIONS(5039), - [sym_email_autolink] = ACTIONS(5039), - [sym__whitespace_ge_2] = ACTIONS(5039), - [aux_sym__whitespace_token1] = ACTIONS(5041), - [sym__word_no_digit] = ACTIONS(5039), - [sym__digits] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5039), - [sym__code_span_start] = ACTIONS(5039), - [sym__emphasis_open_star] = ACTIONS(5039), - [sym__emphasis_open_underscore] = ACTIONS(5039), - [sym__strikeout_open] = ACTIONS(5039), - [sym__latex_span_start] = ACTIONS(5039), - [sym__single_quote_open] = ACTIONS(5039), - [sym__double_quote_open] = ACTIONS(5039), - [sym__superscript_open] = ACTIONS(5039), - [sym__subscript_open] = ACTIONS(5039), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5039), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5039), - [sym__cite_author_in_text] = ACTIONS(5039), - [sym__cite_suppress_author] = ACTIONS(5039), - [sym__shortcode_open_escaped] = ACTIONS(5039), - [sym__shortcode_open] = ACTIONS(5039), - [sym__unclosed_span] = ACTIONS(5039), - [sym__strong_emphasis_open_star] = ACTIONS(5039), - [sym__strong_emphasis_close_star] = ACTIONS(5039), - [sym__strong_emphasis_open_underscore] = ACTIONS(5039), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4643), }, [STATE(1064)] = { - [sym__backslash_escape] = ACTIONS(5043), - [sym_entity_reference] = ACTIONS(5043), - [sym_numeric_character_reference] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_DQUOTE] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_QMARK] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_BSLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [sym__newline_token] = ACTIONS(5043), - [aux_sym_insert_token1] = ACTIONS(5043), - [aux_sym_delete_token1] = ACTIONS(5043), - [aux_sym_highlight_token1] = ACTIONS(5043), - [aux_sym_edit_comment_token1] = ACTIONS(5043), - [anon_sym_CARET_LBRACK] = ACTIONS(5043), - [anon_sym_LBRACK_CARET] = ACTIONS(5043), - [sym_uri_autolink] = ACTIONS(5043), - [sym_email_autolink] = ACTIONS(5043), - [sym__whitespace_ge_2] = ACTIONS(5043), - [aux_sym__whitespace_token1] = ACTIONS(5045), - [sym__word_no_digit] = ACTIONS(5043), - [sym__digits] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), - [sym__code_span_start] = ACTIONS(5043), - [sym__emphasis_open_star] = ACTIONS(5043), - [sym__emphasis_open_underscore] = ACTIONS(5043), - [sym__strikeout_open] = ACTIONS(5043), - [sym__latex_span_start] = ACTIONS(5043), - [sym__single_quote_open] = ACTIONS(5043), - [sym__double_quote_open] = ACTIONS(5043), - [sym__superscript_open] = ACTIONS(5043), - [sym__subscript_open] = ACTIONS(5043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5043), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5043), - [sym__cite_author_in_text] = ACTIONS(5043), - [sym__cite_suppress_author] = ACTIONS(5043), - [sym__shortcode_open_escaped] = ACTIONS(5043), - [sym__shortcode_open] = ACTIONS(5043), - [sym__unclosed_span] = ACTIONS(5043), - [sym__strong_emphasis_open_star] = ACTIONS(5043), - [sym__strong_emphasis_close_star] = ACTIONS(5043), - [sym__strong_emphasis_open_underscore] = ACTIONS(5043), + [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(1065)] = { - [sym__backslash_escape] = ACTIONS(5047), - [sym_entity_reference] = ACTIONS(5047), - [sym_numeric_character_reference] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(5047), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [sym__newline_token] = ACTIONS(5047), - [aux_sym_insert_token1] = ACTIONS(5047), - [aux_sym_delete_token1] = ACTIONS(5047), - [aux_sym_highlight_token1] = ACTIONS(5047), - [aux_sym_edit_comment_token1] = ACTIONS(5047), - [anon_sym_CARET_LBRACK] = ACTIONS(5047), - [anon_sym_LBRACK_CARET] = ACTIONS(5047), - [sym_uri_autolink] = ACTIONS(5047), - [sym_email_autolink] = ACTIONS(5047), - [sym__whitespace_ge_2] = ACTIONS(5047), - [aux_sym__whitespace_token1] = ACTIONS(5049), - [sym__word_no_digit] = ACTIONS(5047), - [sym__digits] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5047), - [sym__code_span_start] = ACTIONS(5047), - [sym__emphasis_open_star] = ACTIONS(5047), - [sym__emphasis_open_underscore] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5047), - [sym__latex_span_start] = ACTIONS(5047), - [sym__single_quote_open] = ACTIONS(5047), - [sym__double_quote_open] = ACTIONS(5047), - [sym__superscript_open] = ACTIONS(5047), - [sym__subscript_open] = ACTIONS(5047), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5047), - [sym__cite_author_in_text] = ACTIONS(5047), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__shortcode_open_escaped] = ACTIONS(5047), - [sym__shortcode_open] = ACTIONS(5047), - [sym__unclosed_span] = ACTIONS(5047), - [sym__strong_emphasis_open_star] = ACTIONS(5047), - [sym__strong_emphasis_close_star] = ACTIONS(5047), - [sym__strong_emphasis_open_underscore] = ACTIONS(5047), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4651), }, [STATE(1066)] = { - [sym__backslash_escape] = ACTIONS(5051), - [sym_entity_reference] = ACTIONS(5051), - [sym_numeric_character_reference] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_BSLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [sym__newline_token] = ACTIONS(5051), - [aux_sym_insert_token1] = ACTIONS(5051), - [aux_sym_delete_token1] = ACTIONS(5051), - [aux_sym_highlight_token1] = ACTIONS(5051), - [aux_sym_edit_comment_token1] = ACTIONS(5051), - [anon_sym_CARET_LBRACK] = ACTIONS(5051), - [anon_sym_LBRACK_CARET] = ACTIONS(5051), - [sym_uri_autolink] = ACTIONS(5051), - [sym_email_autolink] = ACTIONS(5051), - [sym__whitespace_ge_2] = ACTIONS(5051), - [aux_sym__whitespace_token1] = ACTIONS(5053), - [sym__word_no_digit] = ACTIONS(5051), - [sym__digits] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5051), - [sym__code_span_start] = ACTIONS(5051), - [sym__emphasis_open_star] = ACTIONS(5051), - [sym__emphasis_open_underscore] = ACTIONS(5051), - [sym__strikeout_open] = ACTIONS(5051), - [sym__latex_span_start] = ACTIONS(5051), - [sym__single_quote_open] = ACTIONS(5051), - [sym__double_quote_open] = ACTIONS(5051), - [sym__superscript_open] = ACTIONS(5051), - [sym__subscript_open] = ACTIONS(5051), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5051), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5051), - [sym__cite_author_in_text] = ACTIONS(5051), - [sym__cite_suppress_author] = ACTIONS(5051), - [sym__shortcode_open_escaped] = ACTIONS(5051), - [sym__shortcode_open] = ACTIONS(5051), - [sym__unclosed_span] = ACTIONS(5051), - [sym__strong_emphasis_open_star] = ACTIONS(5051), - [sym__strong_emphasis_close_star] = ACTIONS(5051), - [sym__strong_emphasis_open_underscore] = ACTIONS(5051), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4655), }, [STATE(1067)] = { - [sym__backslash_escape] = ACTIONS(5055), - [sym_entity_reference] = ACTIONS(5055), - [sym_numeric_character_reference] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(5055), - [anon_sym_POUND] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_BSLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_BQUOTE] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [sym__newline_token] = ACTIONS(5055), - [aux_sym_insert_token1] = ACTIONS(5055), - [aux_sym_delete_token1] = ACTIONS(5055), - [aux_sym_highlight_token1] = ACTIONS(5055), - [aux_sym_edit_comment_token1] = ACTIONS(5055), - [anon_sym_CARET_LBRACK] = ACTIONS(5055), - [anon_sym_LBRACK_CARET] = ACTIONS(5055), - [sym_uri_autolink] = ACTIONS(5055), - [sym_email_autolink] = ACTIONS(5055), - [sym__whitespace_ge_2] = ACTIONS(5055), - [aux_sym__whitespace_token1] = ACTIONS(5057), - [sym__word_no_digit] = ACTIONS(5055), - [sym__digits] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5055), - [sym__code_span_start] = ACTIONS(5055), - [sym__emphasis_open_star] = ACTIONS(5055), - [sym__emphasis_open_underscore] = ACTIONS(5055), - [sym__strikeout_open] = ACTIONS(5055), - [sym__latex_span_start] = ACTIONS(5055), - [sym__single_quote_open] = ACTIONS(5055), - [sym__double_quote_open] = ACTIONS(5055), - [sym__superscript_open] = ACTIONS(5055), - [sym__subscript_open] = ACTIONS(5055), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5055), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5055), - [sym__cite_author_in_text] = ACTIONS(5055), - [sym__cite_suppress_author] = ACTIONS(5055), - [sym__shortcode_open_escaped] = ACTIONS(5055), - [sym__shortcode_open] = ACTIONS(5055), - [sym__unclosed_span] = ACTIONS(5055), - [sym__strong_emphasis_open_star] = ACTIONS(5055), - [sym__strong_emphasis_close_star] = ACTIONS(5055), - [sym__strong_emphasis_open_underscore] = ACTIONS(5055), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4659), }, [STATE(1068)] = { - [sym__backslash_escape] = ACTIONS(5059), - [sym_entity_reference] = ACTIONS(5059), - [sym_numeric_character_reference] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_DQUOTE] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_BSLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [sym__newline_token] = ACTIONS(5059), - [aux_sym_insert_token1] = ACTIONS(5059), - [aux_sym_delete_token1] = ACTIONS(5059), - [aux_sym_highlight_token1] = ACTIONS(5059), - [aux_sym_edit_comment_token1] = ACTIONS(5059), - [anon_sym_CARET_LBRACK] = ACTIONS(5059), - [anon_sym_LBRACK_CARET] = ACTIONS(5059), - [sym_uri_autolink] = ACTIONS(5059), - [sym_email_autolink] = ACTIONS(5059), - [sym__whitespace_ge_2] = ACTIONS(5059), - [aux_sym__whitespace_token1] = ACTIONS(5061), - [sym__word_no_digit] = ACTIONS(5059), - [sym__digits] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5059), - [sym__code_span_start] = ACTIONS(5059), - [sym__emphasis_open_star] = ACTIONS(5059), - [sym__emphasis_open_underscore] = ACTIONS(5059), - [sym__strikeout_open] = ACTIONS(5059), - [sym__latex_span_start] = ACTIONS(5059), - [sym__single_quote_open] = ACTIONS(5059), - [sym__double_quote_open] = ACTIONS(5059), - [sym__superscript_open] = ACTIONS(5059), - [sym__subscript_open] = ACTIONS(5059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5059), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5059), - [sym__cite_author_in_text] = ACTIONS(5059), - [sym__cite_suppress_author] = ACTIONS(5059), - [sym__shortcode_open_escaped] = ACTIONS(5059), - [sym__shortcode_open] = ACTIONS(5059), - [sym__unclosed_span] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5059), - [sym__strong_emphasis_close_star] = ACTIONS(5059), - [sym__strong_emphasis_open_underscore] = ACTIONS(5059), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4663), }, [STATE(1069)] = { - [sym__backslash_escape] = ACTIONS(5063), - [sym_entity_reference] = ACTIONS(5063), - [sym_numeric_character_reference] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_BSLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_BQUOTE] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [sym__newline_token] = ACTIONS(5063), - [aux_sym_insert_token1] = ACTIONS(5063), - [aux_sym_delete_token1] = ACTIONS(5063), - [aux_sym_highlight_token1] = ACTIONS(5063), - [aux_sym_edit_comment_token1] = ACTIONS(5063), - [anon_sym_CARET_LBRACK] = ACTIONS(5063), - [anon_sym_LBRACK_CARET] = ACTIONS(5063), - [sym_uri_autolink] = ACTIONS(5063), - [sym_email_autolink] = ACTIONS(5063), - [sym__whitespace_ge_2] = ACTIONS(5063), - [aux_sym__whitespace_token1] = ACTIONS(5065), - [sym__word_no_digit] = ACTIONS(5063), - [sym__digits] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5063), - [sym__code_span_start] = ACTIONS(5063), - [sym__emphasis_open_star] = ACTIONS(5063), - [sym__emphasis_open_underscore] = ACTIONS(5063), - [sym__strikeout_open] = ACTIONS(5063), - [sym__latex_span_start] = ACTIONS(5063), - [sym__single_quote_open] = ACTIONS(5063), - [sym__double_quote_open] = ACTIONS(5063), - [sym__superscript_open] = ACTIONS(5063), - [sym__subscript_open] = ACTIONS(5063), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5063), - [sym__cite_author_in_text] = ACTIONS(5063), - [sym__cite_suppress_author] = ACTIONS(5063), - [sym__shortcode_open_escaped] = ACTIONS(5063), - [sym__shortcode_open] = ACTIONS(5063), - [sym__unclosed_span] = ACTIONS(5063), - [sym__strong_emphasis_open_star] = ACTIONS(5063), - [sym__strong_emphasis_close_star] = ACTIONS(5063), - [sym__strong_emphasis_open_underscore] = ACTIONS(5063), + [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__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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4667), }, [STATE(1070)] = { - [sym__backslash_escape] = ACTIONS(5067), - [sym_entity_reference] = ACTIONS(5067), - [sym_numeric_character_reference] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DQUOTE] = ACTIONS(5067), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_COLON] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [sym__newline_token] = ACTIONS(5067), - [aux_sym_insert_token1] = ACTIONS(5067), - [aux_sym_delete_token1] = ACTIONS(5067), - [aux_sym_highlight_token1] = ACTIONS(5067), - [aux_sym_edit_comment_token1] = ACTIONS(5067), - [anon_sym_CARET_LBRACK] = ACTIONS(5067), - [anon_sym_LBRACK_CARET] = ACTIONS(5067), - [sym_uri_autolink] = ACTIONS(5067), - [sym_email_autolink] = ACTIONS(5067), - [sym__whitespace_ge_2] = ACTIONS(5067), - [aux_sym__whitespace_token1] = ACTIONS(5069), - [sym__word_no_digit] = ACTIONS(5067), - [sym__digits] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5067), - [sym__code_span_start] = ACTIONS(5067), - [sym__emphasis_open_star] = ACTIONS(5067), - [sym__emphasis_open_underscore] = ACTIONS(5067), - [sym__strikeout_open] = ACTIONS(5067), - [sym__latex_span_start] = ACTIONS(5067), - [sym__single_quote_open] = ACTIONS(5067), - [sym__double_quote_open] = ACTIONS(5067), - [sym__superscript_open] = ACTIONS(5067), - [sym__subscript_open] = ACTIONS(5067), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5067), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5067), - [sym__cite_author_in_text] = ACTIONS(5067), - [sym__cite_suppress_author] = ACTIONS(5067), - [sym__shortcode_open_escaped] = ACTIONS(5067), - [sym__shortcode_open] = ACTIONS(5067), - [sym__unclosed_span] = ACTIONS(5067), - [sym__strong_emphasis_open_star] = ACTIONS(5067), - [sym__strong_emphasis_close_star] = ACTIONS(5067), - [sym__strong_emphasis_open_underscore] = ACTIONS(5067), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4671), }, [STATE(1071)] = { - [sym__backslash_escape] = ACTIONS(5071), - [sym_entity_reference] = ACTIONS(5071), - [sym_numeric_character_reference] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_POUND] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [sym__newline_token] = ACTIONS(5071), - [aux_sym_insert_token1] = ACTIONS(5071), - [aux_sym_delete_token1] = ACTIONS(5071), - [aux_sym_highlight_token1] = ACTIONS(5071), - [aux_sym_edit_comment_token1] = ACTIONS(5071), - [anon_sym_CARET_LBRACK] = ACTIONS(5071), - [anon_sym_LBRACK_CARET] = ACTIONS(5071), - [sym_uri_autolink] = ACTIONS(5071), - [sym_email_autolink] = ACTIONS(5071), - [sym__whitespace_ge_2] = ACTIONS(5071), - [aux_sym__whitespace_token1] = ACTIONS(5073), - [sym__word_no_digit] = ACTIONS(5071), - [sym__digits] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5071), - [sym__code_span_start] = ACTIONS(5071), - [sym__emphasis_open_star] = ACTIONS(5071), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym__strikeout_open] = ACTIONS(5071), - [sym__latex_span_start] = ACTIONS(5071), - [sym__single_quote_open] = ACTIONS(5071), - [sym__double_quote_open] = ACTIONS(5071), - [sym__superscript_open] = ACTIONS(5071), - [sym__subscript_open] = ACTIONS(5071), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5071), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5071), - [sym__cite_author_in_text] = ACTIONS(5071), - [sym__cite_suppress_author] = ACTIONS(5071), - [sym__shortcode_open_escaped] = ACTIONS(5071), - [sym__shortcode_open] = ACTIONS(5071), - [sym__unclosed_span] = ACTIONS(5071), - [sym__strong_emphasis_open_star] = ACTIONS(5071), - [sym__strong_emphasis_close_star] = ACTIONS(5071), - [sym__strong_emphasis_open_underscore] = ACTIONS(5071), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4675), }, [STATE(1072)] = { - [sym__backslash_escape] = ACTIONS(5075), - [sym_entity_reference] = ACTIONS(5075), - [sym_numeric_character_reference] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_QMARK] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_BSLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [sym__newline_token] = ACTIONS(5075), - [aux_sym_insert_token1] = ACTIONS(5075), - [aux_sym_delete_token1] = ACTIONS(5075), - [aux_sym_highlight_token1] = ACTIONS(5075), - [aux_sym_edit_comment_token1] = ACTIONS(5075), - [anon_sym_CARET_LBRACK] = ACTIONS(5075), - [anon_sym_LBRACK_CARET] = ACTIONS(5075), - [sym_uri_autolink] = ACTIONS(5075), - [sym_email_autolink] = ACTIONS(5075), - [sym__whitespace_ge_2] = ACTIONS(5075), - [aux_sym__whitespace_token1] = ACTIONS(5077), - [sym__word_no_digit] = ACTIONS(5075), - [sym__digits] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5075), - [sym__code_span_start] = ACTIONS(5075), - [sym__emphasis_open_star] = ACTIONS(5075), - [sym__emphasis_open_underscore] = ACTIONS(5075), - [sym__strikeout_open] = ACTIONS(5075), - [sym__latex_span_start] = ACTIONS(5075), - [sym__single_quote_open] = ACTIONS(5075), - [sym__double_quote_open] = ACTIONS(5075), - [sym__superscript_open] = ACTIONS(5075), - [sym__subscript_open] = ACTIONS(5075), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5075), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5075), - [sym__cite_author_in_text] = ACTIONS(5075), - [sym__cite_suppress_author] = ACTIONS(5075), - [sym__shortcode_open_escaped] = ACTIONS(5075), - [sym__shortcode_open] = ACTIONS(5075), - [sym__unclosed_span] = ACTIONS(5075), - [sym__strong_emphasis_open_star] = ACTIONS(5075), - [sym__strong_emphasis_close_star] = ACTIONS(5075), - [sym__strong_emphasis_open_underscore] = ACTIONS(5075), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4679), }, [STATE(1073)] = { - [sym__backslash_escape] = ACTIONS(5079), - [sym_entity_reference] = ACTIONS(5079), - [sym_numeric_character_reference] = ACTIONS(5079), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_DQUOTE] = ACTIONS(5079), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_QMARK] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BSLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5079), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [sym__newline_token] = ACTIONS(5079), - [aux_sym_insert_token1] = ACTIONS(5079), - [aux_sym_delete_token1] = ACTIONS(5079), - [aux_sym_highlight_token1] = ACTIONS(5079), - [aux_sym_edit_comment_token1] = ACTIONS(5079), - [anon_sym_CARET_LBRACK] = ACTIONS(5079), - [anon_sym_LBRACK_CARET] = ACTIONS(5079), - [sym_uri_autolink] = ACTIONS(5079), - [sym_email_autolink] = ACTIONS(5079), - [sym__whitespace_ge_2] = ACTIONS(5079), - [aux_sym__whitespace_token1] = ACTIONS(5081), - [sym__word_no_digit] = ACTIONS(5079), - [sym__digits] = ACTIONS(5079), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5079), - [sym__code_span_start] = ACTIONS(5079), - [sym__emphasis_open_star] = ACTIONS(5079), - [sym__emphasis_open_underscore] = ACTIONS(5079), - [sym__strikeout_open] = ACTIONS(5079), - [sym__latex_span_start] = ACTIONS(5079), - [sym__single_quote_open] = ACTIONS(5079), - [sym__double_quote_open] = ACTIONS(5079), - [sym__superscript_open] = ACTIONS(5079), - [sym__subscript_open] = ACTIONS(5079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5079), - [sym__cite_author_in_text] = ACTIONS(5079), - [sym__cite_suppress_author] = ACTIONS(5079), - [sym__shortcode_open_escaped] = ACTIONS(5079), - [sym__shortcode_open] = ACTIONS(5079), - [sym__unclosed_span] = ACTIONS(5079), - [sym__strong_emphasis_open_star] = ACTIONS(5079), - [sym__strong_emphasis_close_star] = ACTIONS(5079), - [sym__strong_emphasis_open_underscore] = ACTIONS(5079), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4683), }, [STATE(1074)] = { - [sym__backslash_escape] = ACTIONS(5083), - [sym_entity_reference] = ACTIONS(5083), - [sym_numeric_character_reference] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOT] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_QMARK] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_BSLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym_BQUOTE] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [sym__newline_token] = ACTIONS(5083), - [aux_sym_insert_token1] = ACTIONS(5083), - [aux_sym_delete_token1] = ACTIONS(5083), - [aux_sym_highlight_token1] = ACTIONS(5083), - [aux_sym_edit_comment_token1] = ACTIONS(5083), - [anon_sym_CARET_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_CARET] = ACTIONS(5083), - [sym_uri_autolink] = ACTIONS(5083), - [sym_email_autolink] = ACTIONS(5083), - [sym__whitespace_ge_2] = ACTIONS(5083), - [aux_sym__whitespace_token1] = ACTIONS(5085), - [sym__word_no_digit] = ACTIONS(5083), - [sym__digits] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5083), - [sym__code_span_start] = ACTIONS(5083), - [sym__emphasis_open_star] = ACTIONS(5083), - [sym__emphasis_open_underscore] = ACTIONS(5083), - [sym__strikeout_open] = ACTIONS(5083), - [sym__latex_span_start] = ACTIONS(5083), - [sym__single_quote_open] = ACTIONS(5083), - [sym__double_quote_open] = ACTIONS(5083), - [sym__superscript_open] = ACTIONS(5083), - [sym__subscript_open] = ACTIONS(5083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5083), - [sym__cite_author_in_text] = ACTIONS(5083), - [sym__cite_suppress_author] = ACTIONS(5083), - [sym__shortcode_open_escaped] = ACTIONS(5083), - [sym__shortcode_open] = ACTIONS(5083), - [sym__unclosed_span] = ACTIONS(5083), - [sym__strong_emphasis_open_star] = ACTIONS(5083), - [sym__strong_emphasis_close_star] = ACTIONS(5083), - [sym__strong_emphasis_open_underscore] = ACTIONS(5083), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4687), }, [STATE(1075)] = { - [sym__backslash_escape] = ACTIONS(5087), - [sym_entity_reference] = ACTIONS(5087), - [sym_numeric_character_reference] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_DQUOTE] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_AMP] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_QMARK] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym_BQUOTE] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_PIPE] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [sym__newline_token] = ACTIONS(5087), - [aux_sym_insert_token1] = ACTIONS(5087), - [aux_sym_delete_token1] = ACTIONS(5087), - [aux_sym_highlight_token1] = ACTIONS(5087), - [aux_sym_edit_comment_token1] = ACTIONS(5087), - [anon_sym_CARET_LBRACK] = ACTIONS(5087), - [anon_sym_LBRACK_CARET] = ACTIONS(5087), - [sym_uri_autolink] = ACTIONS(5087), - [sym_email_autolink] = ACTIONS(5087), - [sym__whitespace_ge_2] = ACTIONS(5087), - [aux_sym__whitespace_token1] = ACTIONS(5089), - [sym__word_no_digit] = ACTIONS(5087), - [sym__digits] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5087), - [sym__code_span_start] = ACTIONS(5087), - [sym__emphasis_open_star] = ACTIONS(5087), - [sym__emphasis_open_underscore] = ACTIONS(5087), - [sym__strikeout_open] = ACTIONS(5087), - [sym__latex_span_start] = ACTIONS(5087), - [sym__single_quote_open] = ACTIONS(5087), - [sym__double_quote_open] = ACTIONS(5087), - [sym__superscript_open] = ACTIONS(5087), - [sym__subscript_open] = ACTIONS(5087), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5087), - [sym__cite_author_in_text] = ACTIONS(5087), - [sym__cite_suppress_author] = ACTIONS(5087), - [sym__shortcode_open_escaped] = ACTIONS(5087), - [sym__shortcode_open] = ACTIONS(5087), - [sym__unclosed_span] = ACTIONS(5087), - [sym__strong_emphasis_open_star] = ACTIONS(5087), - [sym__strong_emphasis_close_star] = ACTIONS(5087), - [sym__strong_emphasis_open_underscore] = ACTIONS(5087), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4691), }, [STATE(1076)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_close_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4695), }, [STATE(1077)] = { - [ts_builtin_sym_end] = ACTIONS(5159), - [sym__backslash_escape] = ACTIONS(5159), - [sym_entity_reference] = ACTIONS(5159), - [sym_numeric_character_reference] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_DQUOTE] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_QMARK] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym__newline_token] = ACTIONS(5159), - [aux_sym_insert_token1] = ACTIONS(5159), - [aux_sym_delete_token1] = ACTIONS(5159), - [aux_sym_highlight_token1] = ACTIONS(5159), - [aux_sym_edit_comment_token1] = ACTIONS(5159), - [anon_sym_CARET_LBRACK] = ACTIONS(5159), - [anon_sym_LBRACK_CARET] = ACTIONS(5159), - [sym_uri_autolink] = ACTIONS(5159), - [sym_email_autolink] = ACTIONS(5159), - [sym__whitespace_ge_2] = ACTIONS(5159), - [aux_sym__whitespace_token1] = ACTIONS(5161), - [sym__word_no_digit] = ACTIONS(5159), - [sym__digits] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5159), - [sym__code_span_start] = ACTIONS(5159), - [sym__emphasis_open_star] = ACTIONS(5159), - [sym__emphasis_open_underscore] = ACTIONS(5159), - [sym__strikeout_open] = ACTIONS(5159), - [sym__latex_span_start] = ACTIONS(5159), - [sym__single_quote_open] = ACTIONS(5159), - [sym__double_quote_open] = ACTIONS(5159), - [sym__superscript_open] = ACTIONS(5159), - [sym__subscript_open] = ACTIONS(5159), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5159), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5159), - [sym__cite_author_in_text] = ACTIONS(5159), - [sym__cite_suppress_author] = ACTIONS(5159), - [sym__shortcode_open_escaped] = ACTIONS(5159), - [sym__shortcode_open] = ACTIONS(5159), - [sym__unclosed_span] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5159), - [sym__strong_emphasis_open_underscore] = ACTIONS(5159), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4699), }, [STATE(1078)] = { - [sym__backslash_escape] = ACTIONS(5091), - [sym_entity_reference] = ACTIONS(5091), - [sym_numeric_character_reference] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(5091), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_BSLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym_BQUOTE] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [sym__newline_token] = ACTIONS(5091), - [aux_sym_insert_token1] = ACTIONS(5091), - [aux_sym_delete_token1] = ACTIONS(5091), - [aux_sym_highlight_token1] = ACTIONS(5091), - [aux_sym_edit_comment_token1] = ACTIONS(5091), - [anon_sym_CARET_LBRACK] = ACTIONS(5091), - [anon_sym_LBRACK_CARET] = ACTIONS(5091), - [sym_uri_autolink] = ACTIONS(5091), - [sym_email_autolink] = ACTIONS(5091), - [sym__whitespace_ge_2] = ACTIONS(5091), - [aux_sym__whitespace_token1] = ACTIONS(5093), - [sym__word_no_digit] = ACTIONS(5091), - [sym__digits] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), - [sym__code_span_start] = ACTIONS(5091), - [sym__emphasis_open_star] = ACTIONS(5091), - [sym__emphasis_open_underscore] = ACTIONS(5091), - [sym__strikeout_open] = ACTIONS(5091), - [sym__latex_span_start] = ACTIONS(5091), - [sym__single_quote_open] = ACTIONS(5091), - [sym__double_quote_open] = ACTIONS(5091), - [sym__superscript_open] = ACTIONS(5091), - [sym__subscript_open] = ACTIONS(5091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5091), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5091), - [sym__cite_author_in_text] = ACTIONS(5091), - [sym__cite_suppress_author] = ACTIONS(5091), - [sym__shortcode_open_escaped] = ACTIONS(5091), - [sym__shortcode_open] = ACTIONS(5091), - [sym__unclosed_span] = ACTIONS(5091), - [sym__strong_emphasis_open_star] = ACTIONS(5091), - [sym__strong_emphasis_close_star] = ACTIONS(5091), - [sym__strong_emphasis_open_underscore] = ACTIONS(5091), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4703), }, [STATE(1079)] = { - [sym__backslash_escape] = ACTIONS(5095), - [sym_entity_reference] = ACTIONS(5095), - [sym_numeric_character_reference] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_BSLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym_BQUOTE] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [sym__newline_token] = ACTIONS(5095), - [aux_sym_insert_token1] = ACTIONS(5095), - [aux_sym_delete_token1] = ACTIONS(5095), - [aux_sym_highlight_token1] = ACTIONS(5095), - [aux_sym_edit_comment_token1] = ACTIONS(5095), - [anon_sym_CARET_LBRACK] = ACTIONS(5095), - [anon_sym_LBRACK_CARET] = ACTIONS(5095), - [sym_uri_autolink] = ACTIONS(5095), - [sym_email_autolink] = ACTIONS(5095), - [sym__whitespace_ge_2] = ACTIONS(5095), - [aux_sym__whitespace_token1] = ACTIONS(5097), - [sym__word_no_digit] = ACTIONS(5095), - [sym__digits] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5095), - [sym__code_span_start] = ACTIONS(5095), - [sym__emphasis_open_star] = ACTIONS(5095), - [sym__emphasis_open_underscore] = ACTIONS(5095), - [sym__strikeout_open] = ACTIONS(5095), - [sym__latex_span_start] = ACTIONS(5095), - [sym__single_quote_open] = ACTIONS(5095), - [sym__double_quote_open] = ACTIONS(5095), - [sym__superscript_open] = ACTIONS(5095), - [sym__subscript_open] = ACTIONS(5095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5095), - [sym__cite_author_in_text] = ACTIONS(5095), - [sym__cite_suppress_author] = ACTIONS(5095), - [sym__shortcode_open_escaped] = ACTIONS(5095), - [sym__shortcode_open] = ACTIONS(5095), - [sym__unclosed_span] = ACTIONS(5095), - [sym__strong_emphasis_open_star] = ACTIONS(5095), - [sym__strong_emphasis_close_star] = ACTIONS(5095), - [sym__strong_emphasis_open_underscore] = ACTIONS(5095), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4707), }, [STATE(1080)] = { - [sym__backslash_escape] = ACTIONS(5099), - [sym_entity_reference] = ACTIONS(5099), - [sym_numeric_character_reference] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [sym__newline_token] = ACTIONS(5099), - [aux_sym_insert_token1] = ACTIONS(5099), - [aux_sym_delete_token1] = ACTIONS(5099), - [aux_sym_highlight_token1] = ACTIONS(5099), - [aux_sym_edit_comment_token1] = ACTIONS(5099), - [anon_sym_CARET_LBRACK] = ACTIONS(5099), - [anon_sym_LBRACK_CARET] = ACTIONS(5099), - [sym_uri_autolink] = ACTIONS(5099), - [sym_email_autolink] = ACTIONS(5099), - [sym__whitespace_ge_2] = ACTIONS(5099), - [aux_sym__whitespace_token1] = ACTIONS(5101), - [sym__word_no_digit] = ACTIONS(5099), - [sym__digits] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5099), - [sym__code_span_start] = ACTIONS(5099), - [sym__emphasis_open_star] = ACTIONS(5099), - [sym__emphasis_open_underscore] = ACTIONS(5099), - [sym__strikeout_open] = ACTIONS(5099), - [sym__latex_span_start] = ACTIONS(5099), - [sym__single_quote_open] = ACTIONS(5099), - [sym__double_quote_open] = ACTIONS(5099), - [sym__superscript_open] = ACTIONS(5099), - [sym__subscript_open] = ACTIONS(5099), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5099), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5099), - [sym__cite_author_in_text] = ACTIONS(5099), - [sym__cite_suppress_author] = ACTIONS(5099), - [sym__shortcode_open_escaped] = ACTIONS(5099), - [sym__shortcode_open] = ACTIONS(5099), - [sym__unclosed_span] = ACTIONS(5099), - [sym__strong_emphasis_open_star] = ACTIONS(5099), - [sym__strong_emphasis_close_star] = ACTIONS(5099), - [sym__strong_emphasis_open_underscore] = ACTIONS(5099), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), + [sym__strong_emphasis_close_underscore] = ACTIONS(4367), }, [STATE(1081)] = { - [sym__backslash_escape] = ACTIONS(5103), - [sym_entity_reference] = ACTIONS(5103), - [sym_numeric_character_reference] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(5103), - [anon_sym_POUND] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_BSLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [sym__newline_token] = ACTIONS(5103), - [aux_sym_insert_token1] = ACTIONS(5103), - [aux_sym_delete_token1] = ACTIONS(5103), - [aux_sym_highlight_token1] = ACTIONS(5103), - [aux_sym_edit_comment_token1] = ACTIONS(5103), - [anon_sym_CARET_LBRACK] = ACTIONS(5103), - [anon_sym_LBRACK_CARET] = ACTIONS(5103), - [sym_uri_autolink] = ACTIONS(5103), - [sym_email_autolink] = ACTIONS(5103), - [sym__whitespace_ge_2] = ACTIONS(5103), - [aux_sym__whitespace_token1] = ACTIONS(5105), - [sym__word_no_digit] = ACTIONS(5103), - [sym__digits] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5103), - [sym__code_span_start] = ACTIONS(5103), - [sym__emphasis_open_star] = ACTIONS(5103), - [sym__emphasis_open_underscore] = ACTIONS(5103), - [sym__strikeout_open] = ACTIONS(5103), - [sym__latex_span_start] = ACTIONS(5103), - [sym__single_quote_open] = ACTIONS(5103), - [sym__double_quote_open] = ACTIONS(5103), - [sym__superscript_open] = ACTIONS(5103), - [sym__subscript_open] = ACTIONS(5103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5103), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5103), - [sym__cite_author_in_text] = ACTIONS(5103), - [sym__cite_suppress_author] = ACTIONS(5103), - [sym__shortcode_open_escaped] = ACTIONS(5103), - [sym__shortcode_open] = ACTIONS(5103), - [sym__unclosed_span] = ACTIONS(5103), - [sym__strong_emphasis_open_star] = ACTIONS(5103), - [sym__strong_emphasis_close_star] = ACTIONS(5103), - [sym__strong_emphasis_open_underscore] = ACTIONS(5103), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4711), }, [STATE(1082)] = { - [sym__backslash_escape] = ACTIONS(5107), - [sym_entity_reference] = ACTIONS(5107), - [sym_numeric_character_reference] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_COLON] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_BSLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_BQUOTE] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_PIPE] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [sym__newline_token] = ACTIONS(5107), - [aux_sym_insert_token1] = ACTIONS(5107), - [aux_sym_delete_token1] = ACTIONS(5107), - [aux_sym_highlight_token1] = ACTIONS(5107), - [aux_sym_edit_comment_token1] = ACTIONS(5107), - [anon_sym_CARET_LBRACK] = ACTIONS(5107), - [anon_sym_LBRACK_CARET] = ACTIONS(5107), - [sym_uri_autolink] = ACTIONS(5107), - [sym_email_autolink] = ACTIONS(5107), - [sym__whitespace_ge_2] = ACTIONS(5107), - [aux_sym__whitespace_token1] = ACTIONS(5109), - [sym__word_no_digit] = ACTIONS(5107), - [sym__digits] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5107), - [sym__code_span_start] = ACTIONS(5107), - [sym__emphasis_open_star] = ACTIONS(5107), - [sym__emphasis_open_underscore] = ACTIONS(5107), - [sym__strikeout_open] = ACTIONS(5107), - [sym__latex_span_start] = ACTIONS(5107), - [sym__single_quote_open] = ACTIONS(5107), - [sym__double_quote_open] = ACTIONS(5107), - [sym__superscript_open] = ACTIONS(5107), - [sym__subscript_open] = ACTIONS(5107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5107), - [sym__cite_author_in_text] = ACTIONS(5107), - [sym__cite_suppress_author] = ACTIONS(5107), - [sym__shortcode_open_escaped] = ACTIONS(5107), - [sym__shortcode_open] = ACTIONS(5107), - [sym__unclosed_span] = ACTIONS(5107), - [sym__strong_emphasis_open_star] = ACTIONS(5107), - [sym__strong_emphasis_close_star] = ACTIONS(5107), - [sym__strong_emphasis_open_underscore] = ACTIONS(5107), + [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(1083)] = { - [sym__backslash_escape] = ACTIONS(5111), - [sym_entity_reference] = ACTIONS(5111), - [sym_numeric_character_reference] = ACTIONS(5111), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym_BQUOTE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [sym__newline_token] = ACTIONS(5111), - [aux_sym_insert_token1] = ACTIONS(5111), - [aux_sym_delete_token1] = ACTIONS(5111), - [aux_sym_highlight_token1] = ACTIONS(5111), - [aux_sym_edit_comment_token1] = ACTIONS(5111), - [anon_sym_CARET_LBRACK] = ACTIONS(5111), - [anon_sym_LBRACK_CARET] = ACTIONS(5111), - [sym_uri_autolink] = ACTIONS(5111), - [sym_email_autolink] = ACTIONS(5111), - [sym__whitespace_ge_2] = ACTIONS(5111), - [aux_sym__whitespace_token1] = ACTIONS(5113), - [sym__word_no_digit] = ACTIONS(5111), - [sym__digits] = ACTIONS(5111), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [sym__code_span_start] = ACTIONS(5111), - [sym__emphasis_open_star] = ACTIONS(5111), - [sym__emphasis_open_underscore] = ACTIONS(5111), - [sym__strikeout_open] = ACTIONS(5111), - [sym__latex_span_start] = ACTIONS(5111), - [sym__single_quote_open] = ACTIONS(5111), - [sym__double_quote_open] = ACTIONS(5111), - [sym__superscript_open] = ACTIONS(5111), - [sym__subscript_open] = ACTIONS(5111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5111), - [sym__cite_author_in_text] = ACTIONS(5111), - [sym__cite_suppress_author] = ACTIONS(5111), - [sym__shortcode_open_escaped] = ACTIONS(5111), - [sym__shortcode_open] = ACTIONS(5111), - [sym__unclosed_span] = ACTIONS(5111), - [sym__strong_emphasis_open_star] = ACTIONS(5111), - [sym__strong_emphasis_close_star] = ACTIONS(5111), - [sym__strong_emphasis_open_underscore] = ACTIONS(5111), + [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(1084)] = { - [sym__backslash_escape] = ACTIONS(5115), - [sym_entity_reference] = ACTIONS(5115), - [sym_numeric_character_reference] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(5115), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_QMARK] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym_BQUOTE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [sym__newline_token] = ACTIONS(5115), - [aux_sym_insert_token1] = ACTIONS(5115), - [aux_sym_delete_token1] = ACTIONS(5115), - [aux_sym_highlight_token1] = ACTIONS(5115), - [aux_sym_edit_comment_token1] = ACTIONS(5115), - [anon_sym_CARET_LBRACK] = ACTIONS(5115), - [anon_sym_LBRACK_CARET] = ACTIONS(5115), - [sym_uri_autolink] = ACTIONS(5115), - [sym_email_autolink] = ACTIONS(5115), - [sym__whitespace_ge_2] = ACTIONS(5115), - [aux_sym__whitespace_token1] = ACTIONS(5117), - [sym__word_no_digit] = ACTIONS(5115), - [sym__digits] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5115), - [sym__code_span_start] = ACTIONS(5115), - [sym__emphasis_open_star] = ACTIONS(5115), - [sym__emphasis_open_underscore] = ACTIONS(5115), - [sym__strikeout_open] = ACTIONS(5115), - [sym__latex_span_start] = ACTIONS(5115), - [sym__single_quote_open] = ACTIONS(5115), - [sym__double_quote_open] = ACTIONS(5115), - [sym__superscript_open] = ACTIONS(5115), - [sym__subscript_open] = ACTIONS(5115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5115), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5115), - [sym__cite_author_in_text] = ACTIONS(5115), - [sym__cite_suppress_author] = ACTIONS(5115), - [sym__shortcode_open_escaped] = ACTIONS(5115), - [sym__shortcode_open] = ACTIONS(5115), - [sym__unclosed_span] = ACTIONS(5115), - [sym__strong_emphasis_open_star] = ACTIONS(5115), - [sym__strong_emphasis_close_star] = ACTIONS(5115), - [sym__strong_emphasis_open_underscore] = ACTIONS(5115), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4715), }, [STATE(1085)] = { - [sym__backslash_escape] = ACTIONS(5119), - [sym_entity_reference] = ACTIONS(5119), - [sym_numeric_character_reference] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_AMP] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [sym__newline_token] = ACTIONS(5119), - [aux_sym_insert_token1] = ACTIONS(5119), - [aux_sym_delete_token1] = ACTIONS(5119), - [aux_sym_highlight_token1] = ACTIONS(5119), - [aux_sym_edit_comment_token1] = ACTIONS(5119), - [anon_sym_CARET_LBRACK] = ACTIONS(5119), - [anon_sym_LBRACK_CARET] = ACTIONS(5119), - [sym_uri_autolink] = ACTIONS(5119), - [sym_email_autolink] = ACTIONS(5119), - [sym__whitespace_ge_2] = ACTIONS(5119), - [aux_sym__whitespace_token1] = ACTIONS(5121), - [sym__word_no_digit] = ACTIONS(5119), - [sym__digits] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5119), - [sym__code_span_start] = ACTIONS(5119), - [sym__emphasis_open_star] = ACTIONS(5119), - [sym__emphasis_open_underscore] = ACTIONS(5119), - [sym__strikeout_open] = ACTIONS(5119), - [sym__latex_span_start] = ACTIONS(5119), - [sym__single_quote_open] = ACTIONS(5119), - [sym__double_quote_open] = ACTIONS(5119), - [sym__superscript_open] = ACTIONS(5119), - [sym__subscript_open] = ACTIONS(5119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5119), - [sym__cite_author_in_text] = ACTIONS(5119), - [sym__cite_suppress_author] = ACTIONS(5119), - [sym__shortcode_open_escaped] = ACTIONS(5119), - [sym__shortcode_open] = ACTIONS(5119), - [sym__unclosed_span] = ACTIONS(5119), - [sym__strong_emphasis_open_star] = ACTIONS(5119), - [sym__strong_emphasis_close_star] = ACTIONS(5119), - [sym__strong_emphasis_open_underscore] = ACTIONS(5119), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4719), }, [STATE(1086)] = { - [sym__backslash_escape] = ACTIONS(5123), - [sym_entity_reference] = ACTIONS(5123), - [sym_numeric_character_reference] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_DQUOTE] = ACTIONS(5123), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym_BQUOTE] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [sym__newline_token] = ACTIONS(5123), - [aux_sym_insert_token1] = ACTIONS(5123), - [aux_sym_delete_token1] = ACTIONS(5123), - [aux_sym_highlight_token1] = ACTIONS(5123), - [aux_sym_edit_comment_token1] = ACTIONS(5123), - [anon_sym_CARET_LBRACK] = ACTIONS(5123), - [anon_sym_LBRACK_CARET] = ACTIONS(5123), - [sym_uri_autolink] = ACTIONS(5123), - [sym_email_autolink] = ACTIONS(5123), - [sym__whitespace_ge_2] = ACTIONS(5123), - [aux_sym__whitespace_token1] = ACTIONS(5125), - [sym__word_no_digit] = ACTIONS(5123), - [sym__digits] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), - [sym__code_span_start] = ACTIONS(5123), - [sym__emphasis_open_star] = ACTIONS(5123), - [sym__emphasis_open_underscore] = ACTIONS(5123), - [sym__strikeout_open] = ACTIONS(5123), - [sym__latex_span_start] = ACTIONS(5123), - [sym__single_quote_open] = ACTIONS(5123), - [sym__double_quote_open] = ACTIONS(5123), - [sym__superscript_open] = ACTIONS(5123), - [sym__subscript_open] = ACTIONS(5123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5123), - [sym__cite_author_in_text] = ACTIONS(5123), - [sym__cite_suppress_author] = ACTIONS(5123), - [sym__shortcode_open_escaped] = ACTIONS(5123), - [sym__shortcode_open] = ACTIONS(5123), - [sym__unclosed_span] = ACTIONS(5123), - [sym__strong_emphasis_open_star] = ACTIONS(5123), - [sym__strong_emphasis_close_star] = ACTIONS(5123), - [sym__strong_emphasis_open_underscore] = ACTIONS(5123), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4723), }, [STATE(1087)] = { - [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_STAR] = 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_close_star] = ACTIONS(4631), - [sym__strong_emphasis_open_underscore] = ACTIONS(4631), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4727), }, [STATE(1088)] = { - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_close_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4731), }, [STATE(1089)] = { - [sym__backslash_escape] = ACTIONS(5127), - [sym_entity_reference] = ACTIONS(5127), - [sym_numeric_character_reference] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_DQUOTE] = ACTIONS(5127), - [anon_sym_POUND] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_PERCENT] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_QMARK] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym_BQUOTE] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym__newline_token] = ACTIONS(5127), - [aux_sym_insert_token1] = ACTIONS(5127), - [aux_sym_delete_token1] = ACTIONS(5127), - [aux_sym_highlight_token1] = ACTIONS(5127), - [aux_sym_edit_comment_token1] = ACTIONS(5127), - [anon_sym_CARET_LBRACK] = ACTIONS(5127), - [anon_sym_LBRACK_CARET] = ACTIONS(5127), - [sym_uri_autolink] = ACTIONS(5127), - [sym_email_autolink] = ACTIONS(5127), - [sym__whitespace_ge_2] = ACTIONS(5127), - [aux_sym__whitespace_token1] = ACTIONS(5129), - [sym__word_no_digit] = ACTIONS(5127), - [sym__digits] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5127), - [sym__code_span_start] = ACTIONS(5127), - [sym__emphasis_open_star] = ACTIONS(5127), - [sym__emphasis_open_underscore] = ACTIONS(5127), - [sym__strikeout_open] = ACTIONS(5127), - [sym__latex_span_start] = ACTIONS(5127), - [sym__single_quote_open] = ACTIONS(5127), - [sym__double_quote_open] = ACTIONS(5127), - [sym__superscript_open] = ACTIONS(5127), - [sym__subscript_open] = ACTIONS(5127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5127), - [sym__cite_author_in_text] = ACTIONS(5127), - [sym__cite_suppress_author] = ACTIONS(5127), - [sym__shortcode_open_escaped] = ACTIONS(5127), - [sym__shortcode_open] = ACTIONS(5127), - [sym__unclosed_span] = ACTIONS(5127), - [sym__strong_emphasis_open_star] = ACTIONS(5127), - [sym__strong_emphasis_close_star] = ACTIONS(5127), - [sym__strong_emphasis_open_underscore] = ACTIONS(5127), + [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(1090)] = { - [sym__backslash_escape] = ACTIONS(5131), - [sym_entity_reference] = ACTIONS(5131), - [sym_numeric_character_reference] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(5131), - [anon_sym_POUND] = ACTIONS(5131), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(5133), - [anon_sym_SQUOTE] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_QMARK] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(5133), - [anon_sym_BQUOTE] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_PIPE] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [sym__newline_token] = ACTIONS(5131), - [aux_sym_insert_token1] = ACTIONS(5131), - [aux_sym_delete_token1] = ACTIONS(5131), - [aux_sym_highlight_token1] = ACTIONS(5131), - [aux_sym_edit_comment_token1] = ACTIONS(5131), - [anon_sym_CARET_LBRACK] = ACTIONS(5131), - [anon_sym_LBRACK_CARET] = ACTIONS(5131), - [sym_uri_autolink] = ACTIONS(5131), - [sym_email_autolink] = ACTIONS(5131), - [sym__whitespace_ge_2] = ACTIONS(5131), - [aux_sym__whitespace_token1] = ACTIONS(5133), - [sym__word_no_digit] = ACTIONS(5131), - [sym__digits] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), - [sym__code_span_start] = ACTIONS(5131), - [sym__emphasis_open_star] = ACTIONS(5131), - [sym__emphasis_open_underscore] = ACTIONS(5131), - [sym__strikeout_open] = ACTIONS(5131), - [sym__latex_span_start] = ACTIONS(5131), - [sym__single_quote_open] = ACTIONS(5131), - [sym__double_quote_open] = ACTIONS(5131), - [sym__superscript_open] = ACTIONS(5131), - [sym__subscript_open] = ACTIONS(5131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5131), - [sym__cite_author_in_text] = ACTIONS(5131), - [sym__cite_suppress_author] = ACTIONS(5131), - [sym__shortcode_open_escaped] = ACTIONS(5131), - [sym__shortcode_open] = ACTIONS(5131), - [sym__unclosed_span] = ACTIONS(5131), - [sym__strong_emphasis_open_star] = ACTIONS(5131), - [sym__strong_emphasis_close_star] = ACTIONS(5131), - [sym__strong_emphasis_open_underscore] = ACTIONS(5131), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4735), }, [STATE(1091)] = { - [sym__backslash_escape] = ACTIONS(5135), - [sym_entity_reference] = ACTIONS(5135), - [sym_numeric_character_reference] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_AMP] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_QMARK] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH] = ACTIONS(5137), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [sym__newline_token] = ACTIONS(5135), - [aux_sym_insert_token1] = ACTIONS(5135), - [aux_sym_delete_token1] = ACTIONS(5135), - [aux_sym_highlight_token1] = ACTIONS(5135), - [aux_sym_edit_comment_token1] = ACTIONS(5135), - [anon_sym_CARET_LBRACK] = ACTIONS(5135), - [anon_sym_LBRACK_CARET] = ACTIONS(5135), - [sym_uri_autolink] = ACTIONS(5135), - [sym_email_autolink] = ACTIONS(5135), - [sym__whitespace_ge_2] = ACTIONS(5135), - [aux_sym__whitespace_token1] = ACTIONS(5137), - [sym__word_no_digit] = ACTIONS(5135), - [sym__digits] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5135), - [sym__code_span_start] = ACTIONS(5135), - [sym__emphasis_open_star] = ACTIONS(5135), - [sym__emphasis_open_underscore] = ACTIONS(5135), - [sym__strikeout_open] = ACTIONS(5135), - [sym__latex_span_start] = ACTIONS(5135), - [sym__single_quote_open] = ACTIONS(5135), - [sym__double_quote_open] = ACTIONS(5135), - [sym__superscript_open] = ACTIONS(5135), - [sym__subscript_open] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5135), - [sym__cite_author_in_text] = ACTIONS(5135), - [sym__cite_suppress_author] = ACTIONS(5135), - [sym__shortcode_open_escaped] = ACTIONS(5135), - [sym__shortcode_open] = ACTIONS(5135), - [sym__unclosed_span] = ACTIONS(5135), - [sym__strong_emphasis_open_star] = ACTIONS(5135), - [sym__strong_emphasis_close_star] = ACTIONS(5135), - [sym__strong_emphasis_open_underscore] = ACTIONS(5135), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4739), }, [STATE(1092)] = { - [sym__backslash_escape] = ACTIONS(5139), - [sym_entity_reference] = ACTIONS(5139), - [sym_numeric_character_reference] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_DQUOTE] = ACTIONS(5139), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH] = ACTIONS(5141), - [anon_sym_CARET] = ACTIONS(5141), - [anon_sym_BQUOTE] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_RPAREN] = ACTIONS(5139), - [sym__newline_token] = ACTIONS(5139), - [aux_sym_insert_token1] = ACTIONS(5139), - [aux_sym_delete_token1] = ACTIONS(5139), - [aux_sym_highlight_token1] = ACTIONS(5139), - [aux_sym_edit_comment_token1] = ACTIONS(5139), - [anon_sym_CARET_LBRACK] = ACTIONS(5139), - [anon_sym_LBRACK_CARET] = ACTIONS(5139), - [sym_uri_autolink] = ACTIONS(5139), - [sym_email_autolink] = ACTIONS(5139), - [sym__whitespace_ge_2] = ACTIONS(5139), - [aux_sym__whitespace_token1] = ACTIONS(5141), - [sym__word_no_digit] = ACTIONS(5139), - [sym__digits] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5141), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5139), - [sym__code_span_start] = ACTIONS(5139), - [sym__emphasis_open_star] = ACTIONS(5139), - [sym__emphasis_open_underscore] = ACTIONS(5139), - [sym__strikeout_open] = ACTIONS(5139), - [sym__latex_span_start] = ACTIONS(5139), - [sym__single_quote_open] = ACTIONS(5139), - [sym__double_quote_open] = ACTIONS(5139), - [sym__superscript_open] = ACTIONS(5139), - [sym__subscript_open] = ACTIONS(5139), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5139), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5139), - [sym__cite_author_in_text] = ACTIONS(5139), - [sym__cite_suppress_author] = ACTIONS(5139), - [sym__shortcode_open_escaped] = ACTIONS(5139), - [sym__shortcode_open] = ACTIONS(5139), - [sym__unclosed_span] = ACTIONS(5139), - [sym__strong_emphasis_open_star] = ACTIONS(5139), - [sym__strong_emphasis_close_star] = ACTIONS(5139), - [sym__strong_emphasis_open_underscore] = ACTIONS(5139), + [sym__backslash_escape] = ACTIONS(4499), + [sym_entity_reference] = ACTIONS(4499), + [sym_numeric_character_reference] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4501), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_BSLASH] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_PIPE] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [sym__newline_token] = ACTIONS(4499), + [aux_sym_insert_token1] = ACTIONS(4499), + [aux_sym_delete_token1] = ACTIONS(4499), + [aux_sym_highlight_token1] = ACTIONS(4499), + [aux_sym_edit_comment_token1] = ACTIONS(4499), + [anon_sym_CARET_LBRACK] = ACTIONS(4499), + [anon_sym_LBRACK_CARET] = ACTIONS(4499), + [sym_uri_autolink] = ACTIONS(4499), + [sym_email_autolink] = ACTIONS(4499), + [sym__whitespace_ge_2] = ACTIONS(4499), + [aux_sym__whitespace_token1] = ACTIONS(4501), + [sym__word_no_digit] = ACTIONS(4499), + [sym__digits] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4499), + [sym__code_span_start] = ACTIONS(4499), + [sym__emphasis_open_star] = ACTIONS(4499), + [sym__emphasis_open_underscore] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4499), + [sym__latex_span_start] = ACTIONS(4499), + [sym__single_quote_open] = ACTIONS(4499), + [sym__double_quote_open] = ACTIONS(4499), + [sym__superscript_open] = ACTIONS(4499), + [sym__subscript_open] = ACTIONS(4499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4499), + [sym__cite_author_in_text] = ACTIONS(4499), + [sym__cite_suppress_author] = ACTIONS(4499), + [sym__shortcode_open_escaped] = ACTIONS(4499), + [sym__shortcode_open] = ACTIONS(4499), + [sym__unclosed_span] = ACTIONS(4499), + [sym__strong_emphasis_open_star] = ACTIONS(4499), + [sym__strong_emphasis_open_underscore] = ACTIONS(4499), + [sym__strong_emphasis_close_underscore] = ACTIONS(4499), }, [STATE(1093)] = { - [sym__backslash_escape] = ACTIONS(5143), - [sym_entity_reference] = ACTIONS(5143), - [sym_numeric_character_reference] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_DQUOTE] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_PERCENT] = ACTIONS(5143), - [anon_sym_AMP] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH] = ACTIONS(5145), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym_BQUOTE] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [sym__newline_token] = ACTIONS(5143), - [aux_sym_insert_token1] = ACTIONS(5143), - [aux_sym_delete_token1] = ACTIONS(5143), - [aux_sym_highlight_token1] = ACTIONS(5143), - [aux_sym_edit_comment_token1] = ACTIONS(5143), - [anon_sym_CARET_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_CARET] = ACTIONS(5143), - [sym_uri_autolink] = ACTIONS(5143), - [sym_email_autolink] = ACTIONS(5143), - [sym__whitespace_ge_2] = ACTIONS(5143), - [aux_sym__whitespace_token1] = ACTIONS(5145), - [sym__word_no_digit] = ACTIONS(5143), - [sym__digits] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5143), - [sym__code_span_start] = ACTIONS(5143), - [sym__emphasis_open_star] = ACTIONS(5143), - [sym__emphasis_open_underscore] = ACTIONS(5143), - [sym__strikeout_open] = ACTIONS(5143), - [sym__latex_span_start] = ACTIONS(5143), - [sym__single_quote_open] = ACTIONS(5143), - [sym__double_quote_open] = ACTIONS(5143), - [sym__superscript_open] = ACTIONS(5143), - [sym__subscript_open] = ACTIONS(5143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5143), - [sym__cite_author_in_text] = ACTIONS(5143), - [sym__cite_suppress_author] = ACTIONS(5143), - [sym__shortcode_open_escaped] = ACTIONS(5143), - [sym__shortcode_open] = ACTIONS(5143), - [sym__unclosed_span] = ACTIONS(5143), - [sym__strong_emphasis_open_star] = ACTIONS(5143), - [sym__strong_emphasis_close_star] = ACTIONS(5143), - [sym__strong_emphasis_open_underscore] = ACTIONS(5143), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), + [sym__strong_emphasis_close_underscore] = ACTIONS(4235), }, [STATE(1094)] = { - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_close_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [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(1095)] = { - [ts_builtin_sym_end] = ACTIONS(4665), - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), + [sym__strong_emphasis_close_underscore] = ACTIONS(4239), }, [STATE(1096)] = { - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_close_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [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(1097)] = { - [sym__backslash_escape] = ACTIONS(5147), - [sym_entity_reference] = ACTIONS(5147), - [sym_numeric_character_reference] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_DQUOTE] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [sym__newline_token] = ACTIONS(5147), - [aux_sym_insert_token1] = ACTIONS(5147), - [aux_sym_delete_token1] = ACTIONS(5147), - [aux_sym_highlight_token1] = ACTIONS(5147), - [aux_sym_edit_comment_token1] = ACTIONS(5147), - [anon_sym_CARET_LBRACK] = ACTIONS(5147), - [anon_sym_LBRACK_CARET] = ACTIONS(5147), - [sym_uri_autolink] = ACTIONS(5147), - [sym_email_autolink] = ACTIONS(5147), - [sym__whitespace_ge_2] = ACTIONS(5147), - [aux_sym__whitespace_token1] = ACTIONS(5149), - [sym__word_no_digit] = ACTIONS(5147), - [sym__digits] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5147), - [sym__code_span_start] = ACTIONS(5147), - [sym__emphasis_open_star] = ACTIONS(5147), - [sym__emphasis_open_underscore] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5147), - [sym__latex_span_start] = ACTIONS(5147), - [sym__single_quote_open] = ACTIONS(5147), - [sym__double_quote_open] = ACTIONS(5147), - [sym__superscript_open] = ACTIONS(5147), - [sym__subscript_open] = ACTIONS(5147), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5147), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5147), - [sym__cite_author_in_text] = ACTIONS(5147), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__shortcode_open_escaped] = ACTIONS(5147), - [sym__shortcode_open] = ACTIONS(5147), - [sym__unclosed_span] = ACTIONS(5147), - [sym__strong_emphasis_open_star] = ACTIONS(5147), - [sym__strong_emphasis_close_star] = ACTIONS(5147), - [sym__strong_emphasis_open_underscore] = ACTIONS(5147), + [sym__backslash_escape] = ACTIONS(4507), + [sym_entity_reference] = ACTIONS(4507), + [sym_numeric_character_reference] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(4507), + [anon_sym_DOLLAR] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_QMARK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_BSLASH] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [sym__newline_token] = ACTIONS(4507), + [aux_sym_insert_token1] = ACTIONS(4507), + [aux_sym_delete_token1] = ACTIONS(4507), + [aux_sym_highlight_token1] = ACTIONS(4507), + [aux_sym_edit_comment_token1] = ACTIONS(4507), + [anon_sym_CARET_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK_CARET] = ACTIONS(4507), + [sym_uri_autolink] = ACTIONS(4507), + [sym_email_autolink] = ACTIONS(4507), + [sym__whitespace_ge_2] = ACTIONS(4507), + [aux_sym__whitespace_token1] = ACTIONS(4509), + [sym__word_no_digit] = ACTIONS(4507), + [sym__digits] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4507), + [sym__code_span_start] = ACTIONS(4507), + [sym__emphasis_open_star] = ACTIONS(4507), + [sym__emphasis_open_underscore] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4507), + [sym__latex_span_start] = ACTIONS(4507), + [sym__single_quote_open] = ACTIONS(4507), + [sym__double_quote_open] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4507), + [sym__subscript_open] = ACTIONS(4507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4507), + [sym__cite_author_in_text] = ACTIONS(4507), + [sym__cite_suppress_author] = ACTIONS(4507), + [sym__shortcode_open_escaped] = ACTIONS(4507), + [sym__shortcode_open] = ACTIONS(4507), + [sym__unclosed_span] = ACTIONS(4507), + [sym__strong_emphasis_open_star] = ACTIONS(4507), + [sym__strong_emphasis_open_underscore] = ACTIONS(4507), + [sym__strong_emphasis_close_underscore] = ACTIONS(4507), }, [STATE(1098)] = { - [sym__backslash_escape] = ACTIONS(5151), - [sym_entity_reference] = ACTIONS(5151), - [sym_numeric_character_reference] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_DQUOTE] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_PERCENT] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_QMARK] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [sym__newline_token] = ACTIONS(5151), - [aux_sym_insert_token1] = ACTIONS(5151), - [aux_sym_delete_token1] = ACTIONS(5151), - [aux_sym_highlight_token1] = ACTIONS(5151), - [aux_sym_edit_comment_token1] = ACTIONS(5151), - [anon_sym_CARET_LBRACK] = ACTIONS(5151), - [anon_sym_LBRACK_CARET] = ACTIONS(5151), - [sym_uri_autolink] = ACTIONS(5151), - [sym_email_autolink] = ACTIONS(5151), - [sym__whitespace_ge_2] = ACTIONS(5151), - [aux_sym__whitespace_token1] = ACTIONS(5153), - [sym__word_no_digit] = ACTIONS(5151), - [sym__digits] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5151), - [sym__code_span_start] = ACTIONS(5151), - [sym__emphasis_open_star] = ACTIONS(5151), - [sym__emphasis_open_underscore] = ACTIONS(5151), - [sym__strikeout_open] = ACTIONS(5151), - [sym__latex_span_start] = ACTIONS(5151), - [sym__single_quote_open] = ACTIONS(5151), - [sym__double_quote_open] = ACTIONS(5151), - [sym__superscript_open] = ACTIONS(5151), - [sym__subscript_open] = ACTIONS(5151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5151), - [sym__cite_author_in_text] = ACTIONS(5151), - [sym__cite_suppress_author] = ACTIONS(5151), - [sym__shortcode_open_escaped] = ACTIONS(5151), - [sym__shortcode_open] = ACTIONS(5151), - [sym__unclosed_span] = ACTIONS(5151), - [sym__strong_emphasis_open_star] = ACTIONS(5151), - [sym__strong_emphasis_close_star] = ACTIONS(5151), - [sym__strong_emphasis_open_underscore] = ACTIONS(5151), + [sym__backslash_escape] = ACTIONS(4511), + [sym_entity_reference] = ACTIONS(4511), + [sym_numeric_character_reference] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4511), + [anon_sym_POUND] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_COMMA] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_QMARK] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_BQUOTE] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(4511), + [sym__newline_token] = ACTIONS(4511), + [aux_sym_insert_token1] = ACTIONS(4511), + [aux_sym_delete_token1] = ACTIONS(4511), + [aux_sym_highlight_token1] = ACTIONS(4511), + [aux_sym_edit_comment_token1] = ACTIONS(4511), + [anon_sym_CARET_LBRACK] = ACTIONS(4511), + [anon_sym_LBRACK_CARET] = ACTIONS(4511), + [sym_uri_autolink] = ACTIONS(4511), + [sym_email_autolink] = ACTIONS(4511), + [sym__whitespace_ge_2] = ACTIONS(4511), + [aux_sym__whitespace_token1] = ACTIONS(4513), + [sym__word_no_digit] = ACTIONS(4511), + [sym__digits] = ACTIONS(4511), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), + [sym__code_span_start] = ACTIONS(4511), + [sym__emphasis_open_star] = ACTIONS(4511), + [sym__emphasis_open_underscore] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4511), + [sym__latex_span_start] = ACTIONS(4511), + [sym__single_quote_open] = ACTIONS(4511), + [sym__double_quote_open] = ACTIONS(4511), + [sym__superscript_open] = ACTIONS(4511), + [sym__subscript_open] = ACTIONS(4511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), + [sym__cite_author_in_text] = ACTIONS(4511), + [sym__cite_suppress_author] = ACTIONS(4511), + [sym__shortcode_open_escaped] = ACTIONS(4511), + [sym__shortcode_open] = ACTIONS(4511), + [sym__unclosed_span] = ACTIONS(4511), + [sym__strong_emphasis_open_star] = ACTIONS(4511), + [sym__strong_emphasis_open_underscore] = ACTIONS(4511), + [sym__strong_emphasis_close_underscore] = ACTIONS(4511), }, [STATE(1099)] = { - [sym__backslash_escape] = ACTIONS(5155), - [sym_entity_reference] = ACTIONS(5155), - [sym_numeric_character_reference] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_QMARK] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [sym__newline_token] = ACTIONS(5155), - [aux_sym_insert_token1] = ACTIONS(5155), - [aux_sym_delete_token1] = ACTIONS(5155), - [aux_sym_highlight_token1] = ACTIONS(5155), - [aux_sym_edit_comment_token1] = ACTIONS(5155), - [anon_sym_CARET_LBRACK] = ACTIONS(5155), - [anon_sym_LBRACK_CARET] = ACTIONS(5155), - [sym_uri_autolink] = ACTIONS(5155), - [sym_email_autolink] = ACTIONS(5155), - [sym__whitespace_ge_2] = ACTIONS(5155), - [aux_sym__whitespace_token1] = ACTIONS(5157), - [sym__word_no_digit] = ACTIONS(5155), - [sym__digits] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5155), - [sym__code_span_start] = ACTIONS(5155), - [sym__emphasis_open_star] = ACTIONS(5155), - [sym__emphasis_open_underscore] = ACTIONS(5155), - [sym__strikeout_open] = ACTIONS(5155), - [sym__latex_span_start] = ACTIONS(5155), - [sym__single_quote_open] = ACTIONS(5155), - [sym__double_quote_open] = ACTIONS(5155), - [sym__superscript_open] = ACTIONS(5155), - [sym__subscript_open] = ACTIONS(5155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5155), - [sym__cite_author_in_text] = ACTIONS(5155), - [sym__cite_suppress_author] = ACTIONS(5155), - [sym__shortcode_open_escaped] = ACTIONS(5155), - [sym__shortcode_open] = ACTIONS(5155), - [sym__unclosed_span] = ACTIONS(5155), - [sym__strong_emphasis_open_star] = ACTIONS(5155), - [sym__strong_emphasis_close_star] = ACTIONS(5155), - [sym__strong_emphasis_open_underscore] = ACTIONS(5155), + [sym__backslash_escape] = ACTIONS(4515), + [sym_entity_reference] = ACTIONS(4515), + [sym_numeric_character_reference] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4515), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_BSLASH] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_RPAREN] = ACTIONS(4515), + [sym__newline_token] = ACTIONS(4515), + [aux_sym_insert_token1] = ACTIONS(4515), + [aux_sym_delete_token1] = ACTIONS(4515), + [aux_sym_highlight_token1] = ACTIONS(4515), + [aux_sym_edit_comment_token1] = ACTIONS(4515), + [anon_sym_CARET_LBRACK] = ACTIONS(4515), + [anon_sym_LBRACK_CARET] = ACTIONS(4515), + [sym_uri_autolink] = ACTIONS(4515), + [sym_email_autolink] = ACTIONS(4515), + [sym__whitespace_ge_2] = ACTIONS(4515), + [aux_sym__whitespace_token1] = ACTIONS(4517), + [sym__word_no_digit] = ACTIONS(4515), + [sym__digits] = ACTIONS(4515), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4515), + [sym__code_span_start] = ACTIONS(4515), + [sym__emphasis_open_star] = ACTIONS(4515), + [sym__emphasis_open_underscore] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4515), + [sym__latex_span_start] = ACTIONS(4515), + [sym__single_quote_open] = ACTIONS(4515), + [sym__double_quote_open] = ACTIONS(4515), + [sym__superscript_open] = ACTIONS(4515), + [sym__subscript_open] = ACTIONS(4515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4515), + [sym__cite_author_in_text] = ACTIONS(4515), + [sym__cite_suppress_author] = ACTIONS(4515), + [sym__shortcode_open_escaped] = ACTIONS(4515), + [sym__shortcode_open] = ACTIONS(4515), + [sym__unclosed_span] = ACTIONS(4515), + [sym__strong_emphasis_open_star] = ACTIONS(4515), + [sym__strong_emphasis_open_underscore] = ACTIONS(4515), + [sym__strong_emphasis_close_underscore] = ACTIONS(4515), }, [STATE(1100)] = { - [sym__backslash_escape] = ACTIONS(5159), - [sym_entity_reference] = ACTIONS(5159), - [sym_numeric_character_reference] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_DQUOTE] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_QMARK] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym__newline_token] = ACTIONS(5159), - [aux_sym_insert_token1] = ACTIONS(5159), - [aux_sym_delete_token1] = ACTIONS(5159), - [aux_sym_highlight_token1] = ACTIONS(5159), - [aux_sym_edit_comment_token1] = ACTIONS(5159), - [anon_sym_CARET_LBRACK] = ACTIONS(5159), - [anon_sym_LBRACK_CARET] = ACTIONS(5159), - [sym_uri_autolink] = ACTIONS(5159), - [sym_email_autolink] = ACTIONS(5159), - [sym__whitespace_ge_2] = ACTIONS(5159), - [aux_sym__whitespace_token1] = ACTIONS(5161), - [sym__word_no_digit] = ACTIONS(5159), - [sym__digits] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5159), - [sym__code_span_start] = ACTIONS(5159), - [sym__emphasis_open_star] = ACTIONS(5159), - [sym__emphasis_open_underscore] = ACTIONS(5159), - [sym__strikeout_open] = ACTIONS(5159), - [sym__latex_span_start] = ACTIONS(5159), - [sym__single_quote_open] = ACTIONS(5159), - [sym__double_quote_open] = ACTIONS(5159), - [sym__superscript_open] = ACTIONS(5159), - [sym__subscript_open] = ACTIONS(5159), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5159), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5159), - [sym__cite_author_in_text] = ACTIONS(5159), - [sym__cite_suppress_author] = ACTIONS(5159), - [sym__shortcode_open_escaped] = ACTIONS(5159), - [sym__shortcode_open] = ACTIONS(5159), - [sym__unclosed_span] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5159), - [sym__strong_emphasis_close_star] = ACTIONS(5159), - [sym__strong_emphasis_open_underscore] = ACTIONS(5159), + [sym__backslash_escape] = ACTIONS(4519), + [sym_entity_reference] = ACTIONS(4519), + [sym_numeric_character_reference] = ACTIONS(4519), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4519), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_BSLASH] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_BQUOTE] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [sym__newline_token] = ACTIONS(4519), + [aux_sym_insert_token1] = ACTIONS(4519), + [aux_sym_delete_token1] = ACTIONS(4519), + [aux_sym_highlight_token1] = ACTIONS(4519), + [aux_sym_edit_comment_token1] = ACTIONS(4519), + [anon_sym_CARET_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_CARET] = ACTIONS(4519), + [sym_uri_autolink] = ACTIONS(4519), + [sym_email_autolink] = ACTIONS(4519), + [sym__whitespace_ge_2] = ACTIONS(4519), + [aux_sym__whitespace_token1] = ACTIONS(4521), + [sym__word_no_digit] = ACTIONS(4519), + [sym__digits] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [sym__code_span_start] = ACTIONS(4519), + [sym__emphasis_open_star] = ACTIONS(4519), + [sym__emphasis_open_underscore] = ACTIONS(4519), + [sym__strikeout_open] = ACTIONS(4519), + [sym__latex_span_start] = ACTIONS(4519), + [sym__single_quote_open] = ACTIONS(4519), + [sym__double_quote_open] = ACTIONS(4519), + [sym__superscript_open] = ACTIONS(4519), + [sym__subscript_open] = ACTIONS(4519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4519), + [sym__cite_suppress_author] = ACTIONS(4519), + [sym__shortcode_open_escaped] = ACTIONS(4519), + [sym__shortcode_open] = ACTIONS(4519), + [sym__unclosed_span] = ACTIONS(4519), + [sym__strong_emphasis_open_star] = ACTIONS(4519), + [sym__strong_emphasis_open_underscore] = ACTIONS(4519), + [sym__strong_emphasis_close_underscore] = ACTIONS(4519), }, [STATE(1101)] = { - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_close_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__backslash_escape] = ACTIONS(4523), + [sym_entity_reference] = ACTIONS(4523), + [sym_numeric_character_reference] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_BSLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [sym__newline_token] = ACTIONS(4523), + [aux_sym_insert_token1] = ACTIONS(4523), + [aux_sym_delete_token1] = ACTIONS(4523), + [aux_sym_highlight_token1] = ACTIONS(4523), + [aux_sym_edit_comment_token1] = ACTIONS(4523), + [anon_sym_CARET_LBRACK] = ACTIONS(4523), + [anon_sym_LBRACK_CARET] = ACTIONS(4523), + [sym_uri_autolink] = ACTIONS(4523), + [sym_email_autolink] = ACTIONS(4523), + [sym__whitespace_ge_2] = ACTIONS(4523), + [aux_sym__whitespace_token1] = ACTIONS(4525), + [sym__word_no_digit] = ACTIONS(4523), + [sym__digits] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4523), + [sym__code_span_start] = ACTIONS(4523), + [sym__emphasis_open_star] = ACTIONS(4523), + [sym__emphasis_open_underscore] = ACTIONS(4523), + [sym__strikeout_open] = ACTIONS(4523), + [sym__latex_span_start] = ACTIONS(4523), + [sym__single_quote_open] = ACTIONS(4523), + [sym__double_quote_open] = ACTIONS(4523), + [sym__superscript_open] = ACTIONS(4523), + [sym__subscript_open] = ACTIONS(4523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4523), + [sym__cite_author_in_text] = ACTIONS(4523), + [sym__cite_suppress_author] = ACTIONS(4523), + [sym__shortcode_open_escaped] = ACTIONS(4523), + [sym__shortcode_open] = ACTIONS(4523), + [sym__unclosed_span] = ACTIONS(4523), + [sym__strong_emphasis_open_star] = ACTIONS(4523), + [sym__strong_emphasis_open_underscore] = ACTIONS(4523), + [sym__strong_emphasis_close_underscore] = ACTIONS(4523), }, [STATE(1102)] = { - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_close_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), + [sym__strong_emphasis_close_underscore] = ACTIONS(4243), }, [STATE(1103)] = { - [sym__backslash_escape] = ACTIONS(5163), - [sym_entity_reference] = ACTIONS(5163), - [sym_numeric_character_reference] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_PERCENT] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym_BQUOTE] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [sym__newline_token] = ACTIONS(5163), - [aux_sym_insert_token1] = ACTIONS(5163), - [aux_sym_delete_token1] = ACTIONS(5163), - [aux_sym_highlight_token1] = ACTIONS(5163), - [aux_sym_edit_comment_token1] = ACTIONS(5163), - [anon_sym_CARET_LBRACK] = ACTIONS(5163), - [anon_sym_LBRACK_CARET] = ACTIONS(5163), - [sym_uri_autolink] = ACTIONS(5163), - [sym_email_autolink] = ACTIONS(5163), - [sym__whitespace_ge_2] = ACTIONS(5163), - [aux_sym__whitespace_token1] = ACTIONS(5165), - [sym__word_no_digit] = ACTIONS(5163), - [sym__digits] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5163), - [sym__code_span_start] = ACTIONS(5163), - [sym__emphasis_open_star] = ACTIONS(5163), - [sym__emphasis_open_underscore] = ACTIONS(5163), - [sym__strikeout_open] = ACTIONS(5163), - [sym__latex_span_start] = ACTIONS(5163), - [sym__single_quote_open] = ACTIONS(5163), - [sym__double_quote_open] = ACTIONS(5163), - [sym__superscript_open] = ACTIONS(5163), - [sym__subscript_open] = ACTIONS(5163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5163), - [sym__cite_author_in_text] = ACTIONS(5163), - [sym__cite_suppress_author] = ACTIONS(5163), - [sym__shortcode_open_escaped] = ACTIONS(5163), - [sym__shortcode_open] = ACTIONS(5163), - [sym__unclosed_span] = ACTIONS(5163), - [sym__strong_emphasis_open_star] = ACTIONS(5163), - [sym__strong_emphasis_close_star] = ACTIONS(5163), - [sym__strong_emphasis_open_underscore] = ACTIONS(5163), + [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(1104)] = { - [sym__backslash_escape] = ACTIONS(5167), - [sym_entity_reference] = ACTIONS(5167), - [sym_numeric_character_reference] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_POUND] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_PERCENT] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_QMARK] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [sym__newline_token] = ACTIONS(5167), - [aux_sym_insert_token1] = ACTIONS(5167), - [aux_sym_delete_token1] = ACTIONS(5167), - [aux_sym_highlight_token1] = ACTIONS(5167), - [aux_sym_edit_comment_token1] = ACTIONS(5167), - [anon_sym_CARET_LBRACK] = ACTIONS(5167), - [anon_sym_LBRACK_CARET] = ACTIONS(5167), - [sym_uri_autolink] = ACTIONS(5167), - [sym_email_autolink] = ACTIONS(5167), - [sym__whitespace_ge_2] = ACTIONS(5167), - [aux_sym__whitespace_token1] = ACTIONS(5169), - [sym__word_no_digit] = ACTIONS(5167), - [sym__digits] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5169), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), - [sym__code_span_start] = ACTIONS(5167), - [sym__emphasis_open_star] = ACTIONS(5167), - [sym__emphasis_open_underscore] = ACTIONS(5167), - [sym__strikeout_open] = ACTIONS(5167), - [sym__latex_span_start] = ACTIONS(5167), - [sym__single_quote_open] = ACTIONS(5167), - [sym__double_quote_open] = ACTIONS(5167), - [sym__superscript_open] = ACTIONS(5167), - [sym__subscript_open] = ACTIONS(5167), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5167), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5167), - [sym__cite_author_in_text] = ACTIONS(5167), - [sym__cite_suppress_author] = ACTIONS(5167), - [sym__shortcode_open_escaped] = ACTIONS(5167), - [sym__shortcode_open] = ACTIONS(5167), - [sym__unclosed_span] = ACTIONS(5167), - [sym__strong_emphasis_open_star] = ACTIONS(5167), - [sym__strong_emphasis_close_star] = ACTIONS(5167), - [sym__strong_emphasis_open_underscore] = ACTIONS(5167), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), + [sym__strong_emphasis_close_underscore] = ACTIONS(4247), }, [STATE(1105)] = { - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_close_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [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(1106)] = { - [ts_builtin_sym_end] = ACTIONS(4669), - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [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(1107)] = { - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_close_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4535), }, [STATE(1108)] = { - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_close_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [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__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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4539), }, [STATE(1109)] = { - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_close_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [sym__backslash_escape] = ACTIONS(4503), + [sym_entity_reference] = ACTIONS(4503), + [sym_numeric_character_reference] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_BQUOTE] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_PIPE] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [sym__newline_token] = ACTIONS(4503), + [aux_sym_insert_token1] = ACTIONS(4503), + [aux_sym_delete_token1] = ACTIONS(4503), + [aux_sym_highlight_token1] = ACTIONS(4503), + [aux_sym_edit_comment_token1] = ACTIONS(4503), + [anon_sym_CARET_LBRACK] = ACTIONS(4503), + [anon_sym_LBRACK_CARET] = ACTIONS(4503), + [sym_uri_autolink] = ACTIONS(4503), + [sym_email_autolink] = ACTIONS(4503), + [sym__whitespace_ge_2] = ACTIONS(4503), + [aux_sym__whitespace_token1] = ACTIONS(4505), + [sym__word_no_digit] = ACTIONS(4503), + [sym__digits] = ACTIONS(4503), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4503), + [sym__code_span_start] = ACTIONS(4503), + [sym__emphasis_open_star] = ACTIONS(4503), + [sym__emphasis_open_underscore] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4503), + [sym__latex_span_start] = ACTIONS(4503), + [sym__single_quote_open] = ACTIONS(4503), + [sym__double_quote_open] = ACTIONS(4503), + [sym__superscript_open] = ACTIONS(4503), + [sym__subscript_open] = ACTIONS(4503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4503), + [sym__cite_author_in_text] = ACTIONS(4503), + [sym__cite_suppress_author] = ACTIONS(4503), + [sym__shortcode_open_escaped] = ACTIONS(4503), + [sym__shortcode_open] = ACTIONS(4503), + [sym__unclosed_span] = ACTIONS(4503), + [sym__strong_emphasis_open_star] = ACTIONS(4503), + [sym__strong_emphasis_open_underscore] = ACTIONS(4503), + [sym__strong_emphasis_close_underscore] = ACTIONS(4503), }, [STATE(1110)] = { - [sym__backslash_escape] = ACTIONS(5171), - [sym_entity_reference] = ACTIONS(5171), - [sym_numeric_character_reference] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [anon_sym_POUND] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_QMARK] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH] = ACTIONS(5173), - [anon_sym_CARET] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [sym__newline_token] = ACTIONS(5171), - [aux_sym_insert_token1] = ACTIONS(5171), - [aux_sym_delete_token1] = ACTIONS(5171), - [aux_sym_highlight_token1] = ACTIONS(5171), - [aux_sym_edit_comment_token1] = ACTIONS(5171), - [anon_sym_CARET_LBRACK] = ACTIONS(5171), - [anon_sym_LBRACK_CARET] = ACTIONS(5171), - [sym_uri_autolink] = ACTIONS(5171), - [sym_email_autolink] = ACTIONS(5171), - [sym__whitespace_ge_2] = ACTIONS(5171), - [aux_sym__whitespace_token1] = ACTIONS(5173), - [sym__word_no_digit] = ACTIONS(5171), - [sym__digits] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5171), - [sym__code_span_start] = ACTIONS(5171), - [sym__emphasis_open_star] = ACTIONS(5171), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym__strikeout_open] = ACTIONS(5171), - [sym__latex_span_start] = ACTIONS(5171), - [sym__single_quote_open] = ACTIONS(5171), - [sym__double_quote_open] = ACTIONS(5171), - [sym__superscript_open] = ACTIONS(5171), - [sym__subscript_open] = ACTIONS(5171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5171), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5171), - [sym__cite_author_in_text] = ACTIONS(5171), - [sym__cite_suppress_author] = ACTIONS(5171), - [sym__shortcode_open_escaped] = ACTIONS(5171), - [sym__shortcode_open] = ACTIONS(5171), - [sym__unclosed_span] = ACTIONS(5171), - [sym__strong_emphasis_open_star] = ACTIONS(5171), - [sym__strong_emphasis_close_star] = ACTIONS(5171), - [sym__strong_emphasis_open_underscore] = ACTIONS(5171), + [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(4251), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(1111)] = { - [sym__backslash_escape] = ACTIONS(5175), - [sym_entity_reference] = ACTIONS(5175), - [sym_numeric_character_reference] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_QMARK] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [sym__newline_token] = ACTIONS(5175), - [aux_sym_insert_token1] = ACTIONS(5175), - [aux_sym_delete_token1] = ACTIONS(5175), - [aux_sym_highlight_token1] = ACTIONS(5175), - [aux_sym_edit_comment_token1] = ACTIONS(5175), - [anon_sym_CARET_LBRACK] = ACTIONS(5175), - [anon_sym_LBRACK_CARET] = ACTIONS(5175), - [sym_uri_autolink] = ACTIONS(5175), - [sym_email_autolink] = ACTIONS(5175), - [sym__whitespace_ge_2] = ACTIONS(5175), - [aux_sym__whitespace_token1] = ACTIONS(5177), - [sym__word_no_digit] = ACTIONS(5175), - [sym__digits] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5177), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5175), - [sym__code_span_start] = ACTIONS(5175), - [sym__emphasis_open_star] = ACTIONS(5175), - [sym__emphasis_open_underscore] = ACTIONS(5175), - [sym__strikeout_open] = ACTIONS(5175), - [sym__latex_span_start] = ACTIONS(5175), - [sym__single_quote_open] = ACTIONS(5175), - [sym__double_quote_open] = ACTIONS(5175), - [sym__superscript_open] = ACTIONS(5175), - [sym__subscript_open] = ACTIONS(5175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5175), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5175), - [sym__cite_author_in_text] = ACTIONS(5175), - [sym__cite_suppress_author] = ACTIONS(5175), - [sym__shortcode_open_escaped] = ACTIONS(5175), - [sym__shortcode_open] = ACTIONS(5175), - [sym__unclosed_span] = ACTIONS(5175), - [sym__strong_emphasis_open_star] = ACTIONS(5175), - [sym__strong_emphasis_close_star] = ACTIONS(5175), - [sym__strong_emphasis_open_underscore] = ACTIONS(5175), + [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(1112)] = { - [sym__backslash_escape] = ACTIONS(4939), - [sym_entity_reference] = ACTIONS(4939), - [sym_numeric_character_reference] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_POUND] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [sym__newline_token] = ACTIONS(4939), - [aux_sym_insert_token1] = ACTIONS(4939), - [aux_sym_delete_token1] = ACTIONS(4939), - [aux_sym_highlight_token1] = ACTIONS(4939), - [aux_sym_edit_comment_token1] = ACTIONS(4939), - [anon_sym_CARET_LBRACK] = ACTIONS(4939), - [anon_sym_LBRACK_CARET] = ACTIONS(4939), - [sym_uri_autolink] = ACTIONS(4939), - [sym_email_autolink] = ACTIONS(4939), - [sym__whitespace_ge_2] = ACTIONS(4939), - [aux_sym__whitespace_token1] = ACTIONS(4941), - [sym__word_no_digit] = ACTIONS(4939), - [sym__digits] = ACTIONS(4939), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4939), - [sym__code_span_start] = ACTIONS(4939), - [sym__emphasis_open_star] = ACTIONS(4939), - [sym__emphasis_open_underscore] = ACTIONS(4939), - [sym__strikeout_open] = ACTIONS(4939), - [sym__latex_span_start] = ACTIONS(4939), - [sym__single_quote_open] = ACTIONS(4939), - [sym__double_quote_open] = ACTIONS(4939), - [sym__superscript_open] = ACTIONS(4939), - [sym__subscript_open] = ACTIONS(4939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4939), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4939), - [sym__cite_author_in_text] = ACTIONS(4939), - [sym__cite_suppress_author] = ACTIONS(4939), - [sym__shortcode_open_escaped] = ACTIONS(4939), - [sym__shortcode_open] = ACTIONS(4939), - [sym__unclosed_span] = ACTIONS(4939), - [sym__strong_emphasis_open_star] = ACTIONS(4939), - [sym__strong_emphasis_close_star] = ACTIONS(4939), - [sym__strong_emphasis_open_underscore] = ACTIONS(4939), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), + [sym__strong_emphasis_close_underscore] = ACTIONS(4255), }, [STATE(1113)] = { - [ts_builtin_sym_end] = ACTIONS(5163), - [sym__backslash_escape] = ACTIONS(5163), - [sym_entity_reference] = ACTIONS(5163), - [sym_numeric_character_reference] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_PERCENT] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym_BQUOTE] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [sym__newline_token] = ACTIONS(5163), - [aux_sym_insert_token1] = ACTIONS(5163), - [aux_sym_delete_token1] = ACTIONS(5163), - [aux_sym_highlight_token1] = ACTIONS(5163), - [aux_sym_edit_comment_token1] = ACTIONS(5163), - [anon_sym_CARET_LBRACK] = ACTIONS(5163), - [anon_sym_LBRACK_CARET] = ACTIONS(5163), - [sym_uri_autolink] = ACTIONS(5163), - [sym_email_autolink] = ACTIONS(5163), - [sym__whitespace_ge_2] = ACTIONS(5163), - [aux_sym__whitespace_token1] = ACTIONS(5165), - [sym__word_no_digit] = ACTIONS(5163), - [sym__digits] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5163), - [sym__code_span_start] = ACTIONS(5163), - [sym__emphasis_open_star] = ACTIONS(5163), - [sym__emphasis_open_underscore] = ACTIONS(5163), - [sym__strikeout_open] = ACTIONS(5163), - [sym__latex_span_start] = ACTIONS(5163), - [sym__single_quote_open] = ACTIONS(5163), - [sym__double_quote_open] = ACTIONS(5163), - [sym__superscript_open] = ACTIONS(5163), - [sym__subscript_open] = ACTIONS(5163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5163), - [sym__cite_author_in_text] = ACTIONS(5163), - [sym__cite_suppress_author] = ACTIONS(5163), - [sym__shortcode_open_escaped] = ACTIONS(5163), - [sym__shortcode_open] = ACTIONS(5163), - [sym__unclosed_span] = ACTIONS(5163), - [sym__strong_emphasis_open_star] = ACTIONS(5163), - [sym__strong_emphasis_open_underscore] = ACTIONS(5163), + [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(1114)] = { - [ts_builtin_sym_end] = ACTIONS(5167), - [sym__backslash_escape] = ACTIONS(5167), - [sym_entity_reference] = ACTIONS(5167), - [sym_numeric_character_reference] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_POUND] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_PERCENT] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_QMARK] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [sym__newline_token] = ACTIONS(5167), - [aux_sym_insert_token1] = ACTIONS(5167), - [aux_sym_delete_token1] = ACTIONS(5167), - [aux_sym_highlight_token1] = ACTIONS(5167), - [aux_sym_edit_comment_token1] = ACTIONS(5167), - [anon_sym_CARET_LBRACK] = ACTIONS(5167), - [anon_sym_LBRACK_CARET] = ACTIONS(5167), - [sym_uri_autolink] = ACTIONS(5167), - [sym_email_autolink] = ACTIONS(5167), - [sym__whitespace_ge_2] = ACTIONS(5167), - [aux_sym__whitespace_token1] = ACTIONS(5169), - [sym__word_no_digit] = ACTIONS(5167), - [sym__digits] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5169), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), - [sym__code_span_start] = ACTIONS(5167), - [sym__emphasis_open_star] = ACTIONS(5167), - [sym__emphasis_open_underscore] = ACTIONS(5167), - [sym__strikeout_open] = ACTIONS(5167), - [sym__latex_span_start] = ACTIONS(5167), - [sym__single_quote_open] = ACTIONS(5167), - [sym__double_quote_open] = ACTIONS(5167), - [sym__superscript_open] = ACTIONS(5167), - [sym__subscript_open] = ACTIONS(5167), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5167), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5167), - [sym__cite_author_in_text] = ACTIONS(5167), - [sym__cite_suppress_author] = ACTIONS(5167), - [sym__shortcode_open_escaped] = ACTIONS(5167), - [sym__shortcode_open] = ACTIONS(5167), - [sym__unclosed_span] = ACTIONS(5167), - [sym__strong_emphasis_open_star] = ACTIONS(5167), - [sym__strong_emphasis_open_underscore] = ACTIONS(5167), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4543), }, [STATE(1115)] = { - [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_STAR] = 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), - [sym__strong_emphasis_close_underscore] = ACTIONS(4747), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4547), }, [STATE(1116)] = { - [ts_builtin_sym_end] = ACTIONS(4673), - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), + [sym__strong_emphasis_close_underscore] = ACTIONS(4187), }, [STATE(1117)] = { - [sym__backslash_escape] = ACTIONS(4943), - [sym_entity_reference] = ACTIONS(4943), - [sym_numeric_character_reference] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [sym__newline_token] = ACTIONS(4943), - [aux_sym_insert_token1] = ACTIONS(4943), - [aux_sym_delete_token1] = ACTIONS(4943), - [aux_sym_highlight_token1] = ACTIONS(4943), - [aux_sym_edit_comment_token1] = ACTIONS(4943), - [anon_sym_CARET_LBRACK] = ACTIONS(4943), - [anon_sym_LBRACK_CARET] = ACTIONS(4943), - [sym_uri_autolink] = ACTIONS(4943), - [sym_email_autolink] = ACTIONS(4943), - [sym__whitespace_ge_2] = ACTIONS(4943), - [aux_sym__whitespace_token1] = ACTIONS(4945), - [sym__word_no_digit] = ACTIONS(4943), - [sym__digits] = ACTIONS(4943), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4943), - [sym__code_span_start] = ACTIONS(4943), - [sym__emphasis_open_star] = ACTIONS(4943), - [sym__emphasis_open_underscore] = ACTIONS(4943), - [sym__strikeout_open] = ACTIONS(4943), - [sym__latex_span_start] = ACTIONS(4943), - [sym__single_quote_open] = ACTIONS(4943), - [sym__double_quote_open] = ACTIONS(4943), - [sym__superscript_open] = ACTIONS(4943), - [sym__subscript_open] = ACTIONS(4943), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4943), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4943), - [sym__cite_author_in_text] = ACTIONS(4943), - [sym__cite_suppress_author] = ACTIONS(4943), - [sym__shortcode_open_escaped] = ACTIONS(4943), - [sym__shortcode_open] = ACTIONS(4943), - [sym__unclosed_span] = ACTIONS(4943), - [sym__strong_emphasis_open_star] = ACTIONS(4943), - [sym__strong_emphasis_open_underscore] = ACTIONS(4943), - [sym__strong_emphasis_close_underscore] = ACTIONS(4943), + [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(1118)] = { - [sym__backslash_escape] = ACTIONS(4947), - [sym_entity_reference] = ACTIONS(4947), - [sym_numeric_character_reference] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_DQUOTE] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [sym__newline_token] = ACTIONS(4947), - [aux_sym_insert_token1] = ACTIONS(4947), - [aux_sym_delete_token1] = ACTIONS(4947), - [aux_sym_highlight_token1] = ACTIONS(4947), - [aux_sym_edit_comment_token1] = ACTIONS(4947), - [anon_sym_CARET_LBRACK] = ACTIONS(4947), - [anon_sym_LBRACK_CARET] = ACTIONS(4947), - [sym_uri_autolink] = ACTIONS(4947), - [sym_email_autolink] = ACTIONS(4947), - [sym__whitespace_ge_2] = ACTIONS(4947), - [aux_sym__whitespace_token1] = ACTIONS(4949), - [sym__word_no_digit] = ACTIONS(4947), - [sym__digits] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4947), - [sym__code_span_start] = ACTIONS(4947), - [sym__emphasis_open_star] = ACTIONS(4947), - [sym__emphasis_open_underscore] = ACTIONS(4947), - [sym__strikeout_open] = ACTIONS(4947), - [sym__latex_span_start] = ACTIONS(4947), - [sym__single_quote_open] = ACTIONS(4947), - [sym__double_quote_open] = ACTIONS(4947), - [sym__superscript_open] = ACTIONS(4947), - [sym__subscript_open] = ACTIONS(4947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4947), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4947), - [sym__cite_author_in_text] = ACTIONS(4947), - [sym__cite_suppress_author] = ACTIONS(4947), - [sym__shortcode_open_escaped] = ACTIONS(4947), - [sym__shortcode_open] = ACTIONS(4947), - [sym__unclosed_span] = ACTIONS(4947), - [sym__strong_emphasis_open_star] = ACTIONS(4947), - [sym__strong_emphasis_open_underscore] = ACTIONS(4947), - [sym__strong_emphasis_close_underscore] = ACTIONS(4947), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), + [sym__strong_emphasis_close_underscore] = ACTIONS(4193), }, [STATE(1119)] = { - [ts_builtin_sym_end] = ACTIONS(4677), - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [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(1120)] = { - [sym__backslash_escape] = ACTIONS(4951), - [sym_entity_reference] = ACTIONS(4951), - [sym_numeric_character_reference] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [sym__newline_token] = ACTIONS(4951), - [aux_sym_insert_token1] = ACTIONS(4951), - [aux_sym_delete_token1] = ACTIONS(4951), - [aux_sym_highlight_token1] = ACTIONS(4951), - [aux_sym_edit_comment_token1] = ACTIONS(4951), - [anon_sym_CARET_LBRACK] = ACTIONS(4951), - [anon_sym_LBRACK_CARET] = ACTIONS(4951), - [sym_uri_autolink] = ACTIONS(4951), - [sym_email_autolink] = ACTIONS(4951), - [sym__whitespace_ge_2] = ACTIONS(4951), - [aux_sym__whitespace_token1] = ACTIONS(4953), - [sym__word_no_digit] = ACTIONS(4951), - [sym__digits] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4951), - [sym__code_span_start] = ACTIONS(4951), - [sym__emphasis_open_star] = ACTIONS(4951), - [sym__emphasis_open_underscore] = ACTIONS(4951), - [sym__strikeout_open] = ACTIONS(4951), - [sym__latex_span_start] = ACTIONS(4951), - [sym__single_quote_open] = ACTIONS(4951), - [sym__double_quote_open] = ACTIONS(4951), - [sym__superscript_open] = ACTIONS(4951), - [sym__subscript_open] = ACTIONS(4951), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4951), - [sym__cite_author_in_text] = ACTIONS(4951), - [sym__cite_suppress_author] = ACTIONS(4951), - [sym__shortcode_open_escaped] = ACTIONS(4951), - [sym__shortcode_open] = ACTIONS(4951), - [sym__unclosed_span] = ACTIONS(4951), - [sym__strong_emphasis_open_star] = ACTIONS(4951), - [sym__strong_emphasis_open_underscore] = ACTIONS(4951), - [sym__strong_emphasis_close_underscore] = ACTIONS(4951), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), + [sym__strong_emphasis_close_underscore] = ACTIONS(4197), }, [STATE(1121)] = { - [sym__backslash_escape] = ACTIONS(4955), - [sym_entity_reference] = ACTIONS(4955), - [sym_numeric_character_reference] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_DQUOTE] = ACTIONS(4955), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4957), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [sym__newline_token] = ACTIONS(4955), - [aux_sym_insert_token1] = ACTIONS(4955), - [aux_sym_delete_token1] = ACTIONS(4955), - [aux_sym_highlight_token1] = ACTIONS(4955), - [aux_sym_edit_comment_token1] = ACTIONS(4955), - [anon_sym_CARET_LBRACK] = ACTIONS(4955), - [anon_sym_LBRACK_CARET] = ACTIONS(4955), - [sym_uri_autolink] = ACTIONS(4955), - [sym_email_autolink] = ACTIONS(4955), - [sym__whitespace_ge_2] = ACTIONS(4955), - [aux_sym__whitespace_token1] = ACTIONS(4957), - [sym__word_no_digit] = ACTIONS(4955), - [sym__digits] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4955), - [sym__code_span_start] = ACTIONS(4955), - [sym__emphasis_open_star] = ACTIONS(4955), - [sym__emphasis_open_underscore] = ACTIONS(4955), - [sym__strikeout_open] = ACTIONS(4955), - [sym__latex_span_start] = ACTIONS(4955), - [sym__single_quote_open] = ACTIONS(4955), - [sym__double_quote_open] = ACTIONS(4955), - [sym__superscript_open] = ACTIONS(4955), - [sym__subscript_open] = ACTIONS(4955), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4955), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4955), - [sym__cite_author_in_text] = ACTIONS(4955), - [sym__cite_suppress_author] = ACTIONS(4955), - [sym__shortcode_open_escaped] = ACTIONS(4955), - [sym__shortcode_open] = ACTIONS(4955), - [sym__unclosed_span] = ACTIONS(4955), - [sym__strong_emphasis_open_star] = ACTIONS(4955), - [sym__strong_emphasis_open_underscore] = ACTIONS(4955), - [sym__strong_emphasis_close_underscore] = ACTIONS(4955), + [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(1122)] = { - [sym__backslash_escape] = ACTIONS(4959), - [sym_entity_reference] = ACTIONS(4959), - [sym_numeric_character_reference] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_DQUOTE] = ACTIONS(4959), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4961), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_TILDE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4959), - [sym__newline_token] = ACTIONS(4959), - [aux_sym_insert_token1] = ACTIONS(4959), - [aux_sym_delete_token1] = ACTIONS(4959), - [aux_sym_highlight_token1] = ACTIONS(4959), - [aux_sym_edit_comment_token1] = ACTIONS(4959), - [anon_sym_CARET_LBRACK] = ACTIONS(4959), - [anon_sym_LBRACK_CARET] = ACTIONS(4959), - [sym_uri_autolink] = ACTIONS(4959), - [sym_email_autolink] = ACTIONS(4959), - [sym__whitespace_ge_2] = ACTIONS(4959), - [aux_sym__whitespace_token1] = ACTIONS(4961), - [sym__word_no_digit] = ACTIONS(4959), - [sym__digits] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4959), - [sym__code_span_start] = ACTIONS(4959), - [sym__emphasis_open_star] = ACTIONS(4959), - [sym__emphasis_open_underscore] = ACTIONS(4959), - [sym__strikeout_open] = ACTIONS(4959), - [sym__latex_span_start] = ACTIONS(4959), - [sym__single_quote_open] = ACTIONS(4959), - [sym__double_quote_open] = ACTIONS(4959), - [sym__superscript_open] = ACTIONS(4959), - [sym__subscript_open] = ACTIONS(4959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4959), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4959), - [sym__cite_author_in_text] = ACTIONS(4959), - [sym__cite_suppress_author] = ACTIONS(4959), - [sym__shortcode_open_escaped] = ACTIONS(4959), - [sym__shortcode_open] = ACTIONS(4959), - [sym__unclosed_span] = ACTIONS(4959), - [sym__strong_emphasis_open_star] = ACTIONS(4959), - [sym__strong_emphasis_open_underscore] = ACTIONS(4959), - [sym__strong_emphasis_close_underscore] = ACTIONS(4959), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), + [sym__strong_emphasis_close_underscore] = ACTIONS(4201), }, [STATE(1123)] = { - [sym__backslash_escape] = ACTIONS(4963), - [sym_entity_reference] = ACTIONS(4963), - [sym_numeric_character_reference] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_DQUOTE] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4963), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_RPAREN] = ACTIONS(4963), - [sym__newline_token] = ACTIONS(4963), - [aux_sym_insert_token1] = ACTIONS(4963), - [aux_sym_delete_token1] = ACTIONS(4963), - [aux_sym_highlight_token1] = ACTIONS(4963), - [aux_sym_edit_comment_token1] = ACTIONS(4963), - [anon_sym_CARET_LBRACK] = ACTIONS(4963), - [anon_sym_LBRACK_CARET] = ACTIONS(4963), - [sym_uri_autolink] = ACTIONS(4963), - [sym_email_autolink] = ACTIONS(4963), - [sym__whitespace_ge_2] = ACTIONS(4963), - [aux_sym__whitespace_token1] = ACTIONS(4965), - [sym__word_no_digit] = ACTIONS(4963), - [sym__digits] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4963), - [sym__code_span_start] = ACTIONS(4963), - [sym__emphasis_open_star] = ACTIONS(4963), - [sym__emphasis_open_underscore] = ACTIONS(4963), - [sym__strikeout_open] = ACTIONS(4963), - [sym__latex_span_start] = ACTIONS(4963), - [sym__single_quote_open] = ACTIONS(4963), - [sym__double_quote_open] = ACTIONS(4963), - [sym__superscript_open] = ACTIONS(4963), - [sym__subscript_open] = ACTIONS(4963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4963), - [sym__cite_author_in_text] = ACTIONS(4963), - [sym__cite_suppress_author] = ACTIONS(4963), - [sym__shortcode_open_escaped] = ACTIONS(4963), - [sym__shortcode_open] = ACTIONS(4963), - [sym__unclosed_span] = ACTIONS(4963), - [sym__strong_emphasis_open_star] = ACTIONS(4963), - [sym__strong_emphasis_open_underscore] = ACTIONS(4963), - [sym__strong_emphasis_close_underscore] = ACTIONS(4963), + [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(1124)] = { - [sym__backslash_escape] = ACTIONS(4967), - [sym_entity_reference] = ACTIONS(4967), - [sym_numeric_character_reference] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_BQUOTE] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [sym__newline_token] = ACTIONS(4967), - [aux_sym_insert_token1] = ACTIONS(4967), - [aux_sym_delete_token1] = ACTIONS(4967), - [aux_sym_highlight_token1] = ACTIONS(4967), - [aux_sym_edit_comment_token1] = ACTIONS(4967), - [anon_sym_CARET_LBRACK] = ACTIONS(4967), - [anon_sym_LBRACK_CARET] = ACTIONS(4967), - [sym_uri_autolink] = ACTIONS(4967), - [sym_email_autolink] = ACTIONS(4967), - [sym__whitespace_ge_2] = ACTIONS(4967), - [aux_sym__whitespace_token1] = ACTIONS(4969), - [sym__word_no_digit] = ACTIONS(4967), - [sym__digits] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [sym__code_span_start] = ACTIONS(4967), - [sym__emphasis_open_star] = ACTIONS(4967), - [sym__emphasis_open_underscore] = ACTIONS(4967), - [sym__strikeout_open] = ACTIONS(4967), - [sym__latex_span_start] = ACTIONS(4967), - [sym__single_quote_open] = ACTIONS(4967), - [sym__double_quote_open] = ACTIONS(4967), - [sym__superscript_open] = ACTIONS(4967), - [sym__subscript_open] = ACTIONS(4967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4967), - [sym__cite_author_in_text] = ACTIONS(4967), - [sym__cite_suppress_author] = ACTIONS(4967), - [sym__shortcode_open_escaped] = ACTIONS(4967), - [sym__shortcode_open] = ACTIONS(4967), - [sym__unclosed_span] = ACTIONS(4967), - [sym__strong_emphasis_open_star] = ACTIONS(4967), - [sym__strong_emphasis_open_underscore] = ACTIONS(4967), - [sym__strong_emphasis_close_underscore] = ACTIONS(4967), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4555), }, [STATE(1125)] = { - [sym__backslash_escape] = ACTIONS(4971), - [sym_entity_reference] = ACTIONS(4971), - [sym_numeric_character_reference] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym_BQUOTE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [sym__newline_token] = ACTIONS(4971), - [aux_sym_insert_token1] = ACTIONS(4971), - [aux_sym_delete_token1] = ACTIONS(4971), - [aux_sym_highlight_token1] = ACTIONS(4971), - [aux_sym_edit_comment_token1] = ACTIONS(4971), - [anon_sym_CARET_LBRACK] = ACTIONS(4971), - [anon_sym_LBRACK_CARET] = ACTIONS(4971), - [sym_uri_autolink] = ACTIONS(4971), - [sym_email_autolink] = ACTIONS(4971), - [sym__whitespace_ge_2] = ACTIONS(4971), - [aux_sym__whitespace_token1] = ACTIONS(4973), - [sym__word_no_digit] = ACTIONS(4971), - [sym__digits] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4971), - [sym__code_span_start] = ACTIONS(4971), - [sym__emphasis_open_star] = ACTIONS(4971), - [sym__emphasis_open_underscore] = ACTIONS(4971), - [sym__strikeout_open] = ACTIONS(4971), - [sym__latex_span_start] = ACTIONS(4971), - [sym__single_quote_open] = ACTIONS(4971), - [sym__double_quote_open] = ACTIONS(4971), - [sym__superscript_open] = ACTIONS(4971), - [sym__subscript_open] = ACTIONS(4971), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4971), - [sym__cite_author_in_text] = ACTIONS(4971), - [sym__cite_suppress_author] = ACTIONS(4971), - [sym__shortcode_open_escaped] = ACTIONS(4971), - [sym__shortcode_open] = ACTIONS(4971), - [sym__unclosed_span] = ACTIONS(4971), - [sym__strong_emphasis_open_star] = ACTIONS(4971), - [sym__strong_emphasis_open_underscore] = ACTIONS(4971), - [sym__strong_emphasis_close_underscore] = ACTIONS(4971), + [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__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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4559), }, [STATE(1126)] = { - [sym__backslash_escape] = ACTIONS(4975), - [sym_entity_reference] = ACTIONS(4975), - [sym_numeric_character_reference] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [sym__newline_token] = ACTIONS(4975), - [aux_sym_insert_token1] = ACTIONS(4975), - [aux_sym_delete_token1] = ACTIONS(4975), - [aux_sym_highlight_token1] = ACTIONS(4975), - [aux_sym_edit_comment_token1] = ACTIONS(4975), - [anon_sym_CARET_LBRACK] = ACTIONS(4975), - [anon_sym_LBRACK_CARET] = ACTIONS(4975), - [sym_uri_autolink] = ACTIONS(4975), - [sym_email_autolink] = ACTIONS(4975), - [sym__whitespace_ge_2] = ACTIONS(4975), - [aux_sym__whitespace_token1] = ACTIONS(4977), - [sym__word_no_digit] = ACTIONS(4975), - [sym__digits] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [sym__code_span_start] = ACTIONS(4975), - [sym__emphasis_open_star] = ACTIONS(4975), - [sym__emphasis_open_underscore] = ACTIONS(4975), - [sym__strikeout_open] = ACTIONS(4975), - [sym__latex_span_start] = ACTIONS(4975), - [sym__single_quote_open] = ACTIONS(4975), - [sym__double_quote_open] = ACTIONS(4975), - [sym__superscript_open] = ACTIONS(4975), - [sym__subscript_open] = ACTIONS(4975), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4975), - [sym__cite_author_in_text] = ACTIONS(4975), - [sym__cite_suppress_author] = ACTIONS(4975), - [sym__shortcode_open_escaped] = ACTIONS(4975), - [sym__shortcode_open] = ACTIONS(4975), - [sym__unclosed_span] = ACTIONS(4975), - [sym__strong_emphasis_open_star] = ACTIONS(4975), - [sym__strong_emphasis_open_underscore] = ACTIONS(4975), - [sym__strong_emphasis_close_underscore] = ACTIONS(4975), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4563), }, [STATE(1127)] = { - [sym__backslash_escape] = ACTIONS(4979), - [sym_entity_reference] = ACTIONS(4979), - [sym_numeric_character_reference] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_COLON] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), - [sym__newline_token] = ACTIONS(4979), - [aux_sym_insert_token1] = ACTIONS(4979), - [aux_sym_delete_token1] = ACTIONS(4979), - [aux_sym_highlight_token1] = ACTIONS(4979), - [aux_sym_edit_comment_token1] = ACTIONS(4979), - [anon_sym_CARET_LBRACK] = ACTIONS(4979), - [anon_sym_LBRACK_CARET] = ACTIONS(4979), - [sym_uri_autolink] = ACTIONS(4979), - [sym_email_autolink] = ACTIONS(4979), - [sym__whitespace_ge_2] = ACTIONS(4979), - [aux_sym__whitespace_token1] = ACTIONS(4981), - [sym__word_no_digit] = ACTIONS(4979), - [sym__digits] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4979), - [sym__code_span_start] = ACTIONS(4979), - [sym__emphasis_open_star] = ACTIONS(4979), - [sym__emphasis_open_underscore] = ACTIONS(4979), - [sym__strikeout_open] = ACTIONS(4979), - [sym__latex_span_start] = ACTIONS(4979), - [sym__single_quote_open] = ACTIONS(4979), - [sym__double_quote_open] = ACTIONS(4979), - [sym__superscript_open] = ACTIONS(4979), - [sym__subscript_open] = ACTIONS(4979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4979), - [sym__cite_author_in_text] = ACTIONS(4979), - [sym__cite_suppress_author] = ACTIONS(4979), - [sym__shortcode_open_escaped] = ACTIONS(4979), - [sym__shortcode_open] = ACTIONS(4979), - [sym__unclosed_span] = ACTIONS(4979), - [sym__strong_emphasis_open_star] = ACTIONS(4979), - [sym__strong_emphasis_open_underscore] = ACTIONS(4979), - [sym__strong_emphasis_close_underscore] = ACTIONS(4979), + [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__superscript_close] = 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(1128)] = { - [ts_builtin_sym_end] = ACTIONS(4979), - [sym__backslash_escape] = ACTIONS(4979), - [sym_entity_reference] = ACTIONS(4979), - [sym_numeric_character_reference] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_COLON] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), - [sym__newline_token] = ACTIONS(4979), - [aux_sym_insert_token1] = ACTIONS(4979), - [aux_sym_delete_token1] = ACTIONS(4979), - [aux_sym_highlight_token1] = ACTIONS(4979), - [aux_sym_edit_comment_token1] = ACTIONS(4979), - [anon_sym_CARET_LBRACK] = ACTIONS(4979), - [anon_sym_LBRACK_CARET] = ACTIONS(4979), - [sym_uri_autolink] = ACTIONS(4979), - [sym_email_autolink] = ACTIONS(4979), - [sym__whitespace_ge_2] = ACTIONS(4979), - [aux_sym__whitespace_token1] = ACTIONS(4981), - [sym__word_no_digit] = ACTIONS(4979), - [sym__digits] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4979), - [sym__code_span_start] = ACTIONS(4979), - [sym__emphasis_open_star] = ACTIONS(4979), - [sym__emphasis_open_underscore] = ACTIONS(4979), - [sym__strikeout_open] = ACTIONS(4979), - [sym__latex_span_start] = ACTIONS(4979), - [sym__single_quote_open] = ACTIONS(4979), - [sym__double_quote_open] = ACTIONS(4979), - [sym__superscript_open] = ACTIONS(4979), - [sym__subscript_open] = ACTIONS(4979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4979), - [sym__cite_author_in_text] = ACTIONS(4979), - [sym__cite_suppress_author] = ACTIONS(4979), - [sym__shortcode_open_escaped] = ACTIONS(4979), - [sym__shortcode_open] = ACTIONS(4979), - [sym__unclosed_span] = ACTIONS(4979), - [sym__strong_emphasis_open_star] = ACTIONS(4979), - [sym__strong_emphasis_open_underscore] = ACTIONS(4979), + [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(1129)] = { - [sym__backslash_escape] = ACTIONS(4983), - [sym_entity_reference] = ACTIONS(4983), - [sym_numeric_character_reference] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [sym__newline_token] = ACTIONS(4983), - [aux_sym_insert_token1] = ACTIONS(4983), - [aux_sym_delete_token1] = ACTIONS(4983), - [aux_sym_highlight_token1] = ACTIONS(4983), - [aux_sym_edit_comment_token1] = ACTIONS(4983), - [anon_sym_CARET_LBRACK] = ACTIONS(4983), - [anon_sym_LBRACK_CARET] = ACTIONS(4983), - [sym_uri_autolink] = ACTIONS(4983), - [sym_email_autolink] = ACTIONS(4983), - [sym__whitespace_ge_2] = ACTIONS(4983), - [aux_sym__whitespace_token1] = ACTIONS(4985), - [sym__word_no_digit] = ACTIONS(4983), - [sym__digits] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4983), - [sym__code_span_start] = ACTIONS(4983), - [sym__emphasis_open_star] = ACTIONS(4983), - [sym__emphasis_open_underscore] = ACTIONS(4983), - [sym__strikeout_open] = ACTIONS(4983), - [sym__latex_span_start] = ACTIONS(4983), - [sym__single_quote_open] = ACTIONS(4983), - [sym__double_quote_open] = ACTIONS(4983), - [sym__superscript_open] = ACTIONS(4983), - [sym__subscript_open] = ACTIONS(4983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4983), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4983), - [sym__cite_author_in_text] = ACTIONS(4983), - [sym__cite_suppress_author] = ACTIONS(4983), - [sym__shortcode_open_escaped] = ACTIONS(4983), - [sym__shortcode_open] = ACTIONS(4983), - [sym__unclosed_span] = ACTIONS(4983), - [sym__strong_emphasis_open_star] = ACTIONS(4983), - [sym__strong_emphasis_open_underscore] = ACTIONS(4983), - [sym__strong_emphasis_close_underscore] = ACTIONS(4983), + [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(1130)] = { - [sym__backslash_escape] = ACTIONS(4987), - [sym_entity_reference] = ACTIONS(4987), - [sym_numeric_character_reference] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym__newline_token] = ACTIONS(4987), - [aux_sym_insert_token1] = ACTIONS(4987), - [aux_sym_delete_token1] = ACTIONS(4987), - [aux_sym_highlight_token1] = ACTIONS(4987), - [aux_sym_edit_comment_token1] = ACTIONS(4987), - [anon_sym_CARET_LBRACK] = ACTIONS(4987), - [anon_sym_LBRACK_CARET] = ACTIONS(4987), - [sym_uri_autolink] = ACTIONS(4987), - [sym_email_autolink] = ACTIONS(4987), - [sym__whitespace_ge_2] = ACTIONS(4987), - [aux_sym__whitespace_token1] = ACTIONS(4989), - [sym__word_no_digit] = ACTIONS(4987), - [sym__digits] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4987), - [sym__code_span_start] = ACTIONS(4987), - [sym__emphasis_open_star] = ACTIONS(4987), - [sym__emphasis_open_underscore] = ACTIONS(4987), - [sym__strikeout_open] = ACTIONS(4987), - [sym__latex_span_start] = ACTIONS(4987), - [sym__single_quote_open] = ACTIONS(4987), - [sym__double_quote_open] = ACTIONS(4987), - [sym__superscript_open] = ACTIONS(4987), - [sym__subscript_open] = ACTIONS(4987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4987), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4987), - [sym__cite_author_in_text] = ACTIONS(4987), - [sym__cite_suppress_author] = ACTIONS(4987), - [sym__shortcode_open_escaped] = ACTIONS(4987), - [sym__shortcode_open] = ACTIONS(4987), - [sym__unclosed_span] = ACTIONS(4987), - [sym__strong_emphasis_open_star] = ACTIONS(4987), - [sym__strong_emphasis_open_underscore] = ACTIONS(4987), - [sym__strong_emphasis_close_underscore] = ACTIONS(4987), + [ts_builtin_sym_end] = ACTIONS(4247), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(1131)] = { - [sym__backslash_escape] = ACTIONS(5179), - [sym_entity_reference] = ACTIONS(5179), - [sym_numeric_character_reference] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_QMARK] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_BSLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [sym__newline_token] = ACTIONS(5179), - [aux_sym_insert_token1] = ACTIONS(5179), - [aux_sym_delete_token1] = ACTIONS(5179), - [aux_sym_highlight_token1] = ACTIONS(5179), - [aux_sym_edit_comment_token1] = ACTIONS(5179), - [anon_sym_CARET_LBRACK] = ACTIONS(5179), - [anon_sym_LBRACK_CARET] = ACTIONS(5179), - [sym_uri_autolink] = ACTIONS(5179), - [sym_email_autolink] = ACTIONS(5179), - [sym__whitespace_ge_2] = ACTIONS(5179), - [aux_sym__whitespace_token1] = ACTIONS(5181), - [sym__word_no_digit] = ACTIONS(5179), - [sym__digits] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5181), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5179), - [sym__code_span_start] = ACTIONS(5179), - [sym__emphasis_open_star] = ACTIONS(5179), - [sym__emphasis_open_underscore] = ACTIONS(5179), - [sym__strikeout_open] = ACTIONS(5179), - [sym__latex_span_start] = ACTIONS(5179), - [sym__single_quote_open] = ACTIONS(5179), - [sym__double_quote_open] = ACTIONS(5179), - [sym__superscript_open] = ACTIONS(5179), - [sym__subscript_open] = ACTIONS(5179), - [sym__subscript_close] = ACTIONS(5179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5179), - [sym__cite_author_in_text] = ACTIONS(5179), - [sym__cite_suppress_author] = ACTIONS(5179), - [sym__shortcode_open_escaped] = ACTIONS(5179), - [sym__shortcode_open] = ACTIONS(5179), - [sym__unclosed_span] = ACTIONS(5179), - [sym__strong_emphasis_open_star] = ACTIONS(5179), - [sym__strong_emphasis_open_underscore] = ACTIONS(5179), + [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(1132)] = { - [sym__backslash_escape] = ACTIONS(4991), - [sym_entity_reference] = ACTIONS(4991), - [sym_numeric_character_reference] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH] = ACTIONS(4993), - [anon_sym_CARET] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym__newline_token] = ACTIONS(4991), - [aux_sym_insert_token1] = ACTIONS(4991), - [aux_sym_delete_token1] = ACTIONS(4991), - [aux_sym_highlight_token1] = ACTIONS(4991), - [aux_sym_edit_comment_token1] = ACTIONS(4991), - [anon_sym_CARET_LBRACK] = ACTIONS(4991), - [anon_sym_LBRACK_CARET] = ACTIONS(4991), - [sym_uri_autolink] = ACTIONS(4991), - [sym_email_autolink] = ACTIONS(4991), - [sym__whitespace_ge_2] = ACTIONS(4991), - [aux_sym__whitespace_token1] = ACTIONS(4993), - [sym__word_no_digit] = ACTIONS(4991), - [sym__digits] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), - [sym__code_span_start] = ACTIONS(4991), - [sym__emphasis_open_star] = ACTIONS(4991), - [sym__emphasis_open_underscore] = ACTIONS(4991), - [sym__strikeout_open] = ACTIONS(4991), - [sym__latex_span_start] = ACTIONS(4991), - [sym__single_quote_open] = ACTIONS(4991), - [sym__double_quote_open] = ACTIONS(4991), - [sym__superscript_open] = ACTIONS(4991), - [sym__subscript_open] = ACTIONS(4991), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4991), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4991), - [sym__cite_author_in_text] = ACTIONS(4991), - [sym__cite_suppress_author] = ACTIONS(4991), - [sym__shortcode_open_escaped] = ACTIONS(4991), - [sym__shortcode_open] = ACTIONS(4991), - [sym__unclosed_span] = ACTIONS(4991), - [sym__strong_emphasis_open_star] = ACTIONS(4991), - [sym__strong_emphasis_open_underscore] = ACTIONS(4991), - [sym__strong_emphasis_close_underscore] = ACTIONS(4991), + [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(1133)] = { - [sym__backslash_escape] = ACTIONS(4995), - [sym_entity_reference] = ACTIONS(4995), - [sym_numeric_character_reference] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym__newline_token] = ACTIONS(4995), - [aux_sym_insert_token1] = ACTIONS(4995), - [aux_sym_delete_token1] = ACTIONS(4995), - [aux_sym_highlight_token1] = ACTIONS(4995), - [aux_sym_edit_comment_token1] = ACTIONS(4995), - [anon_sym_CARET_LBRACK] = ACTIONS(4995), - [anon_sym_LBRACK_CARET] = ACTIONS(4995), - [sym_uri_autolink] = ACTIONS(4995), - [sym_email_autolink] = ACTIONS(4995), - [sym__whitespace_ge_2] = ACTIONS(4995), - [aux_sym__whitespace_token1] = ACTIONS(4997), - [sym__word_no_digit] = ACTIONS(4995), - [sym__digits] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4995), - [sym__code_span_start] = ACTIONS(4995), - [sym__emphasis_open_star] = ACTIONS(4995), - [sym__emphasis_open_underscore] = ACTIONS(4995), - [sym__strikeout_open] = ACTIONS(4995), - [sym__latex_span_start] = ACTIONS(4995), - [sym__single_quote_open] = ACTIONS(4995), - [sym__double_quote_open] = ACTIONS(4995), - [sym__superscript_open] = ACTIONS(4995), - [sym__subscript_open] = ACTIONS(4995), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4995), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4995), - [sym__cite_author_in_text] = ACTIONS(4995), - [sym__cite_suppress_author] = ACTIONS(4995), - [sym__shortcode_open_escaped] = ACTIONS(4995), - [sym__shortcode_open] = ACTIONS(4995), - [sym__unclosed_span] = ACTIONS(4995), - [sym__strong_emphasis_open_star] = ACTIONS(4995), - [sym__strong_emphasis_open_underscore] = ACTIONS(4995), - [sym__strong_emphasis_close_underscore] = ACTIONS(4995), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_RBRACK] = ACTIONS(4303), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(1134)] = { - [sym__backslash_escape] = ACTIONS(4999), - [sym_entity_reference] = ACTIONS(4999), - [sym_numeric_character_reference] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [sym__newline_token] = ACTIONS(4999), - [aux_sym_insert_token1] = ACTIONS(4999), - [aux_sym_delete_token1] = ACTIONS(4999), - [aux_sym_highlight_token1] = ACTIONS(4999), - [aux_sym_edit_comment_token1] = ACTIONS(4999), - [anon_sym_CARET_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_CARET] = ACTIONS(4999), - [sym_uri_autolink] = ACTIONS(4999), - [sym_email_autolink] = ACTIONS(4999), - [sym__whitespace_ge_2] = ACTIONS(4999), - [aux_sym__whitespace_token1] = ACTIONS(5001), - [sym__word_no_digit] = ACTIONS(4999), - [sym__digits] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4999), - [sym__code_span_start] = ACTIONS(4999), - [sym__emphasis_open_star] = ACTIONS(4999), - [sym__emphasis_open_underscore] = ACTIONS(4999), - [sym__strikeout_open] = ACTIONS(4999), - [sym__latex_span_start] = ACTIONS(4999), - [sym__single_quote_open] = ACTIONS(4999), - [sym__double_quote_open] = ACTIONS(4999), - [sym__superscript_open] = ACTIONS(4999), - [sym__subscript_open] = ACTIONS(4999), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4999), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4999), - [sym__cite_author_in_text] = ACTIONS(4999), - [sym__cite_suppress_author] = ACTIONS(4999), - [sym__shortcode_open_escaped] = ACTIONS(4999), - [sym__shortcode_open] = ACTIONS(4999), - [sym__unclosed_span] = ACTIONS(4999), - [sym__strong_emphasis_open_star] = ACTIONS(4999), - [sym__strong_emphasis_open_underscore] = ACTIONS(4999), - [sym__strong_emphasis_close_underscore] = ACTIONS(4999), + [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(1135)] = { - [sym__backslash_escape] = ACTIONS(5003), - [sym_entity_reference] = ACTIONS(5003), - [sym_numeric_character_reference] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym__newline_token] = ACTIONS(5003), - [aux_sym_insert_token1] = ACTIONS(5003), - [aux_sym_delete_token1] = ACTIONS(5003), - [aux_sym_highlight_token1] = ACTIONS(5003), - [aux_sym_edit_comment_token1] = ACTIONS(5003), - [anon_sym_CARET_LBRACK] = ACTIONS(5003), - [anon_sym_LBRACK_CARET] = ACTIONS(5003), - [sym_uri_autolink] = ACTIONS(5003), - [sym_email_autolink] = ACTIONS(5003), - [sym__whitespace_ge_2] = ACTIONS(5003), - [aux_sym__whitespace_token1] = ACTIONS(5005), - [sym__word_no_digit] = ACTIONS(5003), - [sym__digits] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [sym__code_span_start] = ACTIONS(5003), - [sym__emphasis_open_star] = ACTIONS(5003), - [sym__emphasis_open_underscore] = ACTIONS(5003), - [sym__strikeout_open] = ACTIONS(5003), - [sym__latex_span_start] = ACTIONS(5003), - [sym__single_quote_open] = ACTIONS(5003), - [sym__double_quote_open] = ACTIONS(5003), - [sym__superscript_open] = ACTIONS(5003), - [sym__subscript_open] = ACTIONS(5003), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5003), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5003), - [sym__cite_author_in_text] = ACTIONS(5003), - [sym__cite_suppress_author] = ACTIONS(5003), - [sym__shortcode_open_escaped] = ACTIONS(5003), - [sym__shortcode_open] = ACTIONS(5003), - [sym__unclosed_span] = ACTIONS(5003), - [sym__strong_emphasis_open_star] = ACTIONS(5003), - [sym__strong_emphasis_open_underscore] = ACTIONS(5003), - [sym__strong_emphasis_close_underscore] = ACTIONS(5003), + [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__superscript_close] = 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(1136)] = { - [sym__backslash_escape] = ACTIONS(5011), - [sym_entity_reference] = ACTIONS(5011), - [sym_numeric_character_reference] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_AMP] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym_BQUOTE] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym__newline_token] = ACTIONS(5011), - [aux_sym_insert_token1] = ACTIONS(5011), - [aux_sym_delete_token1] = ACTIONS(5011), - [aux_sym_highlight_token1] = ACTIONS(5011), - [aux_sym_edit_comment_token1] = ACTIONS(5011), - [anon_sym_CARET_LBRACK] = ACTIONS(5011), - [anon_sym_LBRACK_CARET] = ACTIONS(5011), - [sym_uri_autolink] = ACTIONS(5011), - [sym_email_autolink] = ACTIONS(5011), - [sym__whitespace_ge_2] = ACTIONS(5011), - [aux_sym__whitespace_token1] = ACTIONS(5013), - [sym__word_no_digit] = ACTIONS(5011), - [sym__digits] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5011), - [sym__code_span_start] = ACTIONS(5011), - [sym__emphasis_open_star] = ACTIONS(5011), - [sym__emphasis_open_underscore] = ACTIONS(5011), - [sym__strikeout_open] = ACTIONS(5011), - [sym__latex_span_start] = ACTIONS(5011), - [sym__single_quote_open] = ACTIONS(5011), - [sym__double_quote_open] = ACTIONS(5011), - [sym__superscript_open] = ACTIONS(5011), - [sym__subscript_open] = ACTIONS(5011), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5011), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5011), - [sym__cite_author_in_text] = ACTIONS(5011), - [sym__cite_suppress_author] = ACTIONS(5011), - [sym__shortcode_open_escaped] = ACTIONS(5011), - [sym__shortcode_open] = ACTIONS(5011), - [sym__unclosed_span] = ACTIONS(5011), - [sym__strong_emphasis_open_star] = ACTIONS(5011), - [sym__strong_emphasis_open_underscore] = ACTIONS(5011), - [sym__strong_emphasis_close_underscore] = ACTIONS(5011), + [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(1137)] = { - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), - [sym__strong_emphasis_close_underscore] = ACTIONS(4701), + [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_RBRACK] = ACTIONS(4579), + [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__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(1138)] = { - [sym__backslash_escape] = ACTIONS(5015), - [sym_entity_reference] = ACTIONS(5015), - [sym_numeric_character_reference] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym_BQUOTE] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__newline_token] = ACTIONS(5015), - [aux_sym_insert_token1] = ACTIONS(5015), - [aux_sym_delete_token1] = ACTIONS(5015), - [aux_sym_highlight_token1] = ACTIONS(5015), - [aux_sym_edit_comment_token1] = ACTIONS(5015), - [anon_sym_CARET_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_CARET] = ACTIONS(5015), - [sym_uri_autolink] = ACTIONS(5015), - [sym_email_autolink] = ACTIONS(5015), - [sym__whitespace_ge_2] = ACTIONS(5015), - [aux_sym__whitespace_token1] = ACTIONS(5017), - [sym__word_no_digit] = ACTIONS(5015), - [sym__digits] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5015), - [sym__code_span_start] = ACTIONS(5015), - [sym__emphasis_open_star] = ACTIONS(5015), - [sym__emphasis_open_underscore] = ACTIONS(5015), - [sym__strikeout_open] = ACTIONS(5015), - [sym__latex_span_start] = ACTIONS(5015), - [sym__single_quote_open] = ACTIONS(5015), - [sym__double_quote_open] = ACTIONS(5015), - [sym__superscript_open] = ACTIONS(5015), - [sym__subscript_open] = ACTIONS(5015), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5015), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5015), - [sym__cite_author_in_text] = ACTIONS(5015), - [sym__cite_suppress_author] = ACTIONS(5015), - [sym__shortcode_open_escaped] = ACTIONS(5015), - [sym__shortcode_open] = ACTIONS(5015), - [sym__unclosed_span] = ACTIONS(5015), - [sym__strong_emphasis_open_star] = ACTIONS(5015), - [sym__strong_emphasis_open_underscore] = ACTIONS(5015), - [sym__strong_emphasis_close_underscore] = ACTIONS(5015), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__emphasis_close_star] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(1139)] = { - [sym__backslash_escape] = ACTIONS(5019), - [sym_entity_reference] = ACTIONS(5019), - [sym_numeric_character_reference] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_DQUOTE] = ACTIONS(5019), - [anon_sym_POUND] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym__newline_token] = ACTIONS(5019), - [aux_sym_insert_token1] = ACTIONS(5019), - [aux_sym_delete_token1] = ACTIONS(5019), - [aux_sym_highlight_token1] = ACTIONS(5019), - [aux_sym_edit_comment_token1] = ACTIONS(5019), - [anon_sym_CARET_LBRACK] = ACTIONS(5019), - [anon_sym_LBRACK_CARET] = ACTIONS(5019), - [sym_uri_autolink] = ACTIONS(5019), - [sym_email_autolink] = ACTIONS(5019), - [sym__whitespace_ge_2] = ACTIONS(5019), - [aux_sym__whitespace_token1] = ACTIONS(5021), - [sym__word_no_digit] = ACTIONS(5019), - [sym__digits] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [sym__code_span_start] = ACTIONS(5019), - [sym__emphasis_open_star] = ACTIONS(5019), - [sym__emphasis_open_underscore] = ACTIONS(5019), - [sym__strikeout_open] = ACTIONS(5019), - [sym__latex_span_start] = ACTIONS(5019), - [sym__single_quote_open] = ACTIONS(5019), - [sym__double_quote_open] = ACTIONS(5019), - [sym__superscript_open] = ACTIONS(5019), - [sym__subscript_open] = ACTIONS(5019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5019), - [sym__cite_author_in_text] = ACTIONS(5019), - [sym__cite_suppress_author] = ACTIONS(5019), - [sym__shortcode_open_escaped] = ACTIONS(5019), - [sym__shortcode_open] = ACTIONS(5019), - [sym__unclosed_span] = ACTIONS(5019), - [sym__strong_emphasis_open_star] = ACTIONS(5019), - [sym__strong_emphasis_open_underscore] = ACTIONS(5019), - [sym__strong_emphasis_close_underscore] = ACTIONS(5019), + [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(1140)] = { - [sym__backslash_escape] = ACTIONS(5023), - [sym_entity_reference] = ACTIONS(5023), - [sym_numeric_character_reference] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [sym__newline_token] = ACTIONS(5023), - [aux_sym_insert_token1] = ACTIONS(5023), - [aux_sym_delete_token1] = ACTIONS(5023), - [aux_sym_highlight_token1] = ACTIONS(5023), - [aux_sym_edit_comment_token1] = ACTIONS(5023), - [anon_sym_CARET_LBRACK] = ACTIONS(5023), - [anon_sym_LBRACK_CARET] = ACTIONS(5023), - [sym_uri_autolink] = ACTIONS(5023), - [sym_email_autolink] = ACTIONS(5023), - [sym__whitespace_ge_2] = ACTIONS(5023), - [aux_sym__whitespace_token1] = ACTIONS(5025), - [sym__word_no_digit] = ACTIONS(5023), - [sym__digits] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5023), - [sym__code_span_start] = ACTIONS(5023), - [sym__emphasis_open_star] = ACTIONS(5023), - [sym__emphasis_open_underscore] = ACTIONS(5023), - [sym__strikeout_open] = ACTIONS(5023), - [sym__latex_span_start] = ACTIONS(5023), - [sym__single_quote_open] = ACTIONS(5023), - [sym__double_quote_open] = ACTIONS(5023), - [sym__superscript_open] = ACTIONS(5023), - [sym__subscript_open] = ACTIONS(5023), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5023), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5023), - [sym__cite_author_in_text] = ACTIONS(5023), - [sym__cite_suppress_author] = ACTIONS(5023), - [sym__shortcode_open_escaped] = ACTIONS(5023), - [sym__shortcode_open] = ACTIONS(5023), - [sym__unclosed_span] = ACTIONS(5023), - [sym__strong_emphasis_open_star] = ACTIONS(5023), - [sym__strong_emphasis_open_underscore] = ACTIONS(5023), - [sym__strong_emphasis_close_underscore] = ACTIONS(5023), + [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(1141)] = { - [sym__backslash_escape] = ACTIONS(5027), - [sym_entity_reference] = ACTIONS(5027), - [sym_numeric_character_reference] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [sym__newline_token] = ACTIONS(5027), - [aux_sym_insert_token1] = ACTIONS(5027), - [aux_sym_delete_token1] = ACTIONS(5027), - [aux_sym_highlight_token1] = ACTIONS(5027), - [aux_sym_edit_comment_token1] = ACTIONS(5027), - [anon_sym_CARET_LBRACK] = ACTIONS(5027), - [anon_sym_LBRACK_CARET] = ACTIONS(5027), - [sym_uri_autolink] = ACTIONS(5027), - [sym_email_autolink] = ACTIONS(5027), - [sym__whitespace_ge_2] = ACTIONS(5027), - [aux_sym__whitespace_token1] = ACTIONS(5029), - [sym__word_no_digit] = ACTIONS(5027), - [sym__digits] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5027), - [sym__code_span_start] = ACTIONS(5027), - [sym__emphasis_open_star] = ACTIONS(5027), - [sym__emphasis_open_underscore] = ACTIONS(5027), - [sym__strikeout_open] = ACTIONS(5027), - [sym__latex_span_start] = ACTIONS(5027), - [sym__single_quote_open] = ACTIONS(5027), - [sym__double_quote_open] = ACTIONS(5027), - [sym__superscript_open] = ACTIONS(5027), - [sym__subscript_open] = ACTIONS(5027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5027), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5027), - [sym__cite_author_in_text] = ACTIONS(5027), - [sym__cite_suppress_author] = ACTIONS(5027), - [sym__shortcode_open_escaped] = ACTIONS(5027), - [sym__shortcode_open] = ACTIONS(5027), - [sym__unclosed_span] = ACTIONS(5027), - [sym__strong_emphasis_open_star] = ACTIONS(5027), - [sym__strong_emphasis_open_underscore] = ACTIONS(5027), - [sym__strong_emphasis_close_underscore] = ACTIONS(5027), + [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_RBRACK] = ACTIONS(4571), + [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(1142)] = { - [sym__backslash_escape] = ACTIONS(5031), - [sym_entity_reference] = ACTIONS(5031), - [sym_numeric_character_reference] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_BSLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_BQUOTE] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [sym__newline_token] = ACTIONS(5031), - [aux_sym_insert_token1] = ACTIONS(5031), - [aux_sym_delete_token1] = ACTIONS(5031), - [aux_sym_highlight_token1] = ACTIONS(5031), - [aux_sym_edit_comment_token1] = ACTIONS(5031), - [anon_sym_CARET_LBRACK] = ACTIONS(5031), - [anon_sym_LBRACK_CARET] = ACTIONS(5031), - [sym_uri_autolink] = ACTIONS(5031), - [sym_email_autolink] = ACTIONS(5031), - [sym__whitespace_ge_2] = ACTIONS(5031), - [aux_sym__whitespace_token1] = ACTIONS(5033), - [sym__word_no_digit] = ACTIONS(5031), - [sym__digits] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [sym__code_span_start] = ACTIONS(5031), - [sym__emphasis_open_star] = ACTIONS(5031), - [sym__emphasis_open_underscore] = ACTIONS(5031), - [sym__strikeout_open] = ACTIONS(5031), - [sym__latex_span_start] = ACTIONS(5031), - [sym__single_quote_open] = ACTIONS(5031), - [sym__double_quote_open] = ACTIONS(5031), - [sym__superscript_open] = ACTIONS(5031), - [sym__subscript_open] = ACTIONS(5031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5031), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5031), - [sym__cite_author_in_text] = ACTIONS(5031), - [sym__cite_suppress_author] = ACTIONS(5031), - [sym__shortcode_open_escaped] = ACTIONS(5031), - [sym__shortcode_open] = ACTIONS(5031), - [sym__unclosed_span] = ACTIONS(5031), - [sym__strong_emphasis_open_star] = ACTIONS(5031), - [sym__strong_emphasis_open_underscore] = ACTIONS(5031), - [sym__strong_emphasis_close_underscore] = ACTIONS(5031), + [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(1143)] = { - [sym__backslash_escape] = ACTIONS(5035), - [sym_entity_reference] = ACTIONS(5035), - [sym_numeric_character_reference] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_DQUOTE] = ACTIONS(5035), - [anon_sym_POUND] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_BSLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [sym__newline_token] = ACTIONS(5035), - [aux_sym_insert_token1] = ACTIONS(5035), - [aux_sym_delete_token1] = ACTIONS(5035), - [aux_sym_highlight_token1] = ACTIONS(5035), - [aux_sym_edit_comment_token1] = ACTIONS(5035), - [anon_sym_CARET_LBRACK] = ACTIONS(5035), - [anon_sym_LBRACK_CARET] = ACTIONS(5035), - [sym_uri_autolink] = ACTIONS(5035), - [sym_email_autolink] = ACTIONS(5035), - [sym__whitespace_ge_2] = ACTIONS(5035), - [aux_sym__whitespace_token1] = ACTIONS(5037), - [sym__word_no_digit] = ACTIONS(5035), - [sym__digits] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5035), - [sym__code_span_start] = ACTIONS(5035), - [sym__emphasis_open_star] = ACTIONS(5035), - [sym__emphasis_open_underscore] = ACTIONS(5035), - [sym__strikeout_open] = ACTIONS(5035), - [sym__latex_span_start] = ACTIONS(5035), - [sym__single_quote_open] = ACTIONS(5035), - [sym__double_quote_open] = ACTIONS(5035), - [sym__superscript_open] = ACTIONS(5035), - [sym__subscript_open] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5035), - [sym__cite_author_in_text] = ACTIONS(5035), - [sym__cite_suppress_author] = ACTIONS(5035), - [sym__shortcode_open_escaped] = ACTIONS(5035), - [sym__shortcode_open] = ACTIONS(5035), - [sym__unclosed_span] = ACTIONS(5035), - [sym__strong_emphasis_open_star] = ACTIONS(5035), - [sym__strong_emphasis_open_underscore] = ACTIONS(5035), - [sym__strong_emphasis_close_underscore] = ACTIONS(5035), + [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(1144)] = { - [sym__backslash_escape] = ACTIONS(5039), - [sym_entity_reference] = ACTIONS(5039), - [sym_numeric_character_reference] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(5039), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_BSLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [sym__newline_token] = ACTIONS(5039), - [aux_sym_insert_token1] = ACTIONS(5039), - [aux_sym_delete_token1] = ACTIONS(5039), - [aux_sym_highlight_token1] = ACTIONS(5039), - [aux_sym_edit_comment_token1] = ACTIONS(5039), - [anon_sym_CARET_LBRACK] = ACTIONS(5039), - [anon_sym_LBRACK_CARET] = ACTIONS(5039), - [sym_uri_autolink] = ACTIONS(5039), - [sym_email_autolink] = ACTIONS(5039), - [sym__whitespace_ge_2] = ACTIONS(5039), - [aux_sym__whitespace_token1] = ACTIONS(5041), - [sym__word_no_digit] = ACTIONS(5039), - [sym__digits] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5039), - [sym__code_span_start] = ACTIONS(5039), - [sym__emphasis_open_star] = ACTIONS(5039), - [sym__emphasis_open_underscore] = ACTIONS(5039), - [sym__strikeout_open] = ACTIONS(5039), - [sym__latex_span_start] = ACTIONS(5039), - [sym__single_quote_open] = ACTIONS(5039), - [sym__double_quote_open] = ACTIONS(5039), - [sym__superscript_open] = ACTIONS(5039), - [sym__subscript_open] = ACTIONS(5039), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5039), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5039), - [sym__cite_author_in_text] = ACTIONS(5039), - [sym__cite_suppress_author] = ACTIONS(5039), - [sym__shortcode_open_escaped] = ACTIONS(5039), - [sym__shortcode_open] = ACTIONS(5039), - [sym__unclosed_span] = ACTIONS(5039), - [sym__strong_emphasis_open_star] = ACTIONS(5039), - [sym__strong_emphasis_open_underscore] = ACTIONS(5039), - [sym__strong_emphasis_close_underscore] = ACTIONS(5039), + [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(1145)] = { - [sym__backslash_escape] = ACTIONS(5043), - [sym_entity_reference] = ACTIONS(5043), - [sym_numeric_character_reference] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_DQUOTE] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_QMARK] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_BSLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [sym__newline_token] = ACTIONS(5043), - [aux_sym_insert_token1] = ACTIONS(5043), - [aux_sym_delete_token1] = ACTIONS(5043), - [aux_sym_highlight_token1] = ACTIONS(5043), - [aux_sym_edit_comment_token1] = ACTIONS(5043), - [anon_sym_CARET_LBRACK] = ACTIONS(5043), - [anon_sym_LBRACK_CARET] = ACTIONS(5043), - [sym_uri_autolink] = ACTIONS(5043), - [sym_email_autolink] = ACTIONS(5043), - [sym__whitespace_ge_2] = ACTIONS(5043), - [aux_sym__whitespace_token1] = ACTIONS(5045), - [sym__word_no_digit] = ACTIONS(5043), - [sym__digits] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), - [sym__code_span_start] = ACTIONS(5043), - [sym__emphasis_open_star] = ACTIONS(5043), - [sym__emphasis_open_underscore] = ACTIONS(5043), - [sym__strikeout_open] = ACTIONS(5043), - [sym__latex_span_start] = ACTIONS(5043), - [sym__single_quote_open] = ACTIONS(5043), - [sym__double_quote_open] = ACTIONS(5043), - [sym__superscript_open] = ACTIONS(5043), - [sym__subscript_open] = ACTIONS(5043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5043), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5043), - [sym__cite_author_in_text] = ACTIONS(5043), - [sym__cite_suppress_author] = ACTIONS(5043), - [sym__shortcode_open_escaped] = ACTIONS(5043), - [sym__shortcode_open] = ACTIONS(5043), - [sym__unclosed_span] = ACTIONS(5043), - [sym__strong_emphasis_open_star] = ACTIONS(5043), - [sym__strong_emphasis_open_underscore] = ACTIONS(5043), - [sym__strong_emphasis_close_underscore] = ACTIONS(5043), + [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(1146)] = { - [sym__backslash_escape] = ACTIONS(5047), - [sym_entity_reference] = ACTIONS(5047), - [sym_numeric_character_reference] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(5047), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [sym__newline_token] = ACTIONS(5047), - [aux_sym_insert_token1] = ACTIONS(5047), - [aux_sym_delete_token1] = ACTIONS(5047), - [aux_sym_highlight_token1] = ACTIONS(5047), - [aux_sym_edit_comment_token1] = ACTIONS(5047), - [anon_sym_CARET_LBRACK] = ACTIONS(5047), - [anon_sym_LBRACK_CARET] = ACTIONS(5047), - [sym_uri_autolink] = ACTIONS(5047), - [sym_email_autolink] = ACTIONS(5047), - [sym__whitespace_ge_2] = ACTIONS(5047), - [aux_sym__whitespace_token1] = ACTIONS(5049), - [sym__word_no_digit] = ACTIONS(5047), - [sym__digits] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5047), - [sym__code_span_start] = ACTIONS(5047), - [sym__emphasis_open_star] = ACTIONS(5047), - [sym__emphasis_open_underscore] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5047), - [sym__latex_span_start] = ACTIONS(5047), - [sym__single_quote_open] = ACTIONS(5047), - [sym__double_quote_open] = ACTIONS(5047), - [sym__superscript_open] = ACTIONS(5047), - [sym__subscript_open] = ACTIONS(5047), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5047), - [sym__cite_author_in_text] = ACTIONS(5047), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__shortcode_open_escaped] = ACTIONS(5047), - [sym__shortcode_open] = ACTIONS(5047), - [sym__unclosed_span] = ACTIONS(5047), - [sym__strong_emphasis_open_star] = ACTIONS(5047), - [sym__strong_emphasis_open_underscore] = ACTIONS(5047), - [sym__strong_emphasis_close_underscore] = ACTIONS(5047), + [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), + [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(1147)] = { - [sym__backslash_escape] = ACTIONS(5051), - [sym_entity_reference] = ACTIONS(5051), - [sym_numeric_character_reference] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_BSLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [sym__newline_token] = ACTIONS(5051), - [aux_sym_insert_token1] = ACTIONS(5051), - [aux_sym_delete_token1] = ACTIONS(5051), - [aux_sym_highlight_token1] = ACTIONS(5051), - [aux_sym_edit_comment_token1] = ACTIONS(5051), - [anon_sym_CARET_LBRACK] = ACTIONS(5051), - [anon_sym_LBRACK_CARET] = ACTIONS(5051), - [sym_uri_autolink] = ACTIONS(5051), - [sym_email_autolink] = ACTIONS(5051), - [sym__whitespace_ge_2] = ACTIONS(5051), - [aux_sym__whitespace_token1] = ACTIONS(5053), - [sym__word_no_digit] = ACTIONS(5051), - [sym__digits] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5051), - [sym__code_span_start] = ACTIONS(5051), - [sym__emphasis_open_star] = ACTIONS(5051), - [sym__emphasis_open_underscore] = ACTIONS(5051), - [sym__strikeout_open] = ACTIONS(5051), - [sym__latex_span_start] = ACTIONS(5051), - [sym__single_quote_open] = ACTIONS(5051), - [sym__double_quote_open] = ACTIONS(5051), - [sym__superscript_open] = ACTIONS(5051), - [sym__subscript_open] = ACTIONS(5051), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5051), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5051), - [sym__cite_author_in_text] = ACTIONS(5051), - [sym__cite_suppress_author] = ACTIONS(5051), - [sym__shortcode_open_escaped] = ACTIONS(5051), - [sym__shortcode_open] = ACTIONS(5051), - [sym__unclosed_span] = ACTIONS(5051), - [sym__strong_emphasis_open_star] = ACTIONS(5051), - [sym__strong_emphasis_open_underscore] = ACTIONS(5051), - [sym__strong_emphasis_close_underscore] = ACTIONS(5051), + [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_RBRACK] = ACTIONS(4607), + [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(1148)] = { - [sym__backslash_escape] = ACTIONS(5055), - [sym_entity_reference] = ACTIONS(5055), - [sym_numeric_character_reference] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(5055), - [anon_sym_POUND] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_BSLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_BQUOTE] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [sym__newline_token] = ACTIONS(5055), - [aux_sym_insert_token1] = ACTIONS(5055), - [aux_sym_delete_token1] = ACTIONS(5055), - [aux_sym_highlight_token1] = ACTIONS(5055), - [aux_sym_edit_comment_token1] = ACTIONS(5055), - [anon_sym_CARET_LBRACK] = ACTIONS(5055), - [anon_sym_LBRACK_CARET] = ACTIONS(5055), - [sym_uri_autolink] = ACTIONS(5055), - [sym_email_autolink] = ACTIONS(5055), - [sym__whitespace_ge_2] = ACTIONS(5055), - [aux_sym__whitespace_token1] = ACTIONS(5057), - [sym__word_no_digit] = ACTIONS(5055), - [sym__digits] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5055), - [sym__code_span_start] = ACTIONS(5055), - [sym__emphasis_open_star] = ACTIONS(5055), - [sym__emphasis_open_underscore] = ACTIONS(5055), - [sym__strikeout_open] = ACTIONS(5055), - [sym__latex_span_start] = ACTIONS(5055), - [sym__single_quote_open] = ACTIONS(5055), - [sym__double_quote_open] = ACTIONS(5055), - [sym__superscript_open] = ACTIONS(5055), - [sym__subscript_open] = ACTIONS(5055), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5055), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5055), - [sym__cite_author_in_text] = ACTIONS(5055), - [sym__cite_suppress_author] = ACTIONS(5055), - [sym__shortcode_open_escaped] = ACTIONS(5055), - [sym__shortcode_open] = ACTIONS(5055), - [sym__unclosed_span] = ACTIONS(5055), - [sym__strong_emphasis_open_star] = ACTIONS(5055), - [sym__strong_emphasis_open_underscore] = ACTIONS(5055), - [sym__strong_emphasis_close_underscore] = ACTIONS(5055), + [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(1149)] = { - [sym__backslash_escape] = ACTIONS(5059), - [sym_entity_reference] = ACTIONS(5059), - [sym_numeric_character_reference] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_DQUOTE] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_BSLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [sym__newline_token] = ACTIONS(5059), - [aux_sym_insert_token1] = ACTIONS(5059), - [aux_sym_delete_token1] = ACTIONS(5059), - [aux_sym_highlight_token1] = ACTIONS(5059), - [aux_sym_edit_comment_token1] = ACTIONS(5059), - [anon_sym_CARET_LBRACK] = ACTIONS(5059), - [anon_sym_LBRACK_CARET] = ACTIONS(5059), - [sym_uri_autolink] = ACTIONS(5059), - [sym_email_autolink] = ACTIONS(5059), - [sym__whitespace_ge_2] = ACTIONS(5059), - [aux_sym__whitespace_token1] = ACTIONS(5061), - [sym__word_no_digit] = ACTIONS(5059), - [sym__digits] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5059), - [sym__code_span_start] = ACTIONS(5059), - [sym__emphasis_open_star] = ACTIONS(5059), - [sym__emphasis_open_underscore] = ACTIONS(5059), - [sym__strikeout_open] = ACTIONS(5059), - [sym__latex_span_start] = ACTIONS(5059), - [sym__single_quote_open] = ACTIONS(5059), - [sym__double_quote_open] = ACTIONS(5059), - [sym__superscript_open] = ACTIONS(5059), - [sym__subscript_open] = ACTIONS(5059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5059), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5059), - [sym__cite_author_in_text] = ACTIONS(5059), - [sym__cite_suppress_author] = ACTIONS(5059), - [sym__shortcode_open_escaped] = ACTIONS(5059), - [sym__shortcode_open] = ACTIONS(5059), - [sym__unclosed_span] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5059), - [sym__strong_emphasis_open_underscore] = ACTIONS(5059), - [sym__strong_emphasis_close_underscore] = ACTIONS(5059), + [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_RBRACK] = ACTIONS(4611), + [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(1150)] = { - [sym__backslash_escape] = ACTIONS(5063), - [sym_entity_reference] = ACTIONS(5063), - [sym_numeric_character_reference] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_BSLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_BQUOTE] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [sym__newline_token] = ACTIONS(5063), - [aux_sym_insert_token1] = ACTIONS(5063), - [aux_sym_delete_token1] = ACTIONS(5063), - [aux_sym_highlight_token1] = ACTIONS(5063), - [aux_sym_edit_comment_token1] = ACTIONS(5063), - [anon_sym_CARET_LBRACK] = ACTIONS(5063), - [anon_sym_LBRACK_CARET] = ACTIONS(5063), - [sym_uri_autolink] = ACTIONS(5063), - [sym_email_autolink] = ACTIONS(5063), - [sym__whitespace_ge_2] = ACTIONS(5063), - [aux_sym__whitespace_token1] = ACTIONS(5065), - [sym__word_no_digit] = ACTIONS(5063), - [sym__digits] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5063), - [sym__code_span_start] = ACTIONS(5063), - [sym__emphasis_open_star] = ACTIONS(5063), - [sym__emphasis_open_underscore] = ACTIONS(5063), - [sym__strikeout_open] = ACTIONS(5063), - [sym__latex_span_start] = ACTIONS(5063), - [sym__single_quote_open] = ACTIONS(5063), - [sym__double_quote_open] = ACTIONS(5063), - [sym__superscript_open] = ACTIONS(5063), - [sym__subscript_open] = ACTIONS(5063), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5063), - [sym__cite_author_in_text] = ACTIONS(5063), - [sym__cite_suppress_author] = ACTIONS(5063), - [sym__shortcode_open_escaped] = ACTIONS(5063), - [sym__shortcode_open] = ACTIONS(5063), - [sym__unclosed_span] = ACTIONS(5063), - [sym__strong_emphasis_open_star] = ACTIONS(5063), - [sym__strong_emphasis_open_underscore] = ACTIONS(5063), - [sym__strong_emphasis_close_underscore] = ACTIONS(5063), + [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_RBRACK] = ACTIONS(4615), + [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(1151)] = { - [sym__backslash_escape] = ACTIONS(5067), - [sym_entity_reference] = ACTIONS(5067), - [sym_numeric_character_reference] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DQUOTE] = ACTIONS(5067), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_COLON] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [sym__newline_token] = ACTIONS(5067), - [aux_sym_insert_token1] = ACTIONS(5067), - [aux_sym_delete_token1] = ACTIONS(5067), - [aux_sym_highlight_token1] = ACTIONS(5067), - [aux_sym_edit_comment_token1] = ACTIONS(5067), - [anon_sym_CARET_LBRACK] = ACTIONS(5067), - [anon_sym_LBRACK_CARET] = ACTIONS(5067), - [sym_uri_autolink] = ACTIONS(5067), - [sym_email_autolink] = ACTIONS(5067), - [sym__whitespace_ge_2] = ACTIONS(5067), - [aux_sym__whitespace_token1] = ACTIONS(5069), - [sym__word_no_digit] = ACTIONS(5067), - [sym__digits] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5067), - [sym__code_span_start] = ACTIONS(5067), - [sym__emphasis_open_star] = ACTIONS(5067), - [sym__emphasis_open_underscore] = ACTIONS(5067), - [sym__strikeout_open] = ACTIONS(5067), - [sym__latex_span_start] = ACTIONS(5067), - [sym__single_quote_open] = ACTIONS(5067), - [sym__double_quote_open] = ACTIONS(5067), - [sym__superscript_open] = ACTIONS(5067), - [sym__subscript_open] = ACTIONS(5067), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5067), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5067), - [sym__cite_author_in_text] = ACTIONS(5067), - [sym__cite_suppress_author] = ACTIONS(5067), - [sym__shortcode_open_escaped] = ACTIONS(5067), - [sym__shortcode_open] = ACTIONS(5067), - [sym__unclosed_span] = ACTIONS(5067), - [sym__strong_emphasis_open_star] = ACTIONS(5067), - [sym__strong_emphasis_open_underscore] = ACTIONS(5067), - [sym__strong_emphasis_close_underscore] = ACTIONS(5067), + [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_close_star] = ACTIONS(4619), + [sym__strong_emphasis_open_underscore] = ACTIONS(4619), }, [STATE(1152)] = { - [sym__backslash_escape] = ACTIONS(5071), - [sym_entity_reference] = ACTIONS(5071), - [sym_numeric_character_reference] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_POUND] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [sym__newline_token] = ACTIONS(5071), - [aux_sym_insert_token1] = ACTIONS(5071), - [aux_sym_delete_token1] = ACTIONS(5071), - [aux_sym_highlight_token1] = ACTIONS(5071), - [aux_sym_edit_comment_token1] = ACTIONS(5071), - [anon_sym_CARET_LBRACK] = ACTIONS(5071), - [anon_sym_LBRACK_CARET] = ACTIONS(5071), - [sym_uri_autolink] = ACTIONS(5071), - [sym_email_autolink] = ACTIONS(5071), - [sym__whitespace_ge_2] = ACTIONS(5071), - [aux_sym__whitespace_token1] = ACTIONS(5073), - [sym__word_no_digit] = ACTIONS(5071), - [sym__digits] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5071), - [sym__code_span_start] = ACTIONS(5071), - [sym__emphasis_open_star] = ACTIONS(5071), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym__strikeout_open] = ACTIONS(5071), - [sym__latex_span_start] = ACTIONS(5071), - [sym__single_quote_open] = ACTIONS(5071), - [sym__double_quote_open] = ACTIONS(5071), - [sym__superscript_open] = ACTIONS(5071), - [sym__subscript_open] = ACTIONS(5071), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5071), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5071), - [sym__cite_author_in_text] = ACTIONS(5071), - [sym__cite_suppress_author] = ACTIONS(5071), - [sym__shortcode_open_escaped] = ACTIONS(5071), - [sym__shortcode_open] = ACTIONS(5071), - [sym__unclosed_span] = ACTIONS(5071), - [sym__strong_emphasis_open_star] = ACTIONS(5071), - [sym__strong_emphasis_open_underscore] = ACTIONS(5071), - [sym__strong_emphasis_close_underscore] = ACTIONS(5071), + [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_RBRACK] = ACTIONS(4623), + [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(1153)] = { - [sym__backslash_escape] = ACTIONS(5075), - [sym_entity_reference] = ACTIONS(5075), - [sym_numeric_character_reference] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_QMARK] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_BSLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [sym__newline_token] = ACTIONS(5075), - [aux_sym_insert_token1] = ACTIONS(5075), - [aux_sym_delete_token1] = ACTIONS(5075), - [aux_sym_highlight_token1] = ACTIONS(5075), - [aux_sym_edit_comment_token1] = ACTIONS(5075), - [anon_sym_CARET_LBRACK] = ACTIONS(5075), - [anon_sym_LBRACK_CARET] = ACTIONS(5075), - [sym_uri_autolink] = ACTIONS(5075), - [sym_email_autolink] = ACTIONS(5075), - [sym__whitespace_ge_2] = ACTIONS(5075), - [aux_sym__whitespace_token1] = ACTIONS(5077), - [sym__word_no_digit] = ACTIONS(5075), - [sym__digits] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5075), - [sym__code_span_start] = ACTIONS(5075), - [sym__emphasis_open_star] = ACTIONS(5075), - [sym__emphasis_open_underscore] = ACTIONS(5075), - [sym__strikeout_open] = ACTIONS(5075), - [sym__latex_span_start] = ACTIONS(5075), - [sym__single_quote_open] = ACTIONS(5075), - [sym__double_quote_open] = ACTIONS(5075), - [sym__superscript_open] = ACTIONS(5075), - [sym__subscript_open] = ACTIONS(5075), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5075), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5075), - [sym__cite_author_in_text] = ACTIONS(5075), - [sym__cite_suppress_author] = ACTIONS(5075), - [sym__shortcode_open_escaped] = ACTIONS(5075), - [sym__shortcode_open] = ACTIONS(5075), - [sym__unclosed_span] = ACTIONS(5075), - [sym__strong_emphasis_open_star] = ACTIONS(5075), - [sym__strong_emphasis_open_underscore] = ACTIONS(5075), - [sym__strong_emphasis_close_underscore] = ACTIONS(5075), + [sym__backslash_escape] = ACTIONS(4495), + [sym_entity_reference] = ACTIONS(4495), + [sym_numeric_character_reference] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_QMARK] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_BSLASH] = ACTIONS(4497), + [anon_sym_RBRACK] = ACTIONS(4495), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_BQUOTE] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [sym__newline_token] = ACTIONS(4495), + [aux_sym_insert_token1] = ACTIONS(4495), + [aux_sym_delete_token1] = ACTIONS(4495), + [aux_sym_highlight_token1] = ACTIONS(4495), + [aux_sym_edit_comment_token1] = ACTIONS(4495), + [anon_sym_CARET_LBRACK] = ACTIONS(4495), + [anon_sym_LBRACK_CARET] = ACTIONS(4495), + [sym_uri_autolink] = ACTIONS(4495), + [sym_email_autolink] = ACTIONS(4495), + [sym__whitespace_ge_2] = ACTIONS(4495), + [aux_sym__whitespace_token1] = ACTIONS(4497), + [sym__word_no_digit] = ACTIONS(4495), + [sym__digits] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4495), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(4495), + [sym__emphasis_open_underscore] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4495), + [sym__latex_span_start] = ACTIONS(4495), + [sym__single_quote_open] = ACTIONS(4495), + [sym__double_quote_open] = ACTIONS(4495), + [sym__superscript_open] = ACTIONS(4495), + [sym__subscript_open] = ACTIONS(4495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4495), + [sym__cite_author_in_text] = ACTIONS(4495), + [sym__cite_suppress_author] = ACTIONS(4495), + [sym__shortcode_open_escaped] = ACTIONS(4495), + [sym__shortcode_open] = ACTIONS(4495), + [sym__unclosed_span] = ACTIONS(4495), + [sym__strong_emphasis_open_star] = ACTIONS(4495), + [sym__strong_emphasis_open_underscore] = ACTIONS(4495), }, [STATE(1154)] = { - [sym__backslash_escape] = ACTIONS(5079), - [sym_entity_reference] = ACTIONS(5079), - [sym_numeric_character_reference] = ACTIONS(5079), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_DQUOTE] = ACTIONS(5079), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_QMARK] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BSLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5079), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [sym__newline_token] = ACTIONS(5079), - [aux_sym_insert_token1] = ACTIONS(5079), - [aux_sym_delete_token1] = ACTIONS(5079), - [aux_sym_highlight_token1] = ACTIONS(5079), - [aux_sym_edit_comment_token1] = ACTIONS(5079), - [anon_sym_CARET_LBRACK] = ACTIONS(5079), - [anon_sym_LBRACK_CARET] = ACTIONS(5079), - [sym_uri_autolink] = ACTIONS(5079), - [sym_email_autolink] = ACTIONS(5079), - [sym__whitespace_ge_2] = ACTIONS(5079), - [aux_sym__whitespace_token1] = ACTIONS(5081), - [sym__word_no_digit] = ACTIONS(5079), - [sym__digits] = ACTIONS(5079), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5079), - [sym__code_span_start] = ACTIONS(5079), - [sym__emphasis_open_star] = ACTIONS(5079), - [sym__emphasis_open_underscore] = ACTIONS(5079), - [sym__strikeout_open] = ACTIONS(5079), - [sym__latex_span_start] = ACTIONS(5079), - [sym__single_quote_open] = ACTIONS(5079), - [sym__double_quote_open] = ACTIONS(5079), - [sym__superscript_open] = ACTIONS(5079), - [sym__subscript_open] = ACTIONS(5079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5079), - [sym__cite_author_in_text] = ACTIONS(5079), - [sym__cite_suppress_author] = ACTIONS(5079), - [sym__shortcode_open_escaped] = ACTIONS(5079), - [sym__shortcode_open] = ACTIONS(5079), - [sym__unclosed_span] = ACTIONS(5079), - [sym__strong_emphasis_open_star] = ACTIONS(5079), - [sym__strong_emphasis_open_underscore] = ACTIONS(5079), - [sym__strong_emphasis_close_underscore] = ACTIONS(5079), + [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(1155)] = { - [sym__backslash_escape] = ACTIONS(5083), - [sym_entity_reference] = ACTIONS(5083), - [sym_numeric_character_reference] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOT] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_QMARK] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_BSLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym_BQUOTE] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [sym__newline_token] = ACTIONS(5083), - [aux_sym_insert_token1] = ACTIONS(5083), - [aux_sym_delete_token1] = ACTIONS(5083), - [aux_sym_highlight_token1] = ACTIONS(5083), - [aux_sym_edit_comment_token1] = ACTIONS(5083), - [anon_sym_CARET_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_CARET] = ACTIONS(5083), - [sym_uri_autolink] = ACTIONS(5083), - [sym_email_autolink] = ACTIONS(5083), - [sym__whitespace_ge_2] = ACTIONS(5083), - [aux_sym__whitespace_token1] = ACTIONS(5085), - [sym__word_no_digit] = ACTIONS(5083), - [sym__digits] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5083), - [sym__code_span_start] = ACTIONS(5083), - [sym__emphasis_open_star] = ACTIONS(5083), - [sym__emphasis_open_underscore] = ACTIONS(5083), - [sym__strikeout_open] = ACTIONS(5083), - [sym__latex_span_start] = ACTIONS(5083), - [sym__single_quote_open] = ACTIONS(5083), - [sym__double_quote_open] = ACTIONS(5083), - [sym__superscript_open] = ACTIONS(5083), - [sym__subscript_open] = ACTIONS(5083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5083), - [sym__cite_author_in_text] = ACTIONS(5083), - [sym__cite_suppress_author] = ACTIONS(5083), - [sym__shortcode_open_escaped] = ACTIONS(5083), - [sym__shortcode_open] = ACTIONS(5083), - [sym__unclosed_span] = ACTIONS(5083), - [sym__strong_emphasis_open_star] = ACTIONS(5083), - [sym__strong_emphasis_open_underscore] = ACTIONS(5083), - [sym__strong_emphasis_close_underscore] = ACTIONS(5083), + [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_RBRACK] = ACTIONS(4583), + [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(1156)] = { - [sym__backslash_escape] = ACTIONS(5087), - [sym_entity_reference] = ACTIONS(5087), - [sym_numeric_character_reference] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_DQUOTE] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_AMP] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_QMARK] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym_BQUOTE] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_PIPE] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [sym__newline_token] = ACTIONS(5087), - [aux_sym_insert_token1] = ACTIONS(5087), - [aux_sym_delete_token1] = ACTIONS(5087), - [aux_sym_highlight_token1] = ACTIONS(5087), - [aux_sym_edit_comment_token1] = ACTIONS(5087), - [anon_sym_CARET_LBRACK] = ACTIONS(5087), - [anon_sym_LBRACK_CARET] = ACTIONS(5087), - [sym_uri_autolink] = ACTIONS(5087), - [sym_email_autolink] = ACTIONS(5087), - [sym__whitespace_ge_2] = ACTIONS(5087), - [aux_sym__whitespace_token1] = ACTIONS(5089), - [sym__word_no_digit] = ACTIONS(5087), - [sym__digits] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5087), - [sym__code_span_start] = ACTIONS(5087), - [sym__emphasis_open_star] = ACTIONS(5087), - [sym__emphasis_open_underscore] = ACTIONS(5087), - [sym__strikeout_open] = ACTIONS(5087), - [sym__latex_span_start] = ACTIONS(5087), - [sym__single_quote_open] = ACTIONS(5087), - [sym__double_quote_open] = ACTIONS(5087), - [sym__superscript_open] = ACTIONS(5087), - [sym__subscript_open] = ACTIONS(5087), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5087), - [sym__cite_author_in_text] = ACTIONS(5087), - [sym__cite_suppress_author] = ACTIONS(5087), - [sym__shortcode_open_escaped] = ACTIONS(5087), - [sym__shortcode_open] = ACTIONS(5087), - [sym__unclosed_span] = ACTIONS(5087), - [sym__strong_emphasis_open_star] = ACTIONS(5087), - [sym__strong_emphasis_open_underscore] = ACTIONS(5087), - [sym__strong_emphasis_close_underscore] = ACTIONS(5087), + [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__superscript_close] = 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(1157)] = { - [ts_builtin_sym_end] = ACTIONS(4681), - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [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_close_star] = ACTIONS(4627), + [sym__strong_emphasis_open_underscore] = ACTIONS(4627), }, [STATE(1158)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), - [sym__strong_emphasis_close_underscore] = ACTIONS(4797), - }, - [STATE(1159)] = { - [sym__backslash_escape] = ACTIONS(5091), - [sym_entity_reference] = ACTIONS(5091), - [sym_numeric_character_reference] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(5091), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_BSLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym_BQUOTE] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [sym__newline_token] = ACTIONS(5091), - [aux_sym_insert_token1] = ACTIONS(5091), - [aux_sym_delete_token1] = ACTIONS(5091), - [aux_sym_highlight_token1] = ACTIONS(5091), - [aux_sym_edit_comment_token1] = ACTIONS(5091), - [anon_sym_CARET_LBRACK] = ACTIONS(5091), - [anon_sym_LBRACK_CARET] = ACTIONS(5091), - [sym_uri_autolink] = ACTIONS(5091), - [sym_email_autolink] = ACTIONS(5091), - [sym__whitespace_ge_2] = ACTIONS(5091), - [aux_sym__whitespace_token1] = ACTIONS(5093), - [sym__word_no_digit] = ACTIONS(5091), - [sym__digits] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), - [sym__code_span_start] = ACTIONS(5091), - [sym__emphasis_open_star] = ACTIONS(5091), - [sym__emphasis_open_underscore] = ACTIONS(5091), - [sym__strikeout_open] = ACTIONS(5091), - [sym__latex_span_start] = ACTIONS(5091), - [sym__single_quote_open] = ACTIONS(5091), - [sym__double_quote_open] = ACTIONS(5091), - [sym__superscript_open] = ACTIONS(5091), - [sym__subscript_open] = ACTIONS(5091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5091), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5091), - [sym__cite_author_in_text] = ACTIONS(5091), - [sym__cite_suppress_author] = ACTIONS(5091), - [sym__shortcode_open_escaped] = ACTIONS(5091), - [sym__shortcode_open] = ACTIONS(5091), - [sym__unclosed_span] = ACTIONS(5091), - [sym__strong_emphasis_open_star] = ACTIONS(5091), - [sym__strong_emphasis_open_underscore] = ACTIONS(5091), - [sym__strong_emphasis_close_underscore] = ACTIONS(5091), - }, - [STATE(1160)] = { - [ts_builtin_sym_end] = ACTIONS(4625), - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), - }, - [STATE(1161)] = { - [sym__backslash_escape] = ACTIONS(5095), - [sym_entity_reference] = ACTIONS(5095), - [sym_numeric_character_reference] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_BSLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym_BQUOTE] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [sym__newline_token] = ACTIONS(5095), - [aux_sym_insert_token1] = ACTIONS(5095), - [aux_sym_delete_token1] = ACTIONS(5095), - [aux_sym_highlight_token1] = ACTIONS(5095), - [aux_sym_edit_comment_token1] = ACTIONS(5095), - [anon_sym_CARET_LBRACK] = ACTIONS(5095), - [anon_sym_LBRACK_CARET] = ACTIONS(5095), - [sym_uri_autolink] = ACTIONS(5095), - [sym_email_autolink] = ACTIONS(5095), - [sym__whitespace_ge_2] = ACTIONS(5095), - [aux_sym__whitespace_token1] = ACTIONS(5097), - [sym__word_no_digit] = ACTIONS(5095), - [sym__digits] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5095), - [sym__code_span_start] = ACTIONS(5095), - [sym__emphasis_open_star] = ACTIONS(5095), - [sym__emphasis_open_underscore] = ACTIONS(5095), - [sym__strikeout_open] = ACTIONS(5095), - [sym__latex_span_start] = ACTIONS(5095), - [sym__single_quote_open] = ACTIONS(5095), - [sym__double_quote_open] = ACTIONS(5095), - [sym__superscript_open] = ACTIONS(5095), - [sym__subscript_open] = ACTIONS(5095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5095), - [sym__cite_author_in_text] = ACTIONS(5095), - [sym__cite_suppress_author] = ACTIONS(5095), - [sym__shortcode_open_escaped] = ACTIONS(5095), - [sym__shortcode_open] = ACTIONS(5095), - [sym__unclosed_span] = ACTIONS(5095), - [sym__strong_emphasis_open_star] = ACTIONS(5095), - [sym__strong_emphasis_open_underscore] = ACTIONS(5095), - [sym__strong_emphasis_close_underscore] = ACTIONS(5095), - }, - [STATE(1162)] = { - [sym__backslash_escape] = ACTIONS(5099), - [sym_entity_reference] = ACTIONS(5099), - [sym_numeric_character_reference] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [sym__newline_token] = ACTIONS(5099), - [aux_sym_insert_token1] = ACTIONS(5099), - [aux_sym_delete_token1] = ACTIONS(5099), - [aux_sym_highlight_token1] = ACTIONS(5099), - [aux_sym_edit_comment_token1] = ACTIONS(5099), - [anon_sym_CARET_LBRACK] = ACTIONS(5099), - [anon_sym_LBRACK_CARET] = ACTIONS(5099), - [sym_uri_autolink] = ACTIONS(5099), - [sym_email_autolink] = ACTIONS(5099), - [sym__whitespace_ge_2] = ACTIONS(5099), - [aux_sym__whitespace_token1] = ACTIONS(5101), - [sym__word_no_digit] = ACTIONS(5099), - [sym__digits] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5099), - [sym__code_span_start] = ACTIONS(5099), - [sym__emphasis_open_star] = ACTIONS(5099), - [sym__emphasis_open_underscore] = ACTIONS(5099), - [sym__strikeout_open] = ACTIONS(5099), - [sym__latex_span_start] = ACTIONS(5099), - [sym__single_quote_open] = ACTIONS(5099), - [sym__double_quote_open] = ACTIONS(5099), - [sym__superscript_open] = ACTIONS(5099), - [sym__subscript_open] = ACTIONS(5099), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5099), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5099), - [sym__cite_author_in_text] = ACTIONS(5099), - [sym__cite_suppress_author] = ACTIONS(5099), - [sym__shortcode_open_escaped] = ACTIONS(5099), - [sym__shortcode_open] = ACTIONS(5099), - [sym__unclosed_span] = ACTIONS(5099), - [sym__strong_emphasis_open_star] = ACTIONS(5099), - [sym__strong_emphasis_open_underscore] = ACTIONS(5099), - [sym__strong_emphasis_close_underscore] = ACTIONS(5099), - }, - [STATE(1163)] = { - [sym__backslash_escape] = ACTIONS(5103), - [sym_entity_reference] = ACTIONS(5103), - [sym_numeric_character_reference] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(5103), - [anon_sym_POUND] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_BSLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [sym__newline_token] = ACTIONS(5103), - [aux_sym_insert_token1] = ACTIONS(5103), - [aux_sym_delete_token1] = ACTIONS(5103), - [aux_sym_highlight_token1] = ACTIONS(5103), - [aux_sym_edit_comment_token1] = ACTIONS(5103), - [anon_sym_CARET_LBRACK] = ACTIONS(5103), - [anon_sym_LBRACK_CARET] = ACTIONS(5103), - [sym_uri_autolink] = ACTIONS(5103), - [sym_email_autolink] = ACTIONS(5103), - [sym__whitespace_ge_2] = ACTIONS(5103), - [aux_sym__whitespace_token1] = ACTIONS(5105), - [sym__word_no_digit] = ACTIONS(5103), - [sym__digits] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5103), - [sym__code_span_start] = ACTIONS(5103), - [sym__emphasis_open_star] = ACTIONS(5103), - [sym__emphasis_open_underscore] = ACTIONS(5103), - [sym__strikeout_open] = ACTIONS(5103), - [sym__latex_span_start] = ACTIONS(5103), - [sym__single_quote_open] = ACTIONS(5103), - [sym__double_quote_open] = ACTIONS(5103), - [sym__superscript_open] = ACTIONS(5103), - [sym__subscript_open] = ACTIONS(5103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5103), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5103), - [sym__cite_author_in_text] = ACTIONS(5103), - [sym__cite_suppress_author] = ACTIONS(5103), - [sym__shortcode_open_escaped] = ACTIONS(5103), - [sym__shortcode_open] = ACTIONS(5103), - [sym__unclosed_span] = ACTIONS(5103), - [sym__strong_emphasis_open_star] = ACTIONS(5103), - [sym__strong_emphasis_open_underscore] = ACTIONS(5103), - [sym__strong_emphasis_close_underscore] = ACTIONS(5103), - }, - [STATE(1164)] = { - [sym__backslash_escape] = ACTIONS(5107), - [sym_entity_reference] = ACTIONS(5107), - [sym_numeric_character_reference] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_COLON] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_BSLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_BQUOTE] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_PIPE] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [sym__newline_token] = ACTIONS(5107), - [aux_sym_insert_token1] = ACTIONS(5107), - [aux_sym_delete_token1] = ACTIONS(5107), - [aux_sym_highlight_token1] = ACTIONS(5107), - [aux_sym_edit_comment_token1] = ACTIONS(5107), - [anon_sym_CARET_LBRACK] = ACTIONS(5107), - [anon_sym_LBRACK_CARET] = ACTIONS(5107), - [sym_uri_autolink] = ACTIONS(5107), - [sym_email_autolink] = ACTIONS(5107), - [sym__whitespace_ge_2] = ACTIONS(5107), - [aux_sym__whitespace_token1] = ACTIONS(5109), - [sym__word_no_digit] = ACTIONS(5107), - [sym__digits] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5107), - [sym__code_span_start] = ACTIONS(5107), - [sym__emphasis_open_star] = ACTIONS(5107), - [sym__emphasis_open_underscore] = ACTIONS(5107), - [sym__strikeout_open] = ACTIONS(5107), - [sym__latex_span_start] = ACTIONS(5107), - [sym__single_quote_open] = ACTIONS(5107), - [sym__double_quote_open] = ACTIONS(5107), - [sym__superscript_open] = ACTIONS(5107), - [sym__subscript_open] = ACTIONS(5107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5107), - [sym__cite_author_in_text] = ACTIONS(5107), - [sym__cite_suppress_author] = ACTIONS(5107), - [sym__shortcode_open_escaped] = ACTIONS(5107), - [sym__shortcode_open] = ACTIONS(5107), - [sym__unclosed_span] = ACTIONS(5107), - [sym__strong_emphasis_open_star] = ACTIONS(5107), - [sym__strong_emphasis_open_underscore] = ACTIONS(5107), - [sym__strong_emphasis_close_underscore] = ACTIONS(5107), - }, - [STATE(1165)] = { - [sym__backslash_escape] = ACTIONS(5111), - [sym_entity_reference] = ACTIONS(5111), - [sym_numeric_character_reference] = ACTIONS(5111), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym_BQUOTE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [sym__newline_token] = ACTIONS(5111), - [aux_sym_insert_token1] = ACTIONS(5111), - [aux_sym_delete_token1] = ACTIONS(5111), - [aux_sym_highlight_token1] = ACTIONS(5111), - [aux_sym_edit_comment_token1] = ACTIONS(5111), - [anon_sym_CARET_LBRACK] = ACTIONS(5111), - [anon_sym_LBRACK_CARET] = ACTIONS(5111), - [sym_uri_autolink] = ACTIONS(5111), - [sym_email_autolink] = ACTIONS(5111), - [sym__whitespace_ge_2] = ACTIONS(5111), - [aux_sym__whitespace_token1] = ACTIONS(5113), - [sym__word_no_digit] = ACTIONS(5111), - [sym__digits] = ACTIONS(5111), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [sym__code_span_start] = ACTIONS(5111), - [sym__emphasis_open_star] = ACTIONS(5111), - [sym__emphasis_open_underscore] = ACTIONS(5111), - [sym__strikeout_open] = ACTIONS(5111), - [sym__latex_span_start] = ACTIONS(5111), - [sym__single_quote_open] = ACTIONS(5111), - [sym__double_quote_open] = ACTIONS(5111), - [sym__superscript_open] = ACTIONS(5111), - [sym__subscript_open] = ACTIONS(5111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5111), - [sym__cite_author_in_text] = ACTIONS(5111), - [sym__cite_suppress_author] = ACTIONS(5111), - [sym__shortcode_open_escaped] = ACTIONS(5111), - [sym__shortcode_open] = ACTIONS(5111), - [sym__unclosed_span] = ACTIONS(5111), - [sym__strong_emphasis_open_star] = ACTIONS(5111), - [sym__strong_emphasis_open_underscore] = ACTIONS(5111), - [sym__strong_emphasis_close_underscore] = ACTIONS(5111), - }, - [STATE(1166)] = { - [sym__backslash_escape] = ACTIONS(5115), - [sym_entity_reference] = ACTIONS(5115), - [sym_numeric_character_reference] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(5115), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_QMARK] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym_BQUOTE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [sym__newline_token] = ACTIONS(5115), - [aux_sym_insert_token1] = ACTIONS(5115), - [aux_sym_delete_token1] = ACTIONS(5115), - [aux_sym_highlight_token1] = ACTIONS(5115), - [aux_sym_edit_comment_token1] = ACTIONS(5115), - [anon_sym_CARET_LBRACK] = ACTIONS(5115), - [anon_sym_LBRACK_CARET] = ACTIONS(5115), - [sym_uri_autolink] = ACTIONS(5115), - [sym_email_autolink] = ACTIONS(5115), - [sym__whitespace_ge_2] = ACTIONS(5115), - [aux_sym__whitespace_token1] = ACTIONS(5117), - [sym__word_no_digit] = ACTIONS(5115), - [sym__digits] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5115), - [sym__code_span_start] = ACTIONS(5115), - [sym__emphasis_open_star] = ACTIONS(5115), - [sym__emphasis_open_underscore] = ACTIONS(5115), - [sym__strikeout_open] = ACTIONS(5115), - [sym__latex_span_start] = ACTIONS(5115), - [sym__single_quote_open] = ACTIONS(5115), - [sym__double_quote_open] = ACTIONS(5115), - [sym__superscript_open] = ACTIONS(5115), - [sym__subscript_open] = ACTIONS(5115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5115), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5115), - [sym__cite_author_in_text] = ACTIONS(5115), - [sym__cite_suppress_author] = ACTIONS(5115), - [sym__shortcode_open_escaped] = ACTIONS(5115), - [sym__shortcode_open] = ACTIONS(5115), - [sym__unclosed_span] = ACTIONS(5115), - [sym__strong_emphasis_open_star] = ACTIONS(5115), - [sym__strong_emphasis_open_underscore] = ACTIONS(5115), - [sym__strong_emphasis_close_underscore] = ACTIONS(5115), - }, - [STATE(1167)] = { - [sym__backslash_escape] = ACTIONS(5119), - [sym_entity_reference] = ACTIONS(5119), - [sym_numeric_character_reference] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_AMP] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [sym__newline_token] = ACTIONS(5119), - [aux_sym_insert_token1] = ACTIONS(5119), - [aux_sym_delete_token1] = ACTIONS(5119), - [aux_sym_highlight_token1] = ACTIONS(5119), - [aux_sym_edit_comment_token1] = ACTIONS(5119), - [anon_sym_CARET_LBRACK] = ACTIONS(5119), - [anon_sym_LBRACK_CARET] = ACTIONS(5119), - [sym_uri_autolink] = ACTIONS(5119), - [sym_email_autolink] = ACTIONS(5119), - [sym__whitespace_ge_2] = ACTIONS(5119), - [aux_sym__whitespace_token1] = ACTIONS(5121), - [sym__word_no_digit] = ACTIONS(5119), - [sym__digits] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5119), - [sym__code_span_start] = ACTIONS(5119), - [sym__emphasis_open_star] = ACTIONS(5119), - [sym__emphasis_open_underscore] = ACTIONS(5119), - [sym__strikeout_open] = ACTIONS(5119), - [sym__latex_span_start] = ACTIONS(5119), - [sym__single_quote_open] = ACTIONS(5119), - [sym__double_quote_open] = ACTIONS(5119), - [sym__superscript_open] = ACTIONS(5119), - [sym__subscript_open] = ACTIONS(5119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5119), - [sym__cite_author_in_text] = ACTIONS(5119), - [sym__cite_suppress_author] = ACTIONS(5119), - [sym__shortcode_open_escaped] = ACTIONS(5119), - [sym__shortcode_open] = ACTIONS(5119), - [sym__unclosed_span] = ACTIONS(5119), - [sym__strong_emphasis_open_star] = ACTIONS(5119), - [sym__strong_emphasis_open_underscore] = ACTIONS(5119), - [sym__strong_emphasis_close_underscore] = ACTIONS(5119), - }, - [STATE(1168)] = { - [sym__backslash_escape] = ACTIONS(5123), - [sym_entity_reference] = ACTIONS(5123), - [sym_numeric_character_reference] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_DQUOTE] = ACTIONS(5123), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym_BQUOTE] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [sym__newline_token] = ACTIONS(5123), - [aux_sym_insert_token1] = ACTIONS(5123), - [aux_sym_delete_token1] = ACTIONS(5123), - [aux_sym_highlight_token1] = ACTIONS(5123), - [aux_sym_edit_comment_token1] = ACTIONS(5123), - [anon_sym_CARET_LBRACK] = ACTIONS(5123), - [anon_sym_LBRACK_CARET] = ACTIONS(5123), - [sym_uri_autolink] = ACTIONS(5123), - [sym_email_autolink] = ACTIONS(5123), - [sym__whitespace_ge_2] = ACTIONS(5123), - [aux_sym__whitespace_token1] = ACTIONS(5125), - [sym__word_no_digit] = ACTIONS(5123), - [sym__digits] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), - [sym__code_span_start] = ACTIONS(5123), - [sym__emphasis_open_star] = ACTIONS(5123), - [sym__emphasis_open_underscore] = ACTIONS(5123), - [sym__strikeout_open] = ACTIONS(5123), - [sym__latex_span_start] = ACTIONS(5123), - [sym__single_quote_open] = ACTIONS(5123), - [sym__double_quote_open] = ACTIONS(5123), - [sym__superscript_open] = ACTIONS(5123), - [sym__subscript_open] = ACTIONS(5123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5123), - [sym__cite_author_in_text] = ACTIONS(5123), - [sym__cite_suppress_author] = ACTIONS(5123), - [sym__shortcode_open_escaped] = ACTIONS(5123), - [sym__shortcode_open] = ACTIONS(5123), - [sym__unclosed_span] = ACTIONS(5123), - [sym__strong_emphasis_open_star] = ACTIONS(5123), - [sym__strong_emphasis_open_underscore] = ACTIONS(5123), - [sym__strong_emphasis_close_underscore] = ACTIONS(5123), - }, - [STATE(1169)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -127469,7 +125539,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(4631), [anon_sym_AMP] = ACTIONS(4633), [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_STAR] = ACTIONS(4631), [anon_sym_PLUS] = ACTIONS(4631), [anon_sym_COMMA] = ACTIONS(4631), [anon_sym_DASH] = ACTIONS(4633), @@ -127481,6 +125550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4631), [anon_sym_LBRACK] = ACTIONS(4633), [anon_sym_BSLASH] = ACTIONS(4633), + [anon_sym_RBRACK] = ACTIONS(4631), [anon_sym_CARET] = ACTIONS(4633), [anon_sym_BQUOTE] = ACTIONS(4631), [anon_sym_LBRACE] = ACTIONS(4631), @@ -127522,6197 +125592,6775 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unclosed_span] = ACTIONS(4631), [sym__strong_emphasis_open_star] = ACTIONS(4631), [sym__strong_emphasis_open_underscore] = ACTIONS(4631), - [sym__strong_emphasis_close_underscore] = ACTIONS(4631), + }, + [STATE(1159)] = { + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_RBRACK] = ACTIONS(4223), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), + }, + [STATE(1160)] = { + [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(1161)] = { + [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(1162)] = { + [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(1163)] = { + [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_RBRACK] = ACTIONS(4639), + [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(1164)] = { + [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(1165)] = { + [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(1166)] = { + [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_RBRACK] = ACTIONS(4651), + [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(1167)] = { + [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_RBRACK] = ACTIONS(4655), + [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(1168)] = { + [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_RBRACK] = ACTIONS(4659), + [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(1169)] = { + [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_RBRACK] = ACTIONS(4663), + [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(1170)] = { - [ts_builtin_sym_end] = ACTIONS(5171), - [sym__backslash_escape] = ACTIONS(5171), - [sym_entity_reference] = ACTIONS(5171), - [sym_numeric_character_reference] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [anon_sym_POUND] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_QMARK] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH] = ACTIONS(5173), - [anon_sym_CARET] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [sym__newline_token] = ACTIONS(5171), - [aux_sym_insert_token1] = ACTIONS(5171), - [aux_sym_delete_token1] = ACTIONS(5171), - [aux_sym_highlight_token1] = ACTIONS(5171), - [aux_sym_edit_comment_token1] = ACTIONS(5171), - [anon_sym_CARET_LBRACK] = ACTIONS(5171), - [anon_sym_LBRACK_CARET] = ACTIONS(5171), - [sym_uri_autolink] = ACTIONS(5171), - [sym_email_autolink] = ACTIONS(5171), - [sym__whitespace_ge_2] = ACTIONS(5171), - [aux_sym__whitespace_token1] = ACTIONS(5173), - [sym__word_no_digit] = ACTIONS(5171), - [sym__digits] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5171), - [sym__code_span_start] = ACTIONS(5171), - [sym__emphasis_open_star] = ACTIONS(5171), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym__strikeout_open] = ACTIONS(5171), - [sym__latex_span_start] = ACTIONS(5171), - [sym__single_quote_open] = ACTIONS(5171), - [sym__double_quote_open] = ACTIONS(5171), - [sym__superscript_open] = ACTIONS(5171), - [sym__subscript_open] = ACTIONS(5171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5171), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5171), - [sym__cite_author_in_text] = ACTIONS(5171), - [sym__cite_suppress_author] = ACTIONS(5171), - [sym__shortcode_open_escaped] = ACTIONS(5171), - [sym__shortcode_open] = ACTIONS(5171), - [sym__unclosed_span] = ACTIONS(5171), - [sym__strong_emphasis_open_star] = ACTIONS(5171), - [sym__strong_emphasis_open_underscore] = ACTIONS(5171), + [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_RBRACK] = ACTIONS(4667), + [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__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(1171)] = { - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), - [sym__strong_emphasis_close_underscore] = ACTIONS(4657), + [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_RBRACK] = ACTIONS(4671), + [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(1172)] = { - [ts_builtin_sym_end] = ACTIONS(5175), - [sym__backslash_escape] = ACTIONS(5175), - [sym_entity_reference] = ACTIONS(5175), - [sym_numeric_character_reference] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_QMARK] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [sym__newline_token] = ACTIONS(5175), - [aux_sym_insert_token1] = ACTIONS(5175), - [aux_sym_delete_token1] = ACTIONS(5175), - [aux_sym_highlight_token1] = ACTIONS(5175), - [aux_sym_edit_comment_token1] = ACTIONS(5175), - [anon_sym_CARET_LBRACK] = ACTIONS(5175), - [anon_sym_LBRACK_CARET] = ACTIONS(5175), - [sym_uri_autolink] = ACTIONS(5175), - [sym_email_autolink] = ACTIONS(5175), - [sym__whitespace_ge_2] = ACTIONS(5175), - [aux_sym__whitespace_token1] = ACTIONS(5177), - [sym__word_no_digit] = ACTIONS(5175), - [sym__digits] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5177), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5175), - [sym__code_span_start] = ACTIONS(5175), - [sym__emphasis_open_star] = ACTIONS(5175), - [sym__emphasis_open_underscore] = ACTIONS(5175), - [sym__strikeout_open] = ACTIONS(5175), - [sym__latex_span_start] = ACTIONS(5175), - [sym__single_quote_open] = ACTIONS(5175), - [sym__double_quote_open] = ACTIONS(5175), - [sym__superscript_open] = ACTIONS(5175), - [sym__subscript_open] = ACTIONS(5175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5175), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5175), - [sym__cite_author_in_text] = ACTIONS(5175), - [sym__cite_suppress_author] = ACTIONS(5175), - [sym__shortcode_open_escaped] = ACTIONS(5175), - [sym__shortcode_open] = ACTIONS(5175), - [sym__unclosed_span] = ACTIONS(5175), - [sym__strong_emphasis_open_star] = ACTIONS(5175), - [sym__strong_emphasis_open_underscore] = ACTIONS(5175), + [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_RBRACK] = ACTIONS(4675), + [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(1173)] = { - [sym__backslash_escape] = ACTIONS(5127), - [sym_entity_reference] = ACTIONS(5127), - [sym_numeric_character_reference] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_DQUOTE] = ACTIONS(5127), - [anon_sym_POUND] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_PERCENT] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_QMARK] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym_BQUOTE] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym__newline_token] = ACTIONS(5127), - [aux_sym_insert_token1] = ACTIONS(5127), - [aux_sym_delete_token1] = ACTIONS(5127), - [aux_sym_highlight_token1] = ACTIONS(5127), - [aux_sym_edit_comment_token1] = ACTIONS(5127), - [anon_sym_CARET_LBRACK] = ACTIONS(5127), - [anon_sym_LBRACK_CARET] = ACTIONS(5127), - [sym_uri_autolink] = ACTIONS(5127), - [sym_email_autolink] = ACTIONS(5127), - [sym__whitespace_ge_2] = ACTIONS(5127), - [aux_sym__whitespace_token1] = ACTIONS(5129), - [sym__word_no_digit] = ACTIONS(5127), - [sym__digits] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5127), - [sym__code_span_start] = ACTIONS(5127), - [sym__emphasis_open_star] = ACTIONS(5127), - [sym__emphasis_open_underscore] = ACTIONS(5127), - [sym__strikeout_open] = ACTIONS(5127), - [sym__latex_span_start] = ACTIONS(5127), - [sym__single_quote_open] = ACTIONS(5127), - [sym__double_quote_open] = ACTIONS(5127), - [sym__superscript_open] = ACTIONS(5127), - [sym__subscript_open] = ACTIONS(5127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5127), - [sym__cite_author_in_text] = ACTIONS(5127), - [sym__cite_suppress_author] = ACTIONS(5127), - [sym__shortcode_open_escaped] = ACTIONS(5127), - [sym__shortcode_open] = ACTIONS(5127), - [sym__unclosed_span] = ACTIONS(5127), - [sym__strong_emphasis_open_star] = ACTIONS(5127), - [sym__strong_emphasis_open_underscore] = ACTIONS(5127), - [sym__strong_emphasis_close_underscore] = ACTIONS(5127), + [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_RBRACK] = ACTIONS(4679), + [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(1174)] = { - [sym__backslash_escape] = ACTIONS(5131), - [sym_entity_reference] = ACTIONS(5131), - [sym_numeric_character_reference] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(5131), - [anon_sym_POUND] = ACTIONS(5131), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(5133), - [anon_sym_SQUOTE] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_QMARK] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(5133), - [anon_sym_BQUOTE] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_PIPE] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [sym__newline_token] = ACTIONS(5131), - [aux_sym_insert_token1] = ACTIONS(5131), - [aux_sym_delete_token1] = ACTIONS(5131), - [aux_sym_highlight_token1] = ACTIONS(5131), - [aux_sym_edit_comment_token1] = ACTIONS(5131), - [anon_sym_CARET_LBRACK] = ACTIONS(5131), - [anon_sym_LBRACK_CARET] = ACTIONS(5131), - [sym_uri_autolink] = ACTIONS(5131), - [sym_email_autolink] = ACTIONS(5131), - [sym__whitespace_ge_2] = ACTIONS(5131), - [aux_sym__whitespace_token1] = ACTIONS(5133), - [sym__word_no_digit] = ACTIONS(5131), - [sym__digits] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), - [sym__code_span_start] = ACTIONS(5131), - [sym__emphasis_open_star] = ACTIONS(5131), - [sym__emphasis_open_underscore] = ACTIONS(5131), - [sym__strikeout_open] = ACTIONS(5131), - [sym__latex_span_start] = ACTIONS(5131), - [sym__single_quote_open] = ACTIONS(5131), - [sym__double_quote_open] = ACTIONS(5131), - [sym__superscript_open] = ACTIONS(5131), - [sym__subscript_open] = ACTIONS(5131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5131), - [sym__cite_author_in_text] = ACTIONS(5131), - [sym__cite_suppress_author] = ACTIONS(5131), - [sym__shortcode_open_escaped] = ACTIONS(5131), - [sym__shortcode_open] = ACTIONS(5131), - [sym__unclosed_span] = ACTIONS(5131), - [sym__strong_emphasis_open_star] = ACTIONS(5131), - [sym__strong_emphasis_open_underscore] = ACTIONS(5131), - [sym__strong_emphasis_close_underscore] = ACTIONS(5131), + [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_RBRACK] = ACTIONS(4683), + [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(1175)] = { - [sym__backslash_escape] = ACTIONS(5135), - [sym_entity_reference] = ACTIONS(5135), - [sym_numeric_character_reference] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_AMP] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_QMARK] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH] = ACTIONS(5137), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [sym__newline_token] = ACTIONS(5135), - [aux_sym_insert_token1] = ACTIONS(5135), - [aux_sym_delete_token1] = ACTIONS(5135), - [aux_sym_highlight_token1] = ACTIONS(5135), - [aux_sym_edit_comment_token1] = ACTIONS(5135), - [anon_sym_CARET_LBRACK] = ACTIONS(5135), - [anon_sym_LBRACK_CARET] = ACTIONS(5135), - [sym_uri_autolink] = ACTIONS(5135), - [sym_email_autolink] = ACTIONS(5135), - [sym__whitespace_ge_2] = ACTIONS(5135), - [aux_sym__whitespace_token1] = ACTIONS(5137), - [sym__word_no_digit] = ACTIONS(5135), - [sym__digits] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5135), - [sym__code_span_start] = ACTIONS(5135), - [sym__emphasis_open_star] = ACTIONS(5135), - [sym__emphasis_open_underscore] = ACTIONS(5135), - [sym__strikeout_open] = ACTIONS(5135), - [sym__latex_span_start] = ACTIONS(5135), - [sym__single_quote_open] = ACTIONS(5135), - [sym__double_quote_open] = ACTIONS(5135), - [sym__superscript_open] = ACTIONS(5135), - [sym__subscript_open] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5135), - [sym__cite_author_in_text] = ACTIONS(5135), - [sym__cite_suppress_author] = ACTIONS(5135), - [sym__shortcode_open_escaped] = ACTIONS(5135), - [sym__shortcode_open] = ACTIONS(5135), - [sym__unclosed_span] = ACTIONS(5135), - [sym__strong_emphasis_open_star] = ACTIONS(5135), - [sym__strong_emphasis_open_underscore] = ACTIONS(5135), - [sym__strong_emphasis_close_underscore] = ACTIONS(5135), + [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_RBRACK] = ACTIONS(4687), + [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(1176)] = { - [sym__backslash_escape] = ACTIONS(5139), - [sym_entity_reference] = ACTIONS(5139), - [sym_numeric_character_reference] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_DQUOTE] = ACTIONS(5139), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH] = ACTIONS(5141), - [anon_sym_CARET] = ACTIONS(5141), - [anon_sym_BQUOTE] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_RPAREN] = ACTIONS(5139), - [sym__newline_token] = ACTIONS(5139), - [aux_sym_insert_token1] = ACTIONS(5139), - [aux_sym_delete_token1] = ACTIONS(5139), - [aux_sym_highlight_token1] = ACTIONS(5139), - [aux_sym_edit_comment_token1] = ACTIONS(5139), - [anon_sym_CARET_LBRACK] = ACTIONS(5139), - [anon_sym_LBRACK_CARET] = ACTIONS(5139), - [sym_uri_autolink] = ACTIONS(5139), - [sym_email_autolink] = ACTIONS(5139), - [sym__whitespace_ge_2] = ACTIONS(5139), - [aux_sym__whitespace_token1] = ACTIONS(5141), - [sym__word_no_digit] = ACTIONS(5139), - [sym__digits] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5141), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5139), - [sym__code_span_start] = ACTIONS(5139), - [sym__emphasis_open_star] = ACTIONS(5139), - [sym__emphasis_open_underscore] = ACTIONS(5139), - [sym__strikeout_open] = ACTIONS(5139), - [sym__latex_span_start] = ACTIONS(5139), - [sym__single_quote_open] = ACTIONS(5139), - [sym__double_quote_open] = ACTIONS(5139), - [sym__superscript_open] = ACTIONS(5139), - [sym__subscript_open] = ACTIONS(5139), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5139), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5139), - [sym__cite_author_in_text] = ACTIONS(5139), - [sym__cite_suppress_author] = ACTIONS(5139), - [sym__shortcode_open_escaped] = ACTIONS(5139), - [sym__shortcode_open] = ACTIONS(5139), - [sym__unclosed_span] = ACTIONS(5139), - [sym__strong_emphasis_open_star] = ACTIONS(5139), - [sym__strong_emphasis_open_underscore] = ACTIONS(5139), - [sym__strong_emphasis_close_underscore] = ACTIONS(5139), + [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_RBRACK] = ACTIONS(4691), + [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(1177)] = { - [sym__backslash_escape] = ACTIONS(5143), - [sym_entity_reference] = ACTIONS(5143), - [sym_numeric_character_reference] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_DQUOTE] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_PERCENT] = ACTIONS(5143), - [anon_sym_AMP] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH] = ACTIONS(5145), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym_BQUOTE] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [sym__newline_token] = ACTIONS(5143), - [aux_sym_insert_token1] = ACTIONS(5143), - [aux_sym_delete_token1] = ACTIONS(5143), - [aux_sym_highlight_token1] = ACTIONS(5143), - [aux_sym_edit_comment_token1] = ACTIONS(5143), - [anon_sym_CARET_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_CARET] = ACTIONS(5143), - [sym_uri_autolink] = ACTIONS(5143), - [sym_email_autolink] = ACTIONS(5143), - [sym__whitespace_ge_2] = ACTIONS(5143), - [aux_sym__whitespace_token1] = ACTIONS(5145), - [sym__word_no_digit] = ACTIONS(5143), - [sym__digits] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5143), - [sym__code_span_start] = ACTIONS(5143), - [sym__emphasis_open_star] = ACTIONS(5143), - [sym__emphasis_open_underscore] = ACTIONS(5143), - [sym__strikeout_open] = ACTIONS(5143), - [sym__latex_span_start] = ACTIONS(5143), - [sym__single_quote_open] = ACTIONS(5143), - [sym__double_quote_open] = ACTIONS(5143), - [sym__superscript_open] = ACTIONS(5143), - [sym__subscript_open] = ACTIONS(5143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5143), - [sym__cite_author_in_text] = ACTIONS(5143), - [sym__cite_suppress_author] = ACTIONS(5143), - [sym__shortcode_open_escaped] = ACTIONS(5143), - [sym__shortcode_open] = ACTIONS(5143), - [sym__unclosed_span] = ACTIONS(5143), - [sym__strong_emphasis_open_star] = ACTIONS(5143), - [sym__strong_emphasis_open_underscore] = ACTIONS(5143), - [sym__strong_emphasis_close_underscore] = ACTIONS(5143), + [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_RBRACK] = ACTIONS(4695), + [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(1178)] = { - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), - [sym__strong_emphasis_close_underscore] = ACTIONS(4661), + [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_RBRACK] = ACTIONS(4699), + [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(1179)] = { - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), - [sym__strong_emphasis_close_underscore] = ACTIONS(4637), + [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_RBRACK] = ACTIONS(4703), + [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(1180)] = { - [ts_builtin_sym_end] = ACTIONS(4983), - [sym__backslash_escape] = ACTIONS(4983), - [sym_entity_reference] = ACTIONS(4983), - [sym_numeric_character_reference] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [sym__newline_token] = ACTIONS(4983), - [aux_sym_insert_token1] = ACTIONS(4983), - [aux_sym_delete_token1] = ACTIONS(4983), - [aux_sym_highlight_token1] = ACTIONS(4983), - [aux_sym_edit_comment_token1] = ACTIONS(4983), - [anon_sym_CARET_LBRACK] = ACTIONS(4983), - [anon_sym_LBRACK_CARET] = ACTIONS(4983), - [sym_uri_autolink] = ACTIONS(4983), - [sym_email_autolink] = ACTIONS(4983), - [sym__whitespace_ge_2] = ACTIONS(4983), - [aux_sym__whitespace_token1] = ACTIONS(4985), - [sym__word_no_digit] = ACTIONS(4983), - [sym__digits] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4983), - [sym__code_span_start] = ACTIONS(4983), - [sym__emphasis_open_star] = ACTIONS(4983), - [sym__emphasis_open_underscore] = ACTIONS(4983), - [sym__strikeout_open] = ACTIONS(4983), - [sym__latex_span_start] = ACTIONS(4983), - [sym__single_quote_open] = ACTIONS(4983), - [sym__double_quote_open] = ACTIONS(4983), - [sym__superscript_open] = ACTIONS(4983), - [sym__subscript_open] = ACTIONS(4983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4983), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4983), - [sym__cite_author_in_text] = ACTIONS(4983), - [sym__cite_suppress_author] = ACTIONS(4983), - [sym__shortcode_open_escaped] = ACTIONS(4983), - [sym__shortcode_open] = ACTIONS(4983), - [sym__unclosed_span] = ACTIONS(4983), - [sym__strong_emphasis_open_star] = ACTIONS(4983), - [sym__strong_emphasis_open_underscore] = ACTIONS(4983), + [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_RBRACK] = ACTIONS(4707), + [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(1181)] = { - [sym__backslash_escape] = ACTIONS(5147), - [sym_entity_reference] = ACTIONS(5147), - [sym_numeric_character_reference] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_DQUOTE] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [sym__newline_token] = ACTIONS(5147), - [aux_sym_insert_token1] = ACTIONS(5147), - [aux_sym_delete_token1] = ACTIONS(5147), - [aux_sym_highlight_token1] = ACTIONS(5147), - [aux_sym_edit_comment_token1] = ACTIONS(5147), - [anon_sym_CARET_LBRACK] = ACTIONS(5147), - [anon_sym_LBRACK_CARET] = ACTIONS(5147), - [sym_uri_autolink] = ACTIONS(5147), - [sym_email_autolink] = ACTIONS(5147), - [sym__whitespace_ge_2] = ACTIONS(5147), - [aux_sym__whitespace_token1] = ACTIONS(5149), - [sym__word_no_digit] = ACTIONS(5147), - [sym__digits] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5147), - [sym__code_span_start] = ACTIONS(5147), - [sym__emphasis_open_star] = ACTIONS(5147), - [sym__emphasis_open_underscore] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5147), - [sym__latex_span_start] = ACTIONS(5147), - [sym__single_quote_open] = ACTIONS(5147), - [sym__double_quote_open] = ACTIONS(5147), - [sym__superscript_open] = ACTIONS(5147), - [sym__subscript_open] = ACTIONS(5147), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5147), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5147), - [sym__cite_author_in_text] = ACTIONS(5147), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__shortcode_open_escaped] = ACTIONS(5147), - [sym__shortcode_open] = ACTIONS(5147), - [sym__unclosed_span] = ACTIONS(5147), - [sym__strong_emphasis_open_star] = ACTIONS(5147), - [sym__strong_emphasis_open_underscore] = ACTIONS(5147), - [sym__strong_emphasis_close_underscore] = ACTIONS(5147), + [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__superscript_close] = 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(1182)] = { - [sym__backslash_escape] = ACTIONS(5151), - [sym_entity_reference] = ACTIONS(5151), - [sym_numeric_character_reference] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_DQUOTE] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_PERCENT] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_QMARK] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [sym__newline_token] = ACTIONS(5151), - [aux_sym_insert_token1] = ACTIONS(5151), - [aux_sym_delete_token1] = ACTIONS(5151), - [aux_sym_highlight_token1] = ACTIONS(5151), - [aux_sym_edit_comment_token1] = ACTIONS(5151), - [anon_sym_CARET_LBRACK] = ACTIONS(5151), - [anon_sym_LBRACK_CARET] = ACTIONS(5151), - [sym_uri_autolink] = ACTIONS(5151), - [sym_email_autolink] = ACTIONS(5151), - [sym__whitespace_ge_2] = ACTIONS(5151), - [aux_sym__whitespace_token1] = ACTIONS(5153), - [sym__word_no_digit] = ACTIONS(5151), - [sym__digits] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5151), - [sym__code_span_start] = ACTIONS(5151), - [sym__emphasis_open_star] = ACTIONS(5151), - [sym__emphasis_open_underscore] = ACTIONS(5151), - [sym__strikeout_open] = ACTIONS(5151), - [sym__latex_span_start] = ACTIONS(5151), - [sym__single_quote_open] = ACTIONS(5151), - [sym__double_quote_open] = ACTIONS(5151), - [sym__superscript_open] = ACTIONS(5151), - [sym__subscript_open] = ACTIONS(5151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5151), - [sym__cite_author_in_text] = ACTIONS(5151), - [sym__cite_suppress_author] = ACTIONS(5151), - [sym__shortcode_open_escaped] = ACTIONS(5151), - [sym__shortcode_open] = ACTIONS(5151), - [sym__unclosed_span] = ACTIONS(5151), - [sym__strong_emphasis_open_star] = ACTIONS(5151), - [sym__strong_emphasis_open_underscore] = ACTIONS(5151), - [sym__strong_emphasis_close_underscore] = ACTIONS(5151), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_RBRACK] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(1183)] = { - [sym__backslash_escape] = ACTIONS(5155), - [sym_entity_reference] = ACTIONS(5155), - [sym_numeric_character_reference] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_QMARK] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [sym__newline_token] = ACTIONS(5155), - [aux_sym_insert_token1] = ACTIONS(5155), - [aux_sym_delete_token1] = ACTIONS(5155), - [aux_sym_highlight_token1] = ACTIONS(5155), - [aux_sym_edit_comment_token1] = ACTIONS(5155), - [anon_sym_CARET_LBRACK] = ACTIONS(5155), - [anon_sym_LBRACK_CARET] = ACTIONS(5155), - [sym_uri_autolink] = ACTIONS(5155), - [sym_email_autolink] = ACTIONS(5155), - [sym__whitespace_ge_2] = ACTIONS(5155), - [aux_sym__whitespace_token1] = ACTIONS(5157), - [sym__word_no_digit] = ACTIONS(5155), - [sym__digits] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5155), - [sym__code_span_start] = ACTIONS(5155), - [sym__emphasis_open_star] = ACTIONS(5155), - [sym__emphasis_open_underscore] = ACTIONS(5155), - [sym__strikeout_open] = ACTIONS(5155), - [sym__latex_span_start] = ACTIONS(5155), - [sym__single_quote_open] = ACTIONS(5155), - [sym__double_quote_open] = ACTIONS(5155), - [sym__superscript_open] = ACTIONS(5155), - [sym__subscript_open] = ACTIONS(5155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5155), - [sym__cite_author_in_text] = ACTIONS(5155), - [sym__cite_suppress_author] = ACTIONS(5155), - [sym__shortcode_open_escaped] = ACTIONS(5155), - [sym__shortcode_open] = ACTIONS(5155), - [sym__unclosed_span] = ACTIONS(5155), - [sym__strong_emphasis_open_star] = ACTIONS(5155), - [sym__strong_emphasis_open_underscore] = ACTIONS(5155), - [sym__strong_emphasis_close_underscore] = ACTIONS(5155), + [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__superscript_close] = 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(1184)] = { - [sym__backslash_escape] = ACTIONS(5159), - [sym_entity_reference] = ACTIONS(5159), - [sym_numeric_character_reference] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_DQUOTE] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_QMARK] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym__newline_token] = ACTIONS(5159), - [aux_sym_insert_token1] = ACTIONS(5159), - [aux_sym_delete_token1] = ACTIONS(5159), - [aux_sym_highlight_token1] = ACTIONS(5159), - [aux_sym_edit_comment_token1] = ACTIONS(5159), - [anon_sym_CARET_LBRACK] = ACTIONS(5159), - [anon_sym_LBRACK_CARET] = ACTIONS(5159), - [sym_uri_autolink] = ACTIONS(5159), - [sym_email_autolink] = ACTIONS(5159), - [sym__whitespace_ge_2] = ACTIONS(5159), - [aux_sym__whitespace_token1] = ACTIONS(5161), - [sym__word_no_digit] = ACTIONS(5159), - [sym__digits] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5159), - [sym__code_span_start] = ACTIONS(5159), - [sym__emphasis_open_star] = ACTIONS(5159), - [sym__emphasis_open_underscore] = ACTIONS(5159), - [sym__strikeout_open] = ACTIONS(5159), - [sym__latex_span_start] = ACTIONS(5159), - [sym__single_quote_open] = ACTIONS(5159), - [sym__double_quote_open] = ACTIONS(5159), - [sym__superscript_open] = ACTIONS(5159), - [sym__subscript_open] = ACTIONS(5159), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5159), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5159), - [sym__cite_author_in_text] = ACTIONS(5159), - [sym__cite_suppress_author] = ACTIONS(5159), - [sym__shortcode_open_escaped] = ACTIONS(5159), - [sym__shortcode_open] = ACTIONS(5159), - [sym__unclosed_span] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5159), - [sym__strong_emphasis_open_underscore] = ACTIONS(5159), - [sym__strong_emphasis_close_underscore] = ACTIONS(5159), + [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_RBRACK] = ACTIONS(4711), + [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(1185)] = { - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), - [sym__strong_emphasis_close_underscore] = ACTIONS(4665), + [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(1186)] = { - [sym__backslash_escape] = ACTIONS(4939), - [sym_entity_reference] = ACTIONS(4939), - [sym_numeric_character_reference] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_POUND] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [sym__newline_token] = ACTIONS(4939), - [aux_sym_insert_token1] = ACTIONS(4939), - [aux_sym_delete_token1] = ACTIONS(4939), - [aux_sym_highlight_token1] = ACTIONS(4939), - [aux_sym_edit_comment_token1] = ACTIONS(4939), - [anon_sym_CARET_LBRACK] = ACTIONS(4939), - [anon_sym_LBRACK_CARET] = ACTIONS(4939), - [sym_uri_autolink] = ACTIONS(4939), - [sym_email_autolink] = ACTIONS(4939), - [sym__whitespace_ge_2] = ACTIONS(4939), - [aux_sym__whitespace_token1] = ACTIONS(4941), - [sym__word_no_digit] = ACTIONS(4939), - [sym__digits] = ACTIONS(4939), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4939), - [sym__code_span_start] = ACTIONS(4939), - [sym__emphasis_open_star] = ACTIONS(4939), - [sym__emphasis_open_underscore] = ACTIONS(4939), - [sym__emphasis_close_star] = ACTIONS(4939), - [sym__strikeout_open] = ACTIONS(4939), - [sym__latex_span_start] = ACTIONS(4939), - [sym__single_quote_open] = ACTIONS(4939), - [sym__double_quote_open] = ACTIONS(4939), - [sym__superscript_open] = ACTIONS(4939), - [sym__subscript_open] = ACTIONS(4939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4939), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4939), - [sym__cite_author_in_text] = ACTIONS(4939), - [sym__cite_suppress_author] = ACTIONS(4939), - [sym__shortcode_open_escaped] = ACTIONS(4939), - [sym__shortcode_open] = ACTIONS(4939), - [sym__unclosed_span] = ACTIONS(4939), - [sym__strong_emphasis_open_star] = ACTIONS(4939), - [sym__strong_emphasis_open_underscore] = ACTIONS(4939), + [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(1187)] = { - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), - [sym__strong_emphasis_close_underscore] = ACTIONS(4669), + [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_RBRACK] = ACTIONS(4715), + [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(1188)] = { - [ts_builtin_sym_end] = ACTIONS(4987), - [sym__backslash_escape] = ACTIONS(4987), - [sym_entity_reference] = ACTIONS(4987), - [sym_numeric_character_reference] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym__newline_token] = ACTIONS(4987), - [aux_sym_insert_token1] = ACTIONS(4987), - [aux_sym_delete_token1] = ACTIONS(4987), - [aux_sym_highlight_token1] = ACTIONS(4987), - [aux_sym_edit_comment_token1] = ACTIONS(4987), - [anon_sym_CARET_LBRACK] = ACTIONS(4987), - [anon_sym_LBRACK_CARET] = ACTIONS(4987), - [sym_uri_autolink] = ACTIONS(4987), - [sym_email_autolink] = ACTIONS(4987), - [sym__whitespace_ge_2] = ACTIONS(4987), - [aux_sym__whitespace_token1] = ACTIONS(4989), - [sym__word_no_digit] = ACTIONS(4987), - [sym__digits] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4987), - [sym__code_span_start] = ACTIONS(4987), - [sym__emphasis_open_star] = ACTIONS(4987), - [sym__emphasis_open_underscore] = ACTIONS(4987), - [sym__strikeout_open] = ACTIONS(4987), - [sym__latex_span_start] = ACTIONS(4987), - [sym__single_quote_open] = ACTIONS(4987), - [sym__double_quote_open] = ACTIONS(4987), - [sym__superscript_open] = ACTIONS(4987), - [sym__subscript_open] = ACTIONS(4987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4987), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4987), - [sym__cite_author_in_text] = ACTIONS(4987), - [sym__cite_suppress_author] = ACTIONS(4987), - [sym__shortcode_open_escaped] = ACTIONS(4987), - [sym__shortcode_open] = ACTIONS(4987), - [sym__unclosed_span] = ACTIONS(4987), - [sym__strong_emphasis_open_star] = ACTIONS(4987), - [sym__strong_emphasis_open_underscore] = ACTIONS(4987), + [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_RBRACK] = ACTIONS(4719), + [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(1189)] = { - [sym__backslash_escape] = ACTIONS(5163), - [sym_entity_reference] = ACTIONS(5163), - [sym_numeric_character_reference] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_PERCENT] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym_BQUOTE] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [sym__newline_token] = ACTIONS(5163), - [aux_sym_insert_token1] = ACTIONS(5163), - [aux_sym_delete_token1] = ACTIONS(5163), - [aux_sym_highlight_token1] = ACTIONS(5163), - [aux_sym_edit_comment_token1] = ACTIONS(5163), - [anon_sym_CARET_LBRACK] = ACTIONS(5163), - [anon_sym_LBRACK_CARET] = ACTIONS(5163), - [sym_uri_autolink] = ACTIONS(5163), - [sym_email_autolink] = ACTIONS(5163), - [sym__whitespace_ge_2] = ACTIONS(5163), - [aux_sym__whitespace_token1] = ACTIONS(5165), - [sym__word_no_digit] = ACTIONS(5163), - [sym__digits] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5163), - [sym__code_span_start] = ACTIONS(5163), - [sym__emphasis_open_star] = ACTIONS(5163), - [sym__emphasis_open_underscore] = ACTIONS(5163), - [sym__strikeout_open] = ACTIONS(5163), - [sym__latex_span_start] = ACTIONS(5163), - [sym__single_quote_open] = ACTIONS(5163), - [sym__double_quote_open] = ACTIONS(5163), - [sym__superscript_open] = ACTIONS(5163), - [sym__subscript_open] = ACTIONS(5163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5163), - [sym__cite_author_in_text] = ACTIONS(5163), - [sym__cite_suppress_author] = ACTIONS(5163), - [sym__shortcode_open_escaped] = ACTIONS(5163), - [sym__shortcode_open] = ACTIONS(5163), - [sym__unclosed_span] = ACTIONS(5163), - [sym__strong_emphasis_open_star] = ACTIONS(5163), - [sym__strong_emphasis_open_underscore] = ACTIONS(5163), - [sym__strong_emphasis_close_underscore] = ACTIONS(5163), + [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_RBRACK] = ACTIONS(4723), + [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(1190)] = { - [sym__backslash_escape] = ACTIONS(5167), - [sym_entity_reference] = ACTIONS(5167), - [sym_numeric_character_reference] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_POUND] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_PERCENT] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_QMARK] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [sym__newline_token] = ACTIONS(5167), - [aux_sym_insert_token1] = ACTIONS(5167), - [aux_sym_delete_token1] = ACTIONS(5167), - [aux_sym_highlight_token1] = ACTIONS(5167), - [aux_sym_edit_comment_token1] = ACTIONS(5167), - [anon_sym_CARET_LBRACK] = ACTIONS(5167), - [anon_sym_LBRACK_CARET] = ACTIONS(5167), - [sym_uri_autolink] = ACTIONS(5167), - [sym_email_autolink] = ACTIONS(5167), - [sym__whitespace_ge_2] = ACTIONS(5167), - [aux_sym__whitespace_token1] = ACTIONS(5169), - [sym__word_no_digit] = ACTIONS(5167), - [sym__digits] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5169), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), - [sym__code_span_start] = ACTIONS(5167), - [sym__emphasis_open_star] = ACTIONS(5167), - [sym__emphasis_open_underscore] = ACTIONS(5167), - [sym__strikeout_open] = ACTIONS(5167), - [sym__latex_span_start] = ACTIONS(5167), - [sym__single_quote_open] = ACTIONS(5167), - [sym__double_quote_open] = ACTIONS(5167), - [sym__superscript_open] = ACTIONS(5167), - [sym__subscript_open] = ACTIONS(5167), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5167), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5167), - [sym__cite_author_in_text] = ACTIONS(5167), - [sym__cite_suppress_author] = ACTIONS(5167), - [sym__shortcode_open_escaped] = ACTIONS(5167), - [sym__shortcode_open] = ACTIONS(5167), - [sym__unclosed_span] = ACTIONS(5167), - [sym__strong_emphasis_open_star] = ACTIONS(5167), - [sym__strong_emphasis_open_underscore] = ACTIONS(5167), - [sym__strong_emphasis_close_underscore] = ACTIONS(5167), + [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_RBRACK] = ACTIONS(4727), + [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(1191)] = { - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), - [sym__strong_emphasis_close_underscore] = ACTIONS(4673), + [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_RBRACK] = ACTIONS(4731), + [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(1192)] = { - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), - [sym__strong_emphasis_close_underscore] = ACTIONS(4677), + [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__superscript_close] = 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(1193)] = { - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), - [sym__strong_emphasis_close_underscore] = ACTIONS(4681), + [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_RBRACK] = ACTIONS(4735), + [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(1194)] = { - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), - [sym__strong_emphasis_close_underscore] = ACTIONS(4625), + [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_RBRACK] = ACTIONS(4739), + [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(1195)] = { - [sym__backslash_escape] = ACTIONS(5171), - [sym_entity_reference] = ACTIONS(5171), - [sym_numeric_character_reference] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [anon_sym_POUND] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_QMARK] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH] = ACTIONS(5173), - [anon_sym_CARET] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [sym__newline_token] = ACTIONS(5171), - [aux_sym_insert_token1] = ACTIONS(5171), - [aux_sym_delete_token1] = ACTIONS(5171), - [aux_sym_highlight_token1] = ACTIONS(5171), - [aux_sym_edit_comment_token1] = ACTIONS(5171), - [anon_sym_CARET_LBRACK] = ACTIONS(5171), - [anon_sym_LBRACK_CARET] = ACTIONS(5171), - [sym_uri_autolink] = ACTIONS(5171), - [sym_email_autolink] = ACTIONS(5171), - [sym__whitespace_ge_2] = ACTIONS(5171), - [aux_sym__whitespace_token1] = ACTIONS(5173), - [sym__word_no_digit] = ACTIONS(5171), - [sym__digits] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5171), - [sym__code_span_start] = ACTIONS(5171), - [sym__emphasis_open_star] = ACTIONS(5171), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym__strikeout_open] = ACTIONS(5171), - [sym__latex_span_start] = ACTIONS(5171), - [sym__single_quote_open] = ACTIONS(5171), - [sym__double_quote_open] = ACTIONS(5171), - [sym__superscript_open] = ACTIONS(5171), - [sym__subscript_open] = ACTIONS(5171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5171), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5171), - [sym__cite_author_in_text] = ACTIONS(5171), - [sym__cite_suppress_author] = ACTIONS(5171), - [sym__shortcode_open_escaped] = ACTIONS(5171), - [sym__shortcode_open] = ACTIONS(5171), - [sym__unclosed_span] = ACTIONS(5171), - [sym__strong_emphasis_open_star] = ACTIONS(5171), - [sym__strong_emphasis_open_underscore] = ACTIONS(5171), - [sym__strong_emphasis_close_underscore] = ACTIONS(5171), + [sym__backslash_escape] = ACTIONS(4499), + [sym_entity_reference] = ACTIONS(4499), + [sym_numeric_character_reference] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4501), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_BSLASH] = ACTIONS(4501), + [anon_sym_RBRACK] = ACTIONS(4499), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_PIPE] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [sym__newline_token] = ACTIONS(4499), + [aux_sym_insert_token1] = ACTIONS(4499), + [aux_sym_delete_token1] = ACTIONS(4499), + [aux_sym_highlight_token1] = ACTIONS(4499), + [aux_sym_edit_comment_token1] = ACTIONS(4499), + [anon_sym_CARET_LBRACK] = ACTIONS(4499), + [anon_sym_LBRACK_CARET] = ACTIONS(4499), + [sym_uri_autolink] = ACTIONS(4499), + [sym_email_autolink] = ACTIONS(4499), + [sym__whitespace_ge_2] = ACTIONS(4499), + [aux_sym__whitespace_token1] = ACTIONS(4501), + [sym__word_no_digit] = ACTIONS(4499), + [sym__digits] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4499), + [sym__code_span_start] = ACTIONS(4499), + [sym__emphasis_open_star] = ACTIONS(4499), + [sym__emphasis_open_underscore] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4499), + [sym__latex_span_start] = ACTIONS(4499), + [sym__single_quote_open] = ACTIONS(4499), + [sym__double_quote_open] = ACTIONS(4499), + [sym__superscript_open] = ACTIONS(4499), + [sym__subscript_open] = ACTIONS(4499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4499), + [sym__cite_author_in_text] = ACTIONS(4499), + [sym__cite_suppress_author] = ACTIONS(4499), + [sym__shortcode_open_escaped] = ACTIONS(4499), + [sym__shortcode_open] = ACTIONS(4499), + [sym__unclosed_span] = ACTIONS(4499), + [sym__strong_emphasis_open_star] = ACTIONS(4499), + [sym__strong_emphasis_open_underscore] = ACTIONS(4499), }, [STATE(1196)] = { - [sym__backslash_escape] = ACTIONS(5175), - [sym_entity_reference] = ACTIONS(5175), - [sym_numeric_character_reference] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_QMARK] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [sym__newline_token] = ACTIONS(5175), - [aux_sym_insert_token1] = ACTIONS(5175), - [aux_sym_delete_token1] = ACTIONS(5175), - [aux_sym_highlight_token1] = ACTIONS(5175), - [aux_sym_edit_comment_token1] = ACTIONS(5175), - [anon_sym_CARET_LBRACK] = ACTIONS(5175), - [anon_sym_LBRACK_CARET] = ACTIONS(5175), - [sym_uri_autolink] = ACTIONS(5175), - [sym_email_autolink] = ACTIONS(5175), - [sym__whitespace_ge_2] = ACTIONS(5175), - [aux_sym__whitespace_token1] = ACTIONS(5177), - [sym__word_no_digit] = ACTIONS(5175), - [sym__digits] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5177), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5175), - [sym__code_span_start] = ACTIONS(5175), - [sym__emphasis_open_star] = ACTIONS(5175), - [sym__emphasis_open_underscore] = ACTIONS(5175), - [sym__strikeout_open] = ACTIONS(5175), - [sym__latex_span_start] = ACTIONS(5175), - [sym__single_quote_open] = ACTIONS(5175), - [sym__double_quote_open] = ACTIONS(5175), - [sym__superscript_open] = ACTIONS(5175), - [sym__subscript_open] = ACTIONS(5175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5175), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5175), - [sym__cite_author_in_text] = ACTIONS(5175), - [sym__cite_suppress_author] = ACTIONS(5175), - [sym__shortcode_open_escaped] = ACTIONS(5175), - [sym__shortcode_open] = ACTIONS(5175), - [sym__unclosed_span] = ACTIONS(5175), - [sym__strong_emphasis_open_star] = ACTIONS(5175), - [sym__strong_emphasis_open_underscore] = ACTIONS(5175), - [sym__strong_emphasis_close_underscore] = ACTIONS(5175), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_RBRACK] = ACTIONS(4235), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(1197)] = { - [sym__backslash_escape] = ACTIONS(4939), - [sym_entity_reference] = ACTIONS(4939), - [sym_numeric_character_reference] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_POUND] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [sym__newline_token] = ACTIONS(4939), - [aux_sym_insert_token1] = ACTIONS(4939), - [aux_sym_delete_token1] = ACTIONS(4939), - [aux_sym_highlight_token1] = ACTIONS(4939), - [aux_sym_edit_comment_token1] = ACTIONS(4939), - [anon_sym_CARET_LBRACK] = ACTIONS(4939), - [anon_sym_LBRACK_CARET] = ACTIONS(4939), - [sym_uri_autolink] = ACTIONS(4939), - [sym_email_autolink] = ACTIONS(4939), - [sym__whitespace_ge_2] = ACTIONS(4939), - [aux_sym__whitespace_token1] = ACTIONS(4941), - [sym__word_no_digit] = ACTIONS(4939), - [sym__digits] = ACTIONS(4939), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4939), - [sym__code_span_start] = ACTIONS(4939), - [sym__emphasis_open_star] = ACTIONS(4939), - [sym__emphasis_open_underscore] = ACTIONS(4939), - [sym__strikeout_open] = ACTIONS(4939), - [sym__latex_span_start] = ACTIONS(4939), - [sym__single_quote_open] = ACTIONS(4939), - [sym__double_quote_open] = ACTIONS(4939), - [sym__superscript_open] = ACTIONS(4939), - [sym__subscript_open] = ACTIONS(4939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4939), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4939), - [sym__cite_author_in_text] = ACTIONS(4939), - [sym__cite_suppress_author] = ACTIONS(4939), - [sym__shortcode_open_escaped] = ACTIONS(4939), - [sym__shortcode_open] = ACTIONS(4939), - [sym__unclosed_span] = ACTIONS(4939), - [sym__strong_emphasis_open_star] = ACTIONS(4939), - [sym__strong_emphasis_open_underscore] = ACTIONS(4939), - [sym__strong_emphasis_close_underscore] = ACTIONS(4939), + [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__emphasis_close_star] = 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(1198)] = { - [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_STAR] = 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), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_RBRACK] = ACTIONS(4239), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(1199)] = { - [sym__backslash_escape] = ACTIONS(4943), - [sym_entity_reference] = ACTIONS(4943), - [sym_numeric_character_reference] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [sym__newline_token] = ACTIONS(4943), - [aux_sym_insert_token1] = ACTIONS(4943), - [aux_sym_delete_token1] = ACTIONS(4943), - [aux_sym_highlight_token1] = ACTIONS(4943), - [aux_sym_edit_comment_token1] = ACTIONS(4943), - [anon_sym_CARET_LBRACK] = ACTIONS(4943), - [anon_sym_LBRACK_CARET] = ACTIONS(4943), - [sym_uri_autolink] = ACTIONS(4943), - [sym_email_autolink] = ACTIONS(4943), - [sym__whitespace_ge_2] = ACTIONS(4943), - [aux_sym__whitespace_token1] = ACTIONS(4945), - [sym__word_no_digit] = ACTIONS(4943), - [sym__digits] = ACTIONS(4943), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4943), - [sym__code_span_start] = ACTIONS(4943), - [sym__emphasis_open_star] = ACTIONS(4943), - [sym__emphasis_open_underscore] = ACTIONS(4943), - [sym__emphasis_close_star] = ACTIONS(4943), - [sym__strikeout_open] = ACTIONS(4943), - [sym__latex_span_start] = ACTIONS(4943), - [sym__single_quote_open] = ACTIONS(4943), - [sym__double_quote_open] = ACTIONS(4943), - [sym__superscript_open] = ACTIONS(4943), - [sym__subscript_open] = ACTIONS(4943), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4943), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4943), - [sym__cite_author_in_text] = ACTIONS(4943), - [sym__cite_suppress_author] = ACTIONS(4943), - [sym__shortcode_open_escaped] = ACTIONS(4943), - [sym__shortcode_open] = ACTIONS(4943), - [sym__unclosed_span] = ACTIONS(4943), - [sym__strong_emphasis_open_star] = ACTIONS(4943), - [sym__strong_emphasis_open_underscore] = ACTIONS(4943), + [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__emphasis_close_star] = 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(1200)] = { - [sym__backslash_escape] = ACTIONS(4947), - [sym_entity_reference] = ACTIONS(4947), - [sym_numeric_character_reference] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_DQUOTE] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [sym__newline_token] = ACTIONS(4947), - [aux_sym_insert_token1] = ACTIONS(4947), - [aux_sym_delete_token1] = ACTIONS(4947), - [aux_sym_highlight_token1] = ACTIONS(4947), - [aux_sym_edit_comment_token1] = ACTIONS(4947), - [anon_sym_CARET_LBRACK] = ACTIONS(4947), - [anon_sym_LBRACK_CARET] = ACTIONS(4947), - [sym_uri_autolink] = ACTIONS(4947), - [sym_email_autolink] = ACTIONS(4947), - [sym__whitespace_ge_2] = ACTIONS(4947), - [aux_sym__whitespace_token1] = ACTIONS(4949), - [sym__word_no_digit] = ACTIONS(4947), - [sym__digits] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4947), - [sym__code_span_start] = ACTIONS(4947), - [sym__emphasis_open_star] = ACTIONS(4947), - [sym__emphasis_open_underscore] = ACTIONS(4947), - [sym__emphasis_close_star] = ACTIONS(4947), - [sym__strikeout_open] = ACTIONS(4947), - [sym__latex_span_start] = ACTIONS(4947), - [sym__single_quote_open] = ACTIONS(4947), - [sym__double_quote_open] = ACTIONS(4947), - [sym__superscript_open] = ACTIONS(4947), - [sym__subscript_open] = ACTIONS(4947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4947), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4947), - [sym__cite_author_in_text] = ACTIONS(4947), - [sym__cite_suppress_author] = ACTIONS(4947), - [sym__shortcode_open_escaped] = ACTIONS(4947), - [sym__shortcode_open] = ACTIONS(4947), - [sym__unclosed_span] = ACTIONS(4947), - [sym__strong_emphasis_open_star] = ACTIONS(4947), - [sym__strong_emphasis_open_underscore] = ACTIONS(4947), + [sym__backslash_escape] = ACTIONS(4507), + [sym_entity_reference] = ACTIONS(4507), + [sym_numeric_character_reference] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(4507), + [anon_sym_DOLLAR] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_QMARK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_BSLASH] = ACTIONS(4509), + [anon_sym_RBRACK] = ACTIONS(4507), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [sym__newline_token] = ACTIONS(4507), + [aux_sym_insert_token1] = ACTIONS(4507), + [aux_sym_delete_token1] = ACTIONS(4507), + [aux_sym_highlight_token1] = ACTIONS(4507), + [aux_sym_edit_comment_token1] = ACTIONS(4507), + [anon_sym_CARET_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK_CARET] = ACTIONS(4507), + [sym_uri_autolink] = ACTIONS(4507), + [sym_email_autolink] = ACTIONS(4507), + [sym__whitespace_ge_2] = ACTIONS(4507), + [aux_sym__whitespace_token1] = ACTIONS(4509), + [sym__word_no_digit] = ACTIONS(4507), + [sym__digits] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4507), + [sym__code_span_start] = ACTIONS(4507), + [sym__emphasis_open_star] = ACTIONS(4507), + [sym__emphasis_open_underscore] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4507), + [sym__latex_span_start] = ACTIONS(4507), + [sym__single_quote_open] = ACTIONS(4507), + [sym__double_quote_open] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4507), + [sym__subscript_open] = ACTIONS(4507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4507), + [sym__cite_author_in_text] = ACTIONS(4507), + [sym__cite_suppress_author] = ACTIONS(4507), + [sym__shortcode_open_escaped] = ACTIONS(4507), + [sym__shortcode_open] = ACTIONS(4507), + [sym__unclosed_span] = ACTIONS(4507), + [sym__strong_emphasis_open_star] = ACTIONS(4507), + [sym__strong_emphasis_open_underscore] = ACTIONS(4507), }, [STATE(1201)] = { - [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_STAR] = 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_RBRACK] = ACTIONS(4747), - [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), + [sym__backslash_escape] = ACTIONS(4511), + [sym_entity_reference] = ACTIONS(4511), + [sym_numeric_character_reference] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4511), + [anon_sym_POUND] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_COMMA] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_QMARK] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH] = ACTIONS(4513), + [anon_sym_RBRACK] = ACTIONS(4511), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_BQUOTE] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(4511), + [sym__newline_token] = ACTIONS(4511), + [aux_sym_insert_token1] = ACTIONS(4511), + [aux_sym_delete_token1] = ACTIONS(4511), + [aux_sym_highlight_token1] = ACTIONS(4511), + [aux_sym_edit_comment_token1] = ACTIONS(4511), + [anon_sym_CARET_LBRACK] = ACTIONS(4511), + [anon_sym_LBRACK_CARET] = ACTIONS(4511), + [sym_uri_autolink] = ACTIONS(4511), + [sym_email_autolink] = ACTIONS(4511), + [sym__whitespace_ge_2] = ACTIONS(4511), + [aux_sym__whitespace_token1] = ACTIONS(4513), + [sym__word_no_digit] = ACTIONS(4511), + [sym__digits] = ACTIONS(4511), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), + [sym__code_span_start] = ACTIONS(4511), + [sym__emphasis_open_star] = ACTIONS(4511), + [sym__emphasis_open_underscore] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4511), + [sym__latex_span_start] = ACTIONS(4511), + [sym__single_quote_open] = ACTIONS(4511), + [sym__double_quote_open] = ACTIONS(4511), + [sym__superscript_open] = ACTIONS(4511), + [sym__subscript_open] = ACTIONS(4511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), + [sym__cite_author_in_text] = ACTIONS(4511), + [sym__cite_suppress_author] = ACTIONS(4511), + [sym__shortcode_open_escaped] = ACTIONS(4511), + [sym__shortcode_open] = ACTIONS(4511), + [sym__unclosed_span] = ACTIONS(4511), + [sym__strong_emphasis_open_star] = ACTIONS(4511), + [sym__strong_emphasis_open_underscore] = ACTIONS(4511), }, [STATE(1202)] = { - [sym__backslash_escape] = ACTIONS(5183), - [sym_entity_reference] = ACTIONS(5183), - [sym_numeric_character_reference] = ACTIONS(5183), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5183), - [anon_sym_BANG] = ACTIONS(5183), - [anon_sym_DQUOTE] = ACTIONS(5183), - [anon_sym_POUND] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5183), - [anon_sym_PERCENT] = ACTIONS(5183), - [anon_sym_AMP] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5183), - [anon_sym_STAR] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_DOT] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5183), - [anon_sym_COLON] = ACTIONS(5183), - [anon_sym_SEMI] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_QMARK] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5185), - [anon_sym_BSLASH] = ACTIONS(5185), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym_BQUOTE] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [anon_sym_PIPE] = ACTIONS(5183), - [anon_sym_TILDE] = ACTIONS(5183), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [sym__newline_token] = ACTIONS(5183), - [aux_sym_insert_token1] = ACTIONS(5183), - [aux_sym_delete_token1] = ACTIONS(5183), - [aux_sym_highlight_token1] = ACTIONS(5183), - [aux_sym_edit_comment_token1] = ACTIONS(5183), - [anon_sym_CARET_LBRACK] = ACTIONS(5183), - [anon_sym_LBRACK_CARET] = ACTIONS(5183), - [sym_uri_autolink] = ACTIONS(5183), - [sym_email_autolink] = ACTIONS(5183), - [sym__whitespace_ge_2] = ACTIONS(5183), - [aux_sym__whitespace_token1] = ACTIONS(5185), - [sym__word_no_digit] = ACTIONS(5183), - [sym__digits] = ACTIONS(5183), - [anon_sym_DASH_DASH] = ACTIONS(5185), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5183), - [sym__code_span_start] = ACTIONS(5183), - [sym__emphasis_open_star] = ACTIONS(5183), - [sym__emphasis_open_underscore] = ACTIONS(5183), - [sym__strikeout_open] = ACTIONS(5183), - [sym__latex_span_start] = ACTIONS(5183), - [sym__single_quote_open] = ACTIONS(5183), - [sym__double_quote_open] = ACTIONS(5183), - [sym__superscript_open] = ACTIONS(5183), - [sym__subscript_open] = ACTIONS(5183), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5183), - [sym__cite_author_in_text] = ACTIONS(5183), - [sym__cite_suppress_author] = ACTIONS(5183), - [sym__shortcode_open_escaped] = ACTIONS(5183), - [sym__shortcode_open] = ACTIONS(5183), - [sym__unclosed_span] = ACTIONS(5183), - [sym__strong_emphasis_open_star] = ACTIONS(5183), - [sym__strong_emphasis_open_underscore] = ACTIONS(5183), + [sym__backslash_escape] = ACTIONS(4515), + [sym_entity_reference] = ACTIONS(4515), + [sym_numeric_character_reference] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4515), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_BSLASH] = ACTIONS(4517), + [anon_sym_RBRACK] = ACTIONS(4515), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_RPAREN] = ACTIONS(4515), + [sym__newline_token] = ACTIONS(4515), + [aux_sym_insert_token1] = ACTIONS(4515), + [aux_sym_delete_token1] = ACTIONS(4515), + [aux_sym_highlight_token1] = ACTIONS(4515), + [aux_sym_edit_comment_token1] = ACTIONS(4515), + [anon_sym_CARET_LBRACK] = ACTIONS(4515), + [anon_sym_LBRACK_CARET] = ACTIONS(4515), + [sym_uri_autolink] = ACTIONS(4515), + [sym_email_autolink] = ACTIONS(4515), + [sym__whitespace_ge_2] = ACTIONS(4515), + [aux_sym__whitespace_token1] = ACTIONS(4517), + [sym__word_no_digit] = ACTIONS(4515), + [sym__digits] = ACTIONS(4515), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4515), + [sym__code_span_start] = ACTIONS(4515), + [sym__emphasis_open_star] = ACTIONS(4515), + [sym__emphasis_open_underscore] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4515), + [sym__latex_span_start] = ACTIONS(4515), + [sym__single_quote_open] = ACTIONS(4515), + [sym__double_quote_open] = ACTIONS(4515), + [sym__superscript_open] = ACTIONS(4515), + [sym__subscript_open] = ACTIONS(4515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4515), + [sym__cite_author_in_text] = ACTIONS(4515), + [sym__cite_suppress_author] = ACTIONS(4515), + [sym__shortcode_open_escaped] = ACTIONS(4515), + [sym__shortcode_open] = ACTIONS(4515), + [sym__unclosed_span] = ACTIONS(4515), + [sym__strong_emphasis_open_star] = ACTIONS(4515), + [sym__strong_emphasis_open_underscore] = ACTIONS(4515), }, [STATE(1203)] = { - [sym__backslash_escape] = ACTIONS(4943), - [sym_entity_reference] = ACTIONS(4943), - [sym_numeric_character_reference] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(4945), - [anon_sym_RBRACK] = ACTIONS(4943), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [sym__newline_token] = ACTIONS(4943), - [aux_sym_insert_token1] = ACTIONS(4943), - [aux_sym_delete_token1] = ACTIONS(4943), - [aux_sym_highlight_token1] = ACTIONS(4943), - [aux_sym_edit_comment_token1] = ACTIONS(4943), - [anon_sym_CARET_LBRACK] = ACTIONS(4943), - [anon_sym_LBRACK_CARET] = ACTIONS(4943), - [sym_uri_autolink] = ACTIONS(4943), - [sym_email_autolink] = ACTIONS(4943), - [sym__whitespace_ge_2] = ACTIONS(4943), - [aux_sym__whitespace_token1] = ACTIONS(4945), - [sym__word_no_digit] = ACTIONS(4943), - [sym__digits] = ACTIONS(4943), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4943), - [sym__code_span_start] = ACTIONS(4943), - [sym__emphasis_open_star] = ACTIONS(4943), - [sym__emphasis_open_underscore] = ACTIONS(4943), - [sym__strikeout_open] = ACTIONS(4943), - [sym__latex_span_start] = ACTIONS(4943), - [sym__single_quote_open] = ACTIONS(4943), - [sym__double_quote_open] = ACTIONS(4943), - [sym__superscript_open] = ACTIONS(4943), - [sym__subscript_open] = ACTIONS(4943), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4943), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4943), - [sym__cite_author_in_text] = ACTIONS(4943), - [sym__cite_suppress_author] = ACTIONS(4943), - [sym__shortcode_open_escaped] = ACTIONS(4943), - [sym__shortcode_open] = ACTIONS(4943), - [sym__unclosed_span] = ACTIONS(4943), - [sym__strong_emphasis_open_star] = ACTIONS(4943), - [sym__strong_emphasis_open_underscore] = ACTIONS(4943), + [sym__backslash_escape] = ACTIONS(4519), + [sym_entity_reference] = ACTIONS(4519), + [sym_numeric_character_reference] = ACTIONS(4519), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4519), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_BSLASH] = ACTIONS(4521), + [anon_sym_RBRACK] = ACTIONS(4519), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_BQUOTE] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [sym__newline_token] = ACTIONS(4519), + [aux_sym_insert_token1] = ACTIONS(4519), + [aux_sym_delete_token1] = ACTIONS(4519), + [aux_sym_highlight_token1] = ACTIONS(4519), + [aux_sym_edit_comment_token1] = ACTIONS(4519), + [anon_sym_CARET_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_CARET] = ACTIONS(4519), + [sym_uri_autolink] = ACTIONS(4519), + [sym_email_autolink] = ACTIONS(4519), + [sym__whitespace_ge_2] = ACTIONS(4519), + [aux_sym__whitespace_token1] = ACTIONS(4521), + [sym__word_no_digit] = ACTIONS(4519), + [sym__digits] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [sym__code_span_start] = ACTIONS(4519), + [sym__emphasis_open_star] = ACTIONS(4519), + [sym__emphasis_open_underscore] = ACTIONS(4519), + [sym__strikeout_open] = ACTIONS(4519), + [sym__latex_span_start] = ACTIONS(4519), + [sym__single_quote_open] = ACTIONS(4519), + [sym__double_quote_open] = ACTIONS(4519), + [sym__superscript_open] = ACTIONS(4519), + [sym__subscript_open] = ACTIONS(4519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4519), + [sym__cite_suppress_author] = ACTIONS(4519), + [sym__shortcode_open_escaped] = ACTIONS(4519), + [sym__shortcode_open] = ACTIONS(4519), + [sym__unclosed_span] = ACTIONS(4519), + [sym__strong_emphasis_open_star] = ACTIONS(4519), + [sym__strong_emphasis_open_underscore] = ACTIONS(4519), }, [STATE(1204)] = { - [sym__backslash_escape] = ACTIONS(4947), - [sym_entity_reference] = ACTIONS(4947), - [sym_numeric_character_reference] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_DQUOTE] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH] = ACTIONS(4949), - [anon_sym_RBRACK] = ACTIONS(4947), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [sym__newline_token] = ACTIONS(4947), - [aux_sym_insert_token1] = ACTIONS(4947), - [aux_sym_delete_token1] = ACTIONS(4947), - [aux_sym_highlight_token1] = ACTIONS(4947), - [aux_sym_edit_comment_token1] = ACTIONS(4947), - [anon_sym_CARET_LBRACK] = ACTIONS(4947), - [anon_sym_LBRACK_CARET] = ACTIONS(4947), - [sym_uri_autolink] = ACTIONS(4947), - [sym_email_autolink] = ACTIONS(4947), - [sym__whitespace_ge_2] = ACTIONS(4947), - [aux_sym__whitespace_token1] = ACTIONS(4949), - [sym__word_no_digit] = ACTIONS(4947), - [sym__digits] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4947), - [sym__code_span_start] = ACTIONS(4947), - [sym__emphasis_open_star] = ACTIONS(4947), - [sym__emphasis_open_underscore] = ACTIONS(4947), - [sym__strikeout_open] = ACTIONS(4947), - [sym__latex_span_start] = ACTIONS(4947), - [sym__single_quote_open] = ACTIONS(4947), - [sym__double_quote_open] = ACTIONS(4947), - [sym__superscript_open] = ACTIONS(4947), - [sym__subscript_open] = ACTIONS(4947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4947), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4947), - [sym__cite_author_in_text] = ACTIONS(4947), - [sym__cite_suppress_author] = ACTIONS(4947), - [sym__shortcode_open_escaped] = ACTIONS(4947), - [sym__shortcode_open] = ACTIONS(4947), - [sym__unclosed_span] = ACTIONS(4947), - [sym__strong_emphasis_open_star] = ACTIONS(4947), - [sym__strong_emphasis_open_underscore] = ACTIONS(4947), + [sym__backslash_escape] = ACTIONS(4523), + [sym_entity_reference] = ACTIONS(4523), + [sym_numeric_character_reference] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_BSLASH] = ACTIONS(4525), + [anon_sym_RBRACK] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [sym__newline_token] = ACTIONS(4523), + [aux_sym_insert_token1] = ACTIONS(4523), + [aux_sym_delete_token1] = ACTIONS(4523), + [aux_sym_highlight_token1] = ACTIONS(4523), + [aux_sym_edit_comment_token1] = ACTIONS(4523), + [anon_sym_CARET_LBRACK] = ACTIONS(4523), + [anon_sym_LBRACK_CARET] = ACTIONS(4523), + [sym_uri_autolink] = ACTIONS(4523), + [sym_email_autolink] = ACTIONS(4523), + [sym__whitespace_ge_2] = ACTIONS(4523), + [aux_sym__whitespace_token1] = ACTIONS(4525), + [sym__word_no_digit] = ACTIONS(4523), + [sym__digits] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4523), + [sym__code_span_start] = ACTIONS(4523), + [sym__emphasis_open_star] = ACTIONS(4523), + [sym__emphasis_open_underscore] = ACTIONS(4523), + [sym__strikeout_open] = ACTIONS(4523), + [sym__latex_span_start] = ACTIONS(4523), + [sym__single_quote_open] = ACTIONS(4523), + [sym__double_quote_open] = ACTIONS(4523), + [sym__superscript_open] = ACTIONS(4523), + [sym__subscript_open] = ACTIONS(4523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4523), + [sym__cite_author_in_text] = ACTIONS(4523), + [sym__cite_suppress_author] = ACTIONS(4523), + [sym__shortcode_open_escaped] = ACTIONS(4523), + [sym__shortcode_open] = ACTIONS(4523), + [sym__unclosed_span] = ACTIONS(4523), + [sym__strong_emphasis_open_star] = ACTIONS(4523), + [sym__strong_emphasis_open_underscore] = ACTIONS(4523), }, [STATE(1205)] = { - [sym__backslash_escape] = ACTIONS(4951), - [sym_entity_reference] = ACTIONS(4951), - [sym_numeric_character_reference] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4951), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [sym__newline_token] = ACTIONS(4951), - [aux_sym_insert_token1] = ACTIONS(4951), - [aux_sym_delete_token1] = ACTIONS(4951), - [aux_sym_highlight_token1] = ACTIONS(4951), - [aux_sym_edit_comment_token1] = ACTIONS(4951), - [anon_sym_CARET_LBRACK] = ACTIONS(4951), - [anon_sym_LBRACK_CARET] = ACTIONS(4951), - [sym_uri_autolink] = ACTIONS(4951), - [sym_email_autolink] = ACTIONS(4951), - [sym__whitespace_ge_2] = ACTIONS(4951), - [aux_sym__whitespace_token1] = ACTIONS(4953), - [sym__word_no_digit] = ACTIONS(4951), - [sym__digits] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4951), - [sym__code_span_start] = ACTIONS(4951), - [sym__emphasis_open_star] = ACTIONS(4951), - [sym__emphasis_open_underscore] = ACTIONS(4951), - [sym__strikeout_open] = ACTIONS(4951), - [sym__latex_span_start] = ACTIONS(4951), - [sym__single_quote_open] = ACTIONS(4951), - [sym__double_quote_open] = ACTIONS(4951), - [sym__superscript_open] = ACTIONS(4951), - [sym__subscript_open] = ACTIONS(4951), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4951), - [sym__cite_author_in_text] = ACTIONS(4951), - [sym__cite_suppress_author] = ACTIONS(4951), - [sym__shortcode_open_escaped] = ACTIONS(4951), - [sym__shortcode_open] = ACTIONS(4951), - [sym__unclosed_span] = ACTIONS(4951), - [sym__strong_emphasis_open_star] = ACTIONS(4951), - [sym__strong_emphasis_open_underscore] = ACTIONS(4951), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_RBRACK] = ACTIONS(4243), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(1206)] = { - [sym__backslash_escape] = ACTIONS(4955), - [sym_entity_reference] = ACTIONS(4955), - [sym_numeric_character_reference] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_DQUOTE] = ACTIONS(4955), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4957), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4955), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [sym__newline_token] = ACTIONS(4955), - [aux_sym_insert_token1] = ACTIONS(4955), - [aux_sym_delete_token1] = ACTIONS(4955), - [aux_sym_highlight_token1] = ACTIONS(4955), - [aux_sym_edit_comment_token1] = ACTIONS(4955), - [anon_sym_CARET_LBRACK] = ACTIONS(4955), - [anon_sym_LBRACK_CARET] = ACTIONS(4955), - [sym_uri_autolink] = ACTIONS(4955), - [sym_email_autolink] = ACTIONS(4955), - [sym__whitespace_ge_2] = ACTIONS(4955), - [aux_sym__whitespace_token1] = ACTIONS(4957), - [sym__word_no_digit] = ACTIONS(4955), - [sym__digits] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4955), - [sym__code_span_start] = ACTIONS(4955), - [sym__emphasis_open_star] = ACTIONS(4955), - [sym__emphasis_open_underscore] = ACTIONS(4955), - [sym__strikeout_open] = ACTIONS(4955), - [sym__latex_span_start] = ACTIONS(4955), - [sym__single_quote_open] = ACTIONS(4955), - [sym__double_quote_open] = ACTIONS(4955), - [sym__superscript_open] = ACTIONS(4955), - [sym__subscript_open] = ACTIONS(4955), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4955), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4955), - [sym__cite_author_in_text] = ACTIONS(4955), - [sym__cite_suppress_author] = ACTIONS(4955), - [sym__shortcode_open_escaped] = ACTIONS(4955), - [sym__shortcode_open] = ACTIONS(4955), - [sym__unclosed_span] = ACTIONS(4955), - [sym__strong_emphasis_open_star] = ACTIONS(4955), - [sym__strong_emphasis_open_underscore] = ACTIONS(4955), + [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__emphasis_close_star] = 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(1207)] = { - [sym__backslash_escape] = ACTIONS(4959), - [sym_entity_reference] = ACTIONS(4959), - [sym_numeric_character_reference] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_DQUOTE] = ACTIONS(4959), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4961), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_TILDE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4959), - [sym__newline_token] = ACTIONS(4959), - [aux_sym_insert_token1] = ACTIONS(4959), - [aux_sym_delete_token1] = ACTIONS(4959), - [aux_sym_highlight_token1] = ACTIONS(4959), - [aux_sym_edit_comment_token1] = ACTIONS(4959), - [anon_sym_CARET_LBRACK] = ACTIONS(4959), - [anon_sym_LBRACK_CARET] = ACTIONS(4959), - [sym_uri_autolink] = ACTIONS(4959), - [sym_email_autolink] = ACTIONS(4959), - [sym__whitespace_ge_2] = ACTIONS(4959), - [aux_sym__whitespace_token1] = ACTIONS(4961), - [sym__word_no_digit] = ACTIONS(4959), - [sym__digits] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4959), - [sym__code_span_start] = ACTIONS(4959), - [sym__emphasis_open_star] = ACTIONS(4959), - [sym__emphasis_open_underscore] = ACTIONS(4959), - [sym__strikeout_open] = ACTIONS(4959), - [sym__latex_span_start] = ACTIONS(4959), - [sym__single_quote_open] = ACTIONS(4959), - [sym__double_quote_open] = ACTIONS(4959), - [sym__superscript_open] = ACTIONS(4959), - [sym__subscript_open] = ACTIONS(4959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4959), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4959), - [sym__cite_author_in_text] = ACTIONS(4959), - [sym__cite_suppress_author] = ACTIONS(4959), - [sym__shortcode_open_escaped] = ACTIONS(4959), - [sym__shortcode_open] = ACTIONS(4959), - [sym__unclosed_span] = ACTIONS(4959), - [sym__strong_emphasis_open_star] = ACTIONS(4959), - [sym__strong_emphasis_open_underscore] = ACTIONS(4959), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_RBRACK] = ACTIONS(4247), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(1208)] = { - [sym__backslash_escape] = ACTIONS(4963), - [sym_entity_reference] = ACTIONS(4963), - [sym_numeric_character_reference] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_DQUOTE] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4963), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4963), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_RPAREN] = ACTIONS(4963), - [sym__newline_token] = ACTIONS(4963), - [aux_sym_insert_token1] = ACTIONS(4963), - [aux_sym_delete_token1] = ACTIONS(4963), - [aux_sym_highlight_token1] = ACTIONS(4963), - [aux_sym_edit_comment_token1] = ACTIONS(4963), - [anon_sym_CARET_LBRACK] = ACTIONS(4963), - [anon_sym_LBRACK_CARET] = ACTIONS(4963), - [sym_uri_autolink] = ACTIONS(4963), - [sym_email_autolink] = ACTIONS(4963), - [sym__whitespace_ge_2] = ACTIONS(4963), - [aux_sym__whitespace_token1] = ACTIONS(4965), - [sym__word_no_digit] = ACTIONS(4963), - [sym__digits] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4963), - [sym__code_span_start] = ACTIONS(4963), - [sym__emphasis_open_star] = ACTIONS(4963), - [sym__emphasis_open_underscore] = ACTIONS(4963), - [sym__strikeout_open] = ACTIONS(4963), - [sym__latex_span_start] = ACTIONS(4963), - [sym__single_quote_open] = ACTIONS(4963), - [sym__double_quote_open] = ACTIONS(4963), - [sym__superscript_open] = ACTIONS(4963), - [sym__subscript_open] = ACTIONS(4963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4963), - [sym__cite_author_in_text] = ACTIONS(4963), - [sym__cite_suppress_author] = ACTIONS(4963), - [sym__shortcode_open_escaped] = ACTIONS(4963), - [sym__shortcode_open] = ACTIONS(4963), - [sym__unclosed_span] = ACTIONS(4963), - [sym__strong_emphasis_open_star] = ACTIONS(4963), - [sym__strong_emphasis_open_underscore] = ACTIONS(4963), + [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__superscript_close] = 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(1209)] = { - [sym__backslash_escape] = ACTIONS(4967), - [sym_entity_reference] = ACTIONS(4967), - [sym_numeric_character_reference] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4969), - [anon_sym_RBRACK] = ACTIONS(4967), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_BQUOTE] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [sym__newline_token] = ACTIONS(4967), - [aux_sym_insert_token1] = ACTIONS(4967), - [aux_sym_delete_token1] = ACTIONS(4967), - [aux_sym_highlight_token1] = ACTIONS(4967), - [aux_sym_edit_comment_token1] = ACTIONS(4967), - [anon_sym_CARET_LBRACK] = ACTIONS(4967), - [anon_sym_LBRACK_CARET] = ACTIONS(4967), - [sym_uri_autolink] = ACTIONS(4967), - [sym_email_autolink] = ACTIONS(4967), - [sym__whitespace_ge_2] = ACTIONS(4967), - [aux_sym__whitespace_token1] = ACTIONS(4969), - [sym__word_no_digit] = ACTIONS(4967), - [sym__digits] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [sym__code_span_start] = ACTIONS(4967), - [sym__emphasis_open_star] = ACTIONS(4967), - [sym__emphasis_open_underscore] = ACTIONS(4967), - [sym__strikeout_open] = ACTIONS(4967), - [sym__latex_span_start] = ACTIONS(4967), - [sym__single_quote_open] = ACTIONS(4967), - [sym__double_quote_open] = ACTIONS(4967), - [sym__superscript_open] = ACTIONS(4967), - [sym__subscript_open] = ACTIONS(4967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4967), - [sym__cite_author_in_text] = ACTIONS(4967), - [sym__cite_suppress_author] = ACTIONS(4967), - [sym__shortcode_open_escaped] = ACTIONS(4967), - [sym__shortcode_open] = ACTIONS(4967), - [sym__unclosed_span] = ACTIONS(4967), - [sym__strong_emphasis_open_star] = ACTIONS(4967), - [sym__strong_emphasis_open_underscore] = ACTIONS(4967), + [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(1210)] = { - [sym__backslash_escape] = ACTIONS(4971), - [sym_entity_reference] = ACTIONS(4971), - [sym_numeric_character_reference] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_RBRACK] = ACTIONS(4971), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym_BQUOTE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [sym__newline_token] = ACTIONS(4971), - [aux_sym_insert_token1] = ACTIONS(4971), - [aux_sym_delete_token1] = ACTIONS(4971), - [aux_sym_highlight_token1] = ACTIONS(4971), - [aux_sym_edit_comment_token1] = ACTIONS(4971), - [anon_sym_CARET_LBRACK] = ACTIONS(4971), - [anon_sym_LBRACK_CARET] = ACTIONS(4971), - [sym_uri_autolink] = ACTIONS(4971), - [sym_email_autolink] = ACTIONS(4971), - [sym__whitespace_ge_2] = ACTIONS(4971), - [aux_sym__whitespace_token1] = ACTIONS(4973), - [sym__word_no_digit] = ACTIONS(4971), - [sym__digits] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4971), - [sym__code_span_start] = ACTIONS(4971), - [sym__emphasis_open_star] = ACTIONS(4971), - [sym__emphasis_open_underscore] = ACTIONS(4971), - [sym__strikeout_open] = ACTIONS(4971), - [sym__latex_span_start] = ACTIONS(4971), - [sym__single_quote_open] = ACTIONS(4971), - [sym__double_quote_open] = ACTIONS(4971), - [sym__superscript_open] = ACTIONS(4971), - [sym__subscript_open] = ACTIONS(4971), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4971), - [sym__cite_author_in_text] = ACTIONS(4971), - [sym__cite_suppress_author] = ACTIONS(4971), - [sym__shortcode_open_escaped] = ACTIONS(4971), - [sym__shortcode_open] = ACTIONS(4971), - [sym__unclosed_span] = ACTIONS(4971), - [sym__strong_emphasis_open_star] = ACTIONS(4971), - [sym__strong_emphasis_open_underscore] = ACTIONS(4971), + [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_RBRACK] = ACTIONS(4535), + [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(1211)] = { - [sym__backslash_escape] = ACTIONS(4975), - [sym_entity_reference] = ACTIONS(4975), - [sym_numeric_character_reference] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_RBRACK] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [sym__newline_token] = ACTIONS(4975), - [aux_sym_insert_token1] = ACTIONS(4975), - [aux_sym_delete_token1] = ACTIONS(4975), - [aux_sym_highlight_token1] = ACTIONS(4975), - [aux_sym_edit_comment_token1] = ACTIONS(4975), - [anon_sym_CARET_LBRACK] = ACTIONS(4975), - [anon_sym_LBRACK_CARET] = ACTIONS(4975), - [sym_uri_autolink] = ACTIONS(4975), - [sym_email_autolink] = ACTIONS(4975), - [sym__whitespace_ge_2] = ACTIONS(4975), - [aux_sym__whitespace_token1] = ACTIONS(4977), - [sym__word_no_digit] = ACTIONS(4975), - [sym__digits] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [sym__code_span_start] = ACTIONS(4975), - [sym__emphasis_open_star] = ACTIONS(4975), - [sym__emphasis_open_underscore] = ACTIONS(4975), - [sym__strikeout_open] = ACTIONS(4975), - [sym__latex_span_start] = ACTIONS(4975), - [sym__single_quote_open] = ACTIONS(4975), - [sym__double_quote_open] = ACTIONS(4975), - [sym__superscript_open] = ACTIONS(4975), - [sym__subscript_open] = ACTIONS(4975), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4975), - [sym__cite_author_in_text] = ACTIONS(4975), - [sym__cite_suppress_author] = ACTIONS(4975), - [sym__shortcode_open_escaped] = ACTIONS(4975), - [sym__shortcode_open] = ACTIONS(4975), - [sym__unclosed_span] = ACTIONS(4975), - [sym__strong_emphasis_open_star] = ACTIONS(4975), - [sym__strong_emphasis_open_underscore] = ACTIONS(4975), + [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_RBRACK] = ACTIONS(4539), + [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__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(1212)] = { - [sym__backslash_escape] = ACTIONS(4979), - [sym_entity_reference] = ACTIONS(4979), - [sym_numeric_character_reference] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_COLON] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4979), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), - [sym__newline_token] = ACTIONS(4979), - [aux_sym_insert_token1] = ACTIONS(4979), - [aux_sym_delete_token1] = ACTIONS(4979), - [aux_sym_highlight_token1] = ACTIONS(4979), - [aux_sym_edit_comment_token1] = ACTIONS(4979), - [anon_sym_CARET_LBRACK] = ACTIONS(4979), - [anon_sym_LBRACK_CARET] = ACTIONS(4979), - [sym_uri_autolink] = ACTIONS(4979), - [sym_email_autolink] = ACTIONS(4979), - [sym__whitespace_ge_2] = ACTIONS(4979), - [aux_sym__whitespace_token1] = ACTIONS(4981), - [sym__word_no_digit] = ACTIONS(4979), - [sym__digits] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4979), - [sym__code_span_start] = ACTIONS(4979), - [sym__emphasis_open_star] = ACTIONS(4979), - [sym__emphasis_open_underscore] = ACTIONS(4979), - [sym__strikeout_open] = ACTIONS(4979), - [sym__latex_span_start] = ACTIONS(4979), - [sym__single_quote_open] = ACTIONS(4979), - [sym__double_quote_open] = ACTIONS(4979), - [sym__superscript_open] = ACTIONS(4979), - [sym__subscript_open] = ACTIONS(4979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4979), - [sym__cite_author_in_text] = ACTIONS(4979), - [sym__cite_suppress_author] = ACTIONS(4979), - [sym__shortcode_open_escaped] = ACTIONS(4979), - [sym__shortcode_open] = ACTIONS(4979), - [sym__unclosed_span] = ACTIONS(4979), - [sym__strong_emphasis_open_star] = ACTIONS(4979), - [sym__strong_emphasis_open_underscore] = ACTIONS(4979), + [sym__backslash_escape] = ACTIONS(4503), + [sym_entity_reference] = ACTIONS(4503), + [sym_numeric_character_reference] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [anon_sym_RBRACK] = ACTIONS(4503), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_BQUOTE] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_PIPE] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [sym__newline_token] = ACTIONS(4503), + [aux_sym_insert_token1] = ACTIONS(4503), + [aux_sym_delete_token1] = ACTIONS(4503), + [aux_sym_highlight_token1] = ACTIONS(4503), + [aux_sym_edit_comment_token1] = ACTIONS(4503), + [anon_sym_CARET_LBRACK] = ACTIONS(4503), + [anon_sym_LBRACK_CARET] = ACTIONS(4503), + [sym_uri_autolink] = ACTIONS(4503), + [sym_email_autolink] = ACTIONS(4503), + [sym__whitespace_ge_2] = ACTIONS(4503), + [aux_sym__whitespace_token1] = ACTIONS(4505), + [sym__word_no_digit] = ACTIONS(4503), + [sym__digits] = ACTIONS(4503), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4503), + [sym__code_span_start] = ACTIONS(4503), + [sym__emphasis_open_star] = ACTIONS(4503), + [sym__emphasis_open_underscore] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4503), + [sym__latex_span_start] = ACTIONS(4503), + [sym__single_quote_open] = ACTIONS(4503), + [sym__double_quote_open] = ACTIONS(4503), + [sym__superscript_open] = ACTIONS(4503), + [sym__subscript_open] = ACTIONS(4503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4503), + [sym__cite_author_in_text] = ACTIONS(4503), + [sym__cite_suppress_author] = ACTIONS(4503), + [sym__shortcode_open_escaped] = ACTIONS(4503), + [sym__shortcode_open] = ACTIONS(4503), + [sym__unclosed_span] = ACTIONS(4503), + [sym__strong_emphasis_open_star] = ACTIONS(4503), + [sym__strong_emphasis_open_underscore] = ACTIONS(4503), }, [STATE(1213)] = { - [ts_builtin_sym_end] = ACTIONS(5179), - [sym__backslash_escape] = ACTIONS(5179), - [sym_entity_reference] = ACTIONS(5179), - [sym_numeric_character_reference] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_QMARK] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_BSLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [sym__newline_token] = ACTIONS(5179), - [aux_sym_insert_token1] = ACTIONS(5179), - [aux_sym_delete_token1] = ACTIONS(5179), - [aux_sym_highlight_token1] = ACTIONS(5179), - [aux_sym_edit_comment_token1] = ACTIONS(5179), - [anon_sym_CARET_LBRACK] = ACTIONS(5179), - [anon_sym_LBRACK_CARET] = ACTIONS(5179), - [sym_uri_autolink] = ACTIONS(5179), - [sym_email_autolink] = ACTIONS(5179), - [sym__whitespace_ge_2] = ACTIONS(5179), - [aux_sym__whitespace_token1] = ACTIONS(5181), - [sym__word_no_digit] = ACTIONS(5179), - [sym__digits] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5181), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5179), - [sym__code_span_start] = ACTIONS(5179), - [sym__emphasis_open_star] = ACTIONS(5179), - [sym__emphasis_open_underscore] = ACTIONS(5179), - [sym__strikeout_open] = ACTIONS(5179), - [sym__latex_span_start] = ACTIONS(5179), - [sym__single_quote_open] = ACTIONS(5179), - [sym__double_quote_open] = ACTIONS(5179), - [sym__superscript_open] = ACTIONS(5179), - [sym__subscript_open] = ACTIONS(5179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5179), - [sym__cite_author_in_text] = ACTIONS(5179), - [sym__cite_suppress_author] = ACTIONS(5179), - [sym__shortcode_open_escaped] = ACTIONS(5179), - [sym__shortcode_open] = ACTIONS(5179), - [sym__unclosed_span] = ACTIONS(5179), - [sym__strong_emphasis_open_star] = ACTIONS(5179), - [sym__strong_emphasis_open_underscore] = ACTIONS(5179), + [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(4251), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(1214)] = { - [sym__backslash_escape] = ACTIONS(4983), - [sym_entity_reference] = ACTIONS(4983), - [sym_numeric_character_reference] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [sym__newline_token] = ACTIONS(4983), - [aux_sym_insert_token1] = ACTIONS(4983), - [aux_sym_delete_token1] = ACTIONS(4983), - [aux_sym_highlight_token1] = ACTIONS(4983), - [aux_sym_edit_comment_token1] = ACTIONS(4983), - [anon_sym_CARET_LBRACK] = ACTIONS(4983), - [anon_sym_LBRACK_CARET] = ACTIONS(4983), - [sym_uri_autolink] = ACTIONS(4983), - [sym_email_autolink] = ACTIONS(4983), - [sym__whitespace_ge_2] = ACTIONS(4983), - [aux_sym__whitespace_token1] = ACTIONS(4985), - [sym__word_no_digit] = ACTIONS(4983), - [sym__digits] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4983), - [sym__code_span_start] = ACTIONS(4983), - [sym__emphasis_open_star] = ACTIONS(4983), - [sym__emphasis_open_underscore] = ACTIONS(4983), - [sym__strikeout_open] = ACTIONS(4983), - [sym__latex_span_start] = ACTIONS(4983), - [sym__single_quote_open] = ACTIONS(4983), - [sym__double_quote_open] = ACTIONS(4983), - [sym__superscript_open] = ACTIONS(4983), - [sym__subscript_open] = ACTIONS(4983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4983), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4983), - [sym__cite_author_in_text] = ACTIONS(4983), - [sym__cite_suppress_author] = ACTIONS(4983), - [sym__shortcode_open_escaped] = ACTIONS(4983), - [sym__shortcode_open] = ACTIONS(4983), - [sym__unclosed_span] = ACTIONS(4983), - [sym__strong_emphasis_open_star] = ACTIONS(4983), - [sym__strong_emphasis_open_underscore] = ACTIONS(4983), + [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(1215)] = { - [sym__backslash_escape] = ACTIONS(4987), - [sym_entity_reference] = ACTIONS(4987), - [sym_numeric_character_reference] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym__newline_token] = ACTIONS(4987), - [aux_sym_insert_token1] = ACTIONS(4987), - [aux_sym_delete_token1] = ACTIONS(4987), - [aux_sym_highlight_token1] = ACTIONS(4987), - [aux_sym_edit_comment_token1] = ACTIONS(4987), - [anon_sym_CARET_LBRACK] = ACTIONS(4987), - [anon_sym_LBRACK_CARET] = ACTIONS(4987), - [sym_uri_autolink] = ACTIONS(4987), - [sym_email_autolink] = ACTIONS(4987), - [sym__whitespace_ge_2] = ACTIONS(4987), - [aux_sym__whitespace_token1] = ACTIONS(4989), - [sym__word_no_digit] = ACTIONS(4987), - [sym__digits] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4987), - [sym__code_span_start] = ACTIONS(4987), - [sym__emphasis_open_star] = ACTIONS(4987), - [sym__emphasis_open_underscore] = ACTIONS(4987), - [sym__strikeout_open] = ACTIONS(4987), - [sym__latex_span_start] = ACTIONS(4987), - [sym__single_quote_open] = ACTIONS(4987), - [sym__double_quote_open] = ACTIONS(4987), - [sym__superscript_open] = ACTIONS(4987), - [sym__subscript_open] = ACTIONS(4987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4987), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4987), - [sym__cite_author_in_text] = ACTIONS(4987), - [sym__cite_suppress_author] = ACTIONS(4987), - [sym__shortcode_open_escaped] = ACTIONS(4987), - [sym__shortcode_open] = ACTIONS(4987), - [sym__unclosed_span] = ACTIONS(4987), - [sym__strong_emphasis_open_star] = ACTIONS(4987), - [sym__strong_emphasis_open_underscore] = ACTIONS(4987), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_RBRACK] = ACTIONS(4255), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(1216)] = { - [sym__backslash_escape] = ACTIONS(5179), - [sym_entity_reference] = ACTIONS(5179), - [sym_numeric_character_reference] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_QMARK] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_BSLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [sym__newline_token] = ACTIONS(5179), - [aux_sym_insert_token1] = ACTIONS(5179), - [aux_sym_delete_token1] = ACTIONS(5179), - [aux_sym_highlight_token1] = ACTIONS(5179), - [aux_sym_edit_comment_token1] = ACTIONS(5179), - [anon_sym_CARET_LBRACK] = ACTIONS(5179), - [anon_sym_LBRACK_CARET] = ACTIONS(5179), - [sym_uri_autolink] = ACTIONS(5179), - [sym_email_autolink] = ACTIONS(5179), - [sym__whitespace_ge_2] = ACTIONS(5179), - [aux_sym__whitespace_token1] = ACTIONS(5181), - [sym__word_no_digit] = ACTIONS(5179), - [sym__digits] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5181), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5179), - [sym__code_span_start] = ACTIONS(5179), - [sym__emphasis_open_star] = ACTIONS(5179), - [sym__emphasis_open_underscore] = ACTIONS(5179), - [sym__strikeout_open] = ACTIONS(5179), - [sym__latex_span_start] = ACTIONS(5179), - [sym__single_quote_open] = ACTIONS(5179), - [sym__double_quote_open] = ACTIONS(5179), - [sym__superscript_open] = ACTIONS(5179), - [sym__subscript_open] = ACTIONS(5179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5179), - [sym__cite_author_in_text] = ACTIONS(5179), - [sym__cite_suppress_author] = ACTIONS(5179), - [sym__shortcode_open_escaped] = ACTIONS(5179), - [sym__shortcode_open] = ACTIONS(5179), - [sym__unclosed_span] = ACTIONS(5179), - [sym__strong_emphasis_open_star] = ACTIONS(5179), - [sym__strong_emphasis_close_star] = ACTIONS(5179), - [sym__strong_emphasis_open_underscore] = ACTIONS(5179), + [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(1217)] = { - [sym__backslash_escape] = ACTIONS(4991), - [sym_entity_reference] = ACTIONS(4991), - [sym_numeric_character_reference] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH] = ACTIONS(4993), - [anon_sym_RBRACK] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym__newline_token] = ACTIONS(4991), - [aux_sym_insert_token1] = ACTIONS(4991), - [aux_sym_delete_token1] = ACTIONS(4991), - [aux_sym_highlight_token1] = ACTIONS(4991), - [aux_sym_edit_comment_token1] = ACTIONS(4991), - [anon_sym_CARET_LBRACK] = ACTIONS(4991), - [anon_sym_LBRACK_CARET] = ACTIONS(4991), - [sym_uri_autolink] = ACTIONS(4991), - [sym_email_autolink] = ACTIONS(4991), - [sym__whitespace_ge_2] = ACTIONS(4991), - [aux_sym__whitespace_token1] = ACTIONS(4993), - [sym__word_no_digit] = ACTIONS(4991), - [sym__digits] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), - [sym__code_span_start] = ACTIONS(4991), - [sym__emphasis_open_star] = ACTIONS(4991), - [sym__emphasis_open_underscore] = ACTIONS(4991), - [sym__strikeout_open] = ACTIONS(4991), - [sym__latex_span_start] = ACTIONS(4991), - [sym__single_quote_open] = ACTIONS(4991), - [sym__double_quote_open] = ACTIONS(4991), - [sym__superscript_open] = ACTIONS(4991), - [sym__subscript_open] = ACTIONS(4991), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4991), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4991), - [sym__cite_author_in_text] = ACTIONS(4991), - [sym__cite_suppress_author] = ACTIONS(4991), - [sym__shortcode_open_escaped] = ACTIONS(4991), - [sym__shortcode_open] = ACTIONS(4991), - [sym__unclosed_span] = ACTIONS(4991), - [sym__strong_emphasis_open_star] = ACTIONS(4991), - [sym__strong_emphasis_open_underscore] = ACTIONS(4991), + [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_RBRACK] = ACTIONS(4543), + [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(1218)] = { - [sym__backslash_escape] = ACTIONS(4995), - [sym_entity_reference] = ACTIONS(4995), - [sym_numeric_character_reference] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym__newline_token] = ACTIONS(4995), - [aux_sym_insert_token1] = ACTIONS(4995), - [aux_sym_delete_token1] = ACTIONS(4995), - [aux_sym_highlight_token1] = ACTIONS(4995), - [aux_sym_edit_comment_token1] = ACTIONS(4995), - [anon_sym_CARET_LBRACK] = ACTIONS(4995), - [anon_sym_LBRACK_CARET] = ACTIONS(4995), - [sym_uri_autolink] = ACTIONS(4995), - [sym_email_autolink] = ACTIONS(4995), - [sym__whitespace_ge_2] = ACTIONS(4995), - [aux_sym__whitespace_token1] = ACTIONS(4997), - [sym__word_no_digit] = ACTIONS(4995), - [sym__digits] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4995), - [sym__code_span_start] = ACTIONS(4995), - [sym__emphasis_open_star] = ACTIONS(4995), - [sym__emphasis_open_underscore] = ACTIONS(4995), - [sym__strikeout_open] = ACTIONS(4995), - [sym__latex_span_start] = ACTIONS(4995), - [sym__single_quote_open] = ACTIONS(4995), - [sym__double_quote_open] = ACTIONS(4995), - [sym__superscript_open] = ACTIONS(4995), - [sym__subscript_open] = ACTIONS(4995), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4995), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4995), - [sym__cite_author_in_text] = ACTIONS(4995), - [sym__cite_suppress_author] = ACTIONS(4995), - [sym__shortcode_open_escaped] = ACTIONS(4995), - [sym__shortcode_open] = ACTIONS(4995), - [sym__unclosed_span] = ACTIONS(4995), - [sym__strong_emphasis_open_star] = ACTIONS(4995), - [sym__strong_emphasis_open_underscore] = ACTIONS(4995), + [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_RBRACK] = ACTIONS(4547), + [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(1219)] = { - [sym__backslash_escape] = ACTIONS(4999), - [sym_entity_reference] = ACTIONS(4999), - [sym_numeric_character_reference] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [sym__newline_token] = ACTIONS(4999), - [aux_sym_insert_token1] = ACTIONS(4999), - [aux_sym_delete_token1] = ACTIONS(4999), - [aux_sym_highlight_token1] = ACTIONS(4999), - [aux_sym_edit_comment_token1] = ACTIONS(4999), - [anon_sym_CARET_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_CARET] = ACTIONS(4999), - [sym_uri_autolink] = ACTIONS(4999), - [sym_email_autolink] = ACTIONS(4999), - [sym__whitespace_ge_2] = ACTIONS(4999), - [aux_sym__whitespace_token1] = ACTIONS(5001), - [sym__word_no_digit] = ACTIONS(4999), - [sym__digits] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4999), - [sym__code_span_start] = ACTIONS(4999), - [sym__emphasis_open_star] = ACTIONS(4999), - [sym__emphasis_open_underscore] = ACTIONS(4999), - [sym__strikeout_open] = ACTIONS(4999), - [sym__latex_span_start] = ACTIONS(4999), - [sym__single_quote_open] = ACTIONS(4999), - [sym__double_quote_open] = ACTIONS(4999), - [sym__superscript_open] = ACTIONS(4999), - [sym__subscript_open] = ACTIONS(4999), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4999), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4999), - [sym__cite_author_in_text] = ACTIONS(4999), - [sym__cite_suppress_author] = ACTIONS(4999), - [sym__shortcode_open_escaped] = ACTIONS(4999), - [sym__shortcode_open] = ACTIONS(4999), - [sym__unclosed_span] = ACTIONS(4999), - [sym__strong_emphasis_open_star] = ACTIONS(4999), - [sym__strong_emphasis_open_underscore] = ACTIONS(4999), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_RBRACK] = ACTIONS(4187), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(1220)] = { - [sym__backslash_escape] = ACTIONS(5003), - [sym_entity_reference] = ACTIONS(5003), - [sym_numeric_character_reference] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym__newline_token] = ACTIONS(5003), - [aux_sym_insert_token1] = ACTIONS(5003), - [aux_sym_delete_token1] = ACTIONS(5003), - [aux_sym_highlight_token1] = ACTIONS(5003), - [aux_sym_edit_comment_token1] = ACTIONS(5003), - [anon_sym_CARET_LBRACK] = ACTIONS(5003), - [anon_sym_LBRACK_CARET] = ACTIONS(5003), - [sym_uri_autolink] = ACTIONS(5003), - [sym_email_autolink] = ACTIONS(5003), - [sym__whitespace_ge_2] = ACTIONS(5003), - [aux_sym__whitespace_token1] = ACTIONS(5005), - [sym__word_no_digit] = ACTIONS(5003), - [sym__digits] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [sym__code_span_start] = ACTIONS(5003), - [sym__emphasis_open_star] = ACTIONS(5003), - [sym__emphasis_open_underscore] = ACTIONS(5003), - [sym__strikeout_open] = ACTIONS(5003), - [sym__latex_span_start] = ACTIONS(5003), - [sym__single_quote_open] = ACTIONS(5003), - [sym__double_quote_open] = ACTIONS(5003), - [sym__superscript_open] = ACTIONS(5003), - [sym__subscript_open] = ACTIONS(5003), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5003), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5003), - [sym__cite_author_in_text] = ACTIONS(5003), - [sym__cite_suppress_author] = ACTIONS(5003), - [sym__shortcode_open_escaped] = ACTIONS(5003), - [sym__shortcode_open] = ACTIONS(5003), - [sym__unclosed_span] = ACTIONS(5003), - [sym__strong_emphasis_open_star] = ACTIONS(5003), - [sym__strong_emphasis_open_underscore] = ACTIONS(5003), + [sym__backslash_escape] = ACTIONS(4499), + [sym_entity_reference] = ACTIONS(4499), + [sym_numeric_character_reference] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4501), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_BSLASH] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_PIPE] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [sym__newline_token] = ACTIONS(4499), + [aux_sym_insert_token1] = ACTIONS(4499), + [aux_sym_delete_token1] = ACTIONS(4499), + [aux_sym_highlight_token1] = ACTIONS(4499), + [aux_sym_edit_comment_token1] = ACTIONS(4499), + [anon_sym_CARET_LBRACK] = ACTIONS(4499), + [anon_sym_LBRACK_CARET] = ACTIONS(4499), + [sym_uri_autolink] = ACTIONS(4499), + [sym_email_autolink] = ACTIONS(4499), + [sym__whitespace_ge_2] = ACTIONS(4499), + [aux_sym__whitespace_token1] = ACTIONS(4501), + [sym__word_no_digit] = ACTIONS(4499), + [sym__digits] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4499), + [sym__code_span_start] = ACTIONS(4499), + [sym__emphasis_open_star] = ACTIONS(4499), + [sym__emphasis_open_underscore] = ACTIONS(4499), + [sym__emphasis_close_star] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4499), + [sym__latex_span_start] = ACTIONS(4499), + [sym__single_quote_open] = ACTIONS(4499), + [sym__double_quote_open] = ACTIONS(4499), + [sym__superscript_open] = ACTIONS(4499), + [sym__subscript_open] = ACTIONS(4499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4499), + [sym__cite_author_in_text] = ACTIONS(4499), + [sym__cite_suppress_author] = ACTIONS(4499), + [sym__shortcode_open_escaped] = ACTIONS(4499), + [sym__shortcode_open] = ACTIONS(4499), + [sym__unclosed_span] = ACTIONS(4499), + [sym__strong_emphasis_open_star] = ACTIONS(4499), + [sym__strong_emphasis_open_underscore] = ACTIONS(4499), }, [STATE(1221)] = { - [sym__backslash_escape] = ACTIONS(4951), - [sym_entity_reference] = ACTIONS(4951), - [sym_numeric_character_reference] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [sym__newline_token] = ACTIONS(4951), - [aux_sym_insert_token1] = ACTIONS(4951), - [aux_sym_delete_token1] = ACTIONS(4951), - [aux_sym_highlight_token1] = ACTIONS(4951), - [aux_sym_edit_comment_token1] = ACTIONS(4951), - [anon_sym_CARET_LBRACK] = ACTIONS(4951), - [anon_sym_LBRACK_CARET] = ACTIONS(4951), - [sym_uri_autolink] = ACTIONS(4951), - [sym_email_autolink] = ACTIONS(4951), - [sym__whitespace_ge_2] = ACTIONS(4951), - [aux_sym__whitespace_token1] = ACTIONS(4953), - [sym__word_no_digit] = ACTIONS(4951), - [sym__digits] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4951), - [sym__code_span_start] = ACTIONS(4951), - [sym__emphasis_open_star] = ACTIONS(4951), - [sym__emphasis_open_underscore] = ACTIONS(4951), - [sym__emphasis_close_star] = ACTIONS(4951), - [sym__strikeout_open] = ACTIONS(4951), - [sym__latex_span_start] = ACTIONS(4951), - [sym__single_quote_open] = ACTIONS(4951), - [sym__double_quote_open] = ACTIONS(4951), - [sym__superscript_open] = ACTIONS(4951), - [sym__subscript_open] = ACTIONS(4951), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4951), - [sym__cite_author_in_text] = ACTIONS(4951), - [sym__cite_suppress_author] = ACTIONS(4951), - [sym__shortcode_open_escaped] = ACTIONS(4951), - [sym__shortcode_open] = ACTIONS(4951), - [sym__unclosed_span] = ACTIONS(4951), - [sym__strong_emphasis_open_star] = ACTIONS(4951), - [sym__strong_emphasis_open_underscore] = ACTIONS(4951), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_RBRACK] = ACTIONS(4193), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(1222)] = { - [sym__backslash_escape] = ACTIONS(5007), - [sym_entity_reference] = ACTIONS(5007), - [sym_numeric_character_reference] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH] = ACTIONS(5009), - [anon_sym_CARET] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym__newline_token] = ACTIONS(5007), - [aux_sym_insert_token1] = ACTIONS(5007), - [aux_sym_delete_token1] = ACTIONS(5007), - [aux_sym_highlight_token1] = ACTIONS(5007), - [aux_sym_edit_comment_token1] = ACTIONS(5007), - [anon_sym_CARET_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_CARET] = ACTIONS(5007), - [sym_uri_autolink] = ACTIONS(5007), - [sym_email_autolink] = ACTIONS(5007), - [sym__whitespace_ge_2] = ACTIONS(5007), - [aux_sym__whitespace_token1] = ACTIONS(5009), - [sym__word_no_digit] = ACTIONS(5007), - [sym__digits] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), - [sym__code_span_start] = ACTIONS(5007), - [sym__emphasis_open_star] = ACTIONS(5007), - [sym__emphasis_open_underscore] = ACTIONS(5007), - [sym__strikeout_open] = ACTIONS(5007), - [sym__latex_span_start] = ACTIONS(5007), - [sym__single_quote_open] = ACTIONS(5007), - [sym__double_quote_open] = ACTIONS(5007), - [sym__superscript_open] = ACTIONS(5007), - [sym__subscript_open] = ACTIONS(5007), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5007), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5007), - [sym__cite_author_in_text] = ACTIONS(5007), - [sym__cite_suppress_author] = ACTIONS(5007), - [sym__shortcode_open_escaped] = ACTIONS(5007), - [sym__shortcode_open] = ACTIONS(5007), - [sym__unclosed_span] = ACTIONS(5007), - [sym__strong_emphasis_open_star] = ACTIONS(5007), - [sym__strong_emphasis_close_star] = ACTIONS(5007), - [sym__strong_emphasis_open_underscore] = ACTIONS(5007), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__emphasis_close_star] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(1223)] = { - [sym__backslash_escape] = ACTIONS(5011), - [sym_entity_reference] = ACTIONS(5011), - [sym_numeric_character_reference] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_AMP] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH] = ACTIONS(5013), - [anon_sym_RBRACK] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym_BQUOTE] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym__newline_token] = ACTIONS(5011), - [aux_sym_insert_token1] = ACTIONS(5011), - [aux_sym_delete_token1] = ACTIONS(5011), - [aux_sym_highlight_token1] = ACTIONS(5011), - [aux_sym_edit_comment_token1] = ACTIONS(5011), - [anon_sym_CARET_LBRACK] = ACTIONS(5011), - [anon_sym_LBRACK_CARET] = ACTIONS(5011), - [sym_uri_autolink] = ACTIONS(5011), - [sym_email_autolink] = ACTIONS(5011), - [sym__whitespace_ge_2] = ACTIONS(5011), - [aux_sym__whitespace_token1] = ACTIONS(5013), - [sym__word_no_digit] = ACTIONS(5011), - [sym__digits] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5011), - [sym__code_span_start] = ACTIONS(5011), - [sym__emphasis_open_star] = ACTIONS(5011), - [sym__emphasis_open_underscore] = ACTIONS(5011), - [sym__strikeout_open] = ACTIONS(5011), - [sym__latex_span_start] = ACTIONS(5011), - [sym__single_quote_open] = ACTIONS(5011), - [sym__double_quote_open] = ACTIONS(5011), - [sym__superscript_open] = ACTIONS(5011), - [sym__subscript_open] = ACTIONS(5011), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5011), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5011), - [sym__cite_author_in_text] = ACTIONS(5011), - [sym__cite_suppress_author] = ACTIONS(5011), - [sym__shortcode_open_escaped] = ACTIONS(5011), - [sym__shortcode_open] = ACTIONS(5011), - [sym__unclosed_span] = ACTIONS(5011), - [sym__strong_emphasis_open_star] = ACTIONS(5011), - [sym__strong_emphasis_open_underscore] = ACTIONS(5011), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_RBRACK] = ACTIONS(4197), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(1224)] = { - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_RBRACK] = ACTIONS(4701), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [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(1225)] = { - [sym__backslash_escape] = ACTIONS(4955), - [sym_entity_reference] = ACTIONS(4955), - [sym_numeric_character_reference] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_DQUOTE] = ACTIONS(4955), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4957), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [sym__newline_token] = ACTIONS(4955), - [aux_sym_insert_token1] = ACTIONS(4955), - [aux_sym_delete_token1] = ACTIONS(4955), - [aux_sym_highlight_token1] = ACTIONS(4955), - [aux_sym_edit_comment_token1] = ACTIONS(4955), - [anon_sym_CARET_LBRACK] = ACTIONS(4955), - [anon_sym_LBRACK_CARET] = ACTIONS(4955), - [sym_uri_autolink] = ACTIONS(4955), - [sym_email_autolink] = ACTIONS(4955), - [sym__whitespace_ge_2] = ACTIONS(4955), - [aux_sym__whitespace_token1] = ACTIONS(4957), - [sym__word_no_digit] = ACTIONS(4955), - [sym__digits] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4955), - [sym__code_span_start] = ACTIONS(4955), - [sym__emphasis_open_star] = ACTIONS(4955), - [sym__emphasis_open_underscore] = ACTIONS(4955), - [sym__emphasis_close_star] = ACTIONS(4955), - [sym__strikeout_open] = ACTIONS(4955), - [sym__latex_span_start] = ACTIONS(4955), - [sym__single_quote_open] = ACTIONS(4955), - [sym__double_quote_open] = ACTIONS(4955), - [sym__superscript_open] = ACTIONS(4955), - [sym__subscript_open] = ACTIONS(4955), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4955), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4955), - [sym__cite_author_in_text] = ACTIONS(4955), - [sym__cite_suppress_author] = ACTIONS(4955), - [sym__shortcode_open_escaped] = ACTIONS(4955), - [sym__shortcode_open] = ACTIONS(4955), - [sym__unclosed_span] = ACTIONS(4955), - [sym__strong_emphasis_open_star] = ACTIONS(4955), - [sym__strong_emphasis_open_underscore] = ACTIONS(4955), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_RBRACK] = ACTIONS(4201), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(1226)] = { - [sym__backslash_escape] = ACTIONS(5015), - [sym_entity_reference] = ACTIONS(5015), - [sym_numeric_character_reference] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH] = ACTIONS(5017), - [anon_sym_RBRACK] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym_BQUOTE] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__newline_token] = ACTIONS(5015), - [aux_sym_insert_token1] = ACTIONS(5015), - [aux_sym_delete_token1] = ACTIONS(5015), - [aux_sym_highlight_token1] = ACTIONS(5015), - [aux_sym_edit_comment_token1] = ACTIONS(5015), - [anon_sym_CARET_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_CARET] = ACTIONS(5015), - [sym_uri_autolink] = ACTIONS(5015), - [sym_email_autolink] = ACTIONS(5015), - [sym__whitespace_ge_2] = ACTIONS(5015), - [aux_sym__whitespace_token1] = ACTIONS(5017), - [sym__word_no_digit] = ACTIONS(5015), - [sym__digits] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5015), - [sym__code_span_start] = ACTIONS(5015), - [sym__emphasis_open_star] = ACTIONS(5015), - [sym__emphasis_open_underscore] = ACTIONS(5015), - [sym__strikeout_open] = ACTIONS(5015), - [sym__latex_span_start] = ACTIONS(5015), - [sym__single_quote_open] = ACTIONS(5015), - [sym__double_quote_open] = ACTIONS(5015), - [sym__superscript_open] = ACTIONS(5015), - [sym__subscript_open] = ACTIONS(5015), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5015), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5015), - [sym__cite_author_in_text] = ACTIONS(5015), - [sym__cite_suppress_author] = ACTIONS(5015), - [sym__shortcode_open_escaped] = ACTIONS(5015), - [sym__shortcode_open] = ACTIONS(5015), - [sym__unclosed_span] = ACTIONS(5015), - [sym__strong_emphasis_open_star] = ACTIONS(5015), - [sym__strong_emphasis_open_underscore] = ACTIONS(5015), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__emphasis_close_star] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(1227)] = { - [sym__backslash_escape] = ACTIONS(4959), - [sym_entity_reference] = ACTIONS(4959), - [sym_numeric_character_reference] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_DQUOTE] = ACTIONS(4959), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4961), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_TILDE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4959), - [sym__newline_token] = ACTIONS(4959), - [aux_sym_insert_token1] = ACTIONS(4959), - [aux_sym_delete_token1] = ACTIONS(4959), - [aux_sym_highlight_token1] = ACTIONS(4959), - [aux_sym_edit_comment_token1] = ACTIONS(4959), - [anon_sym_CARET_LBRACK] = ACTIONS(4959), - [anon_sym_LBRACK_CARET] = ACTIONS(4959), - [sym_uri_autolink] = ACTIONS(4959), - [sym_email_autolink] = ACTIONS(4959), - [sym__whitespace_ge_2] = ACTIONS(4959), - [aux_sym__whitespace_token1] = ACTIONS(4961), - [sym__word_no_digit] = ACTIONS(4959), - [sym__digits] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4959), - [sym__code_span_start] = ACTIONS(4959), - [sym__emphasis_open_star] = ACTIONS(4959), - [sym__emphasis_open_underscore] = ACTIONS(4959), - [sym__emphasis_close_star] = ACTIONS(4959), - [sym__strikeout_open] = ACTIONS(4959), - [sym__latex_span_start] = ACTIONS(4959), - [sym__single_quote_open] = ACTIONS(4959), - [sym__double_quote_open] = ACTIONS(4959), - [sym__superscript_open] = ACTIONS(4959), - [sym__subscript_open] = ACTIONS(4959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4959), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4959), - [sym__cite_author_in_text] = ACTIONS(4959), - [sym__cite_suppress_author] = ACTIONS(4959), - [sym__shortcode_open_escaped] = ACTIONS(4959), - [sym__shortcode_open] = ACTIONS(4959), - [sym__unclosed_span] = ACTIONS(4959), - [sym__strong_emphasis_open_star] = ACTIONS(4959), - [sym__strong_emphasis_open_underscore] = ACTIONS(4959), + [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_RBRACK] = ACTIONS(4555), + [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(1228)] = { - [sym__backslash_escape] = ACTIONS(5019), - [sym_entity_reference] = ACTIONS(5019), - [sym_numeric_character_reference] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_DQUOTE] = ACTIONS(5019), - [anon_sym_POUND] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH] = ACTIONS(5021), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym__newline_token] = ACTIONS(5019), - [aux_sym_insert_token1] = ACTIONS(5019), - [aux_sym_delete_token1] = ACTIONS(5019), - [aux_sym_highlight_token1] = ACTIONS(5019), - [aux_sym_edit_comment_token1] = ACTIONS(5019), - [anon_sym_CARET_LBRACK] = ACTIONS(5019), - [anon_sym_LBRACK_CARET] = ACTIONS(5019), - [sym_uri_autolink] = ACTIONS(5019), - [sym_email_autolink] = ACTIONS(5019), - [sym__whitespace_ge_2] = ACTIONS(5019), - [aux_sym__whitespace_token1] = ACTIONS(5021), - [sym__word_no_digit] = ACTIONS(5019), - [sym__digits] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [sym__code_span_start] = ACTIONS(5019), - [sym__emphasis_open_star] = ACTIONS(5019), - [sym__emphasis_open_underscore] = ACTIONS(5019), - [sym__strikeout_open] = ACTIONS(5019), - [sym__latex_span_start] = ACTIONS(5019), - [sym__single_quote_open] = ACTIONS(5019), - [sym__double_quote_open] = ACTIONS(5019), - [sym__superscript_open] = ACTIONS(5019), - [sym__subscript_open] = ACTIONS(5019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5019), - [sym__cite_author_in_text] = ACTIONS(5019), - [sym__cite_suppress_author] = ACTIONS(5019), - [sym__shortcode_open_escaped] = ACTIONS(5019), - [sym__shortcode_open] = ACTIONS(5019), - [sym__unclosed_span] = ACTIONS(5019), - [sym__strong_emphasis_open_star] = ACTIONS(5019), - [sym__strong_emphasis_open_underscore] = ACTIONS(5019), + [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_RBRACK] = ACTIONS(4559), + [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__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(1229)] = { - [sym__backslash_escape] = ACTIONS(5023), - [sym_entity_reference] = ACTIONS(5023), - [sym_numeric_character_reference] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH] = ACTIONS(5025), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [sym__newline_token] = ACTIONS(5023), - [aux_sym_insert_token1] = ACTIONS(5023), - [aux_sym_delete_token1] = ACTIONS(5023), - [aux_sym_highlight_token1] = ACTIONS(5023), - [aux_sym_edit_comment_token1] = ACTIONS(5023), - [anon_sym_CARET_LBRACK] = ACTIONS(5023), - [anon_sym_LBRACK_CARET] = ACTIONS(5023), - [sym_uri_autolink] = ACTIONS(5023), - [sym_email_autolink] = ACTIONS(5023), - [sym__whitespace_ge_2] = ACTIONS(5023), - [aux_sym__whitespace_token1] = ACTIONS(5025), - [sym__word_no_digit] = ACTIONS(5023), - [sym__digits] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5023), - [sym__code_span_start] = ACTIONS(5023), - [sym__emphasis_open_star] = ACTIONS(5023), - [sym__emphasis_open_underscore] = ACTIONS(5023), - [sym__strikeout_open] = ACTIONS(5023), - [sym__latex_span_start] = ACTIONS(5023), - [sym__single_quote_open] = ACTIONS(5023), - [sym__double_quote_open] = ACTIONS(5023), - [sym__superscript_open] = ACTIONS(5023), - [sym__subscript_open] = ACTIONS(5023), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5023), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5023), - [sym__cite_author_in_text] = ACTIONS(5023), - [sym__cite_suppress_author] = ACTIONS(5023), - [sym__shortcode_open_escaped] = ACTIONS(5023), - [sym__shortcode_open] = ACTIONS(5023), - [sym__unclosed_span] = ACTIONS(5023), - [sym__strong_emphasis_open_star] = ACTIONS(5023), - [sym__strong_emphasis_open_underscore] = ACTIONS(5023), + [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_RBRACK] = ACTIONS(4563), + [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(1230)] = { - [sym__backslash_escape] = ACTIONS(5027), - [sym_entity_reference] = ACTIONS(5027), - [sym_numeric_character_reference] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH] = ACTIONS(5029), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [sym__newline_token] = ACTIONS(5027), - [aux_sym_insert_token1] = ACTIONS(5027), - [aux_sym_delete_token1] = ACTIONS(5027), - [aux_sym_highlight_token1] = ACTIONS(5027), - [aux_sym_edit_comment_token1] = ACTIONS(5027), - [anon_sym_CARET_LBRACK] = ACTIONS(5027), - [anon_sym_LBRACK_CARET] = ACTIONS(5027), - [sym_uri_autolink] = ACTIONS(5027), - [sym_email_autolink] = ACTIONS(5027), - [sym__whitespace_ge_2] = ACTIONS(5027), - [aux_sym__whitespace_token1] = ACTIONS(5029), - [sym__word_no_digit] = ACTIONS(5027), - [sym__digits] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5027), - [sym__code_span_start] = ACTIONS(5027), - [sym__emphasis_open_star] = ACTIONS(5027), - [sym__emphasis_open_underscore] = ACTIONS(5027), - [sym__strikeout_open] = ACTIONS(5027), - [sym__latex_span_start] = ACTIONS(5027), - [sym__single_quote_open] = ACTIONS(5027), - [sym__double_quote_open] = ACTIONS(5027), - [sym__superscript_open] = ACTIONS(5027), - [sym__subscript_open] = ACTIONS(5027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5027), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5027), - [sym__cite_author_in_text] = ACTIONS(5027), - [sym__cite_suppress_author] = ACTIONS(5027), - [sym__shortcode_open_escaped] = ACTIONS(5027), - [sym__shortcode_open] = ACTIONS(5027), - [sym__unclosed_span] = ACTIONS(5027), - [sym__strong_emphasis_open_star] = ACTIONS(5027), - [sym__strong_emphasis_open_underscore] = ACTIONS(5027), + [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(1231)] = { - [sym__backslash_escape] = ACTIONS(5031), - [sym_entity_reference] = ACTIONS(5031), - [sym_numeric_character_reference] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_BSLASH] = ACTIONS(5033), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_BQUOTE] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [sym__newline_token] = ACTIONS(5031), - [aux_sym_insert_token1] = ACTIONS(5031), - [aux_sym_delete_token1] = ACTIONS(5031), - [aux_sym_highlight_token1] = ACTIONS(5031), - [aux_sym_edit_comment_token1] = ACTIONS(5031), - [anon_sym_CARET_LBRACK] = ACTIONS(5031), - [anon_sym_LBRACK_CARET] = ACTIONS(5031), - [sym_uri_autolink] = ACTIONS(5031), - [sym_email_autolink] = ACTIONS(5031), - [sym__whitespace_ge_2] = ACTIONS(5031), - [aux_sym__whitespace_token1] = ACTIONS(5033), - [sym__word_no_digit] = ACTIONS(5031), - [sym__digits] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [sym__code_span_start] = ACTIONS(5031), - [sym__emphasis_open_star] = ACTIONS(5031), - [sym__emphasis_open_underscore] = ACTIONS(5031), - [sym__strikeout_open] = ACTIONS(5031), - [sym__latex_span_start] = ACTIONS(5031), - [sym__single_quote_open] = ACTIONS(5031), - [sym__double_quote_open] = ACTIONS(5031), - [sym__superscript_open] = ACTIONS(5031), - [sym__subscript_open] = ACTIONS(5031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5031), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5031), - [sym__cite_author_in_text] = ACTIONS(5031), - [sym__cite_suppress_author] = ACTIONS(5031), - [sym__shortcode_open_escaped] = ACTIONS(5031), - [sym__shortcode_open] = ACTIONS(5031), - [sym__unclosed_span] = ACTIONS(5031), - [sym__strong_emphasis_open_star] = ACTIONS(5031), - [sym__strong_emphasis_open_underscore] = ACTIONS(5031), + [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__superscript_close] = 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(1232)] = { - [sym__backslash_escape] = ACTIONS(5035), - [sym_entity_reference] = ACTIONS(5035), - [sym_numeric_character_reference] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_DQUOTE] = ACTIONS(5035), - [anon_sym_POUND] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_BSLASH] = ACTIONS(5037), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [sym__newline_token] = ACTIONS(5035), - [aux_sym_insert_token1] = ACTIONS(5035), - [aux_sym_delete_token1] = ACTIONS(5035), - [aux_sym_highlight_token1] = ACTIONS(5035), - [aux_sym_edit_comment_token1] = ACTIONS(5035), - [anon_sym_CARET_LBRACK] = ACTIONS(5035), - [anon_sym_LBRACK_CARET] = ACTIONS(5035), - [sym_uri_autolink] = ACTIONS(5035), - [sym_email_autolink] = ACTIONS(5035), - [sym__whitespace_ge_2] = ACTIONS(5035), - [aux_sym__whitespace_token1] = ACTIONS(5037), - [sym__word_no_digit] = ACTIONS(5035), - [sym__digits] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5035), - [sym__code_span_start] = ACTIONS(5035), - [sym__emphasis_open_star] = ACTIONS(5035), - [sym__emphasis_open_underscore] = ACTIONS(5035), - [sym__strikeout_open] = ACTIONS(5035), - [sym__latex_span_start] = ACTIONS(5035), - [sym__single_quote_open] = ACTIONS(5035), - [sym__double_quote_open] = ACTIONS(5035), - [sym__superscript_open] = ACTIONS(5035), - [sym__subscript_open] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5035), - [sym__cite_author_in_text] = ACTIONS(5035), - [sym__cite_suppress_author] = ACTIONS(5035), - [sym__shortcode_open_escaped] = ACTIONS(5035), - [sym__shortcode_open] = ACTIONS(5035), - [sym__unclosed_span] = ACTIONS(5035), - [sym__strong_emphasis_open_star] = ACTIONS(5035), - [sym__strong_emphasis_open_underscore] = ACTIONS(5035), + [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(1233)] = { - [sym__backslash_escape] = ACTIONS(5039), - [sym_entity_reference] = ACTIONS(5039), - [sym_numeric_character_reference] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(5039), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_BSLASH] = ACTIONS(5041), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [sym__newline_token] = ACTIONS(5039), - [aux_sym_insert_token1] = ACTIONS(5039), - [aux_sym_delete_token1] = ACTIONS(5039), - [aux_sym_highlight_token1] = ACTIONS(5039), - [aux_sym_edit_comment_token1] = ACTIONS(5039), - [anon_sym_CARET_LBRACK] = ACTIONS(5039), - [anon_sym_LBRACK_CARET] = ACTIONS(5039), - [sym_uri_autolink] = ACTIONS(5039), - [sym_email_autolink] = ACTIONS(5039), - [sym__whitespace_ge_2] = ACTIONS(5039), - [aux_sym__whitespace_token1] = ACTIONS(5041), - [sym__word_no_digit] = ACTIONS(5039), - [sym__digits] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5039), - [sym__code_span_start] = ACTIONS(5039), - [sym__emphasis_open_star] = ACTIONS(5039), - [sym__emphasis_open_underscore] = ACTIONS(5039), - [sym__strikeout_open] = ACTIONS(5039), - [sym__latex_span_start] = ACTIONS(5039), - [sym__single_quote_open] = ACTIONS(5039), - [sym__double_quote_open] = ACTIONS(5039), - [sym__superscript_open] = ACTIONS(5039), - [sym__subscript_open] = ACTIONS(5039), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5039), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5039), - [sym__cite_author_in_text] = ACTIONS(5039), - [sym__cite_suppress_author] = ACTIONS(5039), - [sym__shortcode_open_escaped] = ACTIONS(5039), - [sym__shortcode_open] = ACTIONS(5039), - [sym__unclosed_span] = ACTIONS(5039), - [sym__strong_emphasis_open_star] = ACTIONS(5039), - [sym__strong_emphasis_open_underscore] = ACTIONS(5039), + [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__superscript_close] = 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(1234)] = { - [sym__backslash_escape] = ACTIONS(5043), - [sym_entity_reference] = ACTIONS(5043), - [sym_numeric_character_reference] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_DQUOTE] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_QMARK] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_BSLASH] = ACTIONS(5045), - [anon_sym_RBRACK] = ACTIONS(5043), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [sym__newline_token] = ACTIONS(5043), - [aux_sym_insert_token1] = ACTIONS(5043), - [aux_sym_delete_token1] = ACTIONS(5043), - [aux_sym_highlight_token1] = ACTIONS(5043), - [aux_sym_edit_comment_token1] = ACTIONS(5043), - [anon_sym_CARET_LBRACK] = ACTIONS(5043), - [anon_sym_LBRACK_CARET] = ACTIONS(5043), - [sym_uri_autolink] = ACTIONS(5043), - [sym_email_autolink] = ACTIONS(5043), - [sym__whitespace_ge_2] = ACTIONS(5043), - [aux_sym__whitespace_token1] = ACTIONS(5045), - [sym__word_no_digit] = ACTIONS(5043), - [sym__digits] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), - [sym__code_span_start] = ACTIONS(5043), - [sym__emphasis_open_star] = ACTIONS(5043), - [sym__emphasis_open_underscore] = ACTIONS(5043), - [sym__strikeout_open] = ACTIONS(5043), - [sym__latex_span_start] = ACTIONS(5043), - [sym__single_quote_open] = ACTIONS(5043), - [sym__double_quote_open] = ACTIONS(5043), - [sym__superscript_open] = ACTIONS(5043), - [sym__subscript_open] = ACTIONS(5043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5043), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5043), - [sym__cite_author_in_text] = ACTIONS(5043), - [sym__cite_suppress_author] = ACTIONS(5043), - [sym__shortcode_open_escaped] = ACTIONS(5043), - [sym__shortcode_open] = ACTIONS(5043), - [sym__unclosed_span] = ACTIONS(5043), - [sym__strong_emphasis_open_star] = ACTIONS(5043), - [sym__strong_emphasis_open_underscore] = ACTIONS(5043), + [sym__backslash_escape] = ACTIONS(4507), + [sym_entity_reference] = ACTIONS(4507), + [sym_numeric_character_reference] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(4507), + [anon_sym_DOLLAR] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_QMARK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_BSLASH] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [sym__newline_token] = ACTIONS(4507), + [aux_sym_insert_token1] = ACTIONS(4507), + [aux_sym_delete_token1] = ACTIONS(4507), + [aux_sym_highlight_token1] = ACTIONS(4507), + [aux_sym_edit_comment_token1] = ACTIONS(4507), + [anon_sym_CARET_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK_CARET] = ACTIONS(4507), + [sym_uri_autolink] = ACTIONS(4507), + [sym_email_autolink] = ACTIONS(4507), + [sym__whitespace_ge_2] = ACTIONS(4507), + [aux_sym__whitespace_token1] = ACTIONS(4509), + [sym__word_no_digit] = ACTIONS(4507), + [sym__digits] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4507), + [sym__code_span_start] = ACTIONS(4507), + [sym__emphasis_open_star] = ACTIONS(4507), + [sym__emphasis_open_underscore] = ACTIONS(4507), + [sym__emphasis_close_star] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4507), + [sym__latex_span_start] = ACTIONS(4507), + [sym__single_quote_open] = ACTIONS(4507), + [sym__double_quote_open] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4507), + [sym__subscript_open] = ACTIONS(4507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4507), + [sym__cite_author_in_text] = ACTIONS(4507), + [sym__cite_suppress_author] = ACTIONS(4507), + [sym__shortcode_open_escaped] = ACTIONS(4507), + [sym__shortcode_open] = ACTIONS(4507), + [sym__unclosed_span] = ACTIONS(4507), + [sym__strong_emphasis_open_star] = ACTIONS(4507), + [sym__strong_emphasis_open_underscore] = ACTIONS(4507), }, [STATE(1235)] = { - [sym__backslash_escape] = ACTIONS(5047), - [sym_entity_reference] = ACTIONS(5047), - [sym_numeric_character_reference] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(5047), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(5049), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [sym__newline_token] = ACTIONS(5047), - [aux_sym_insert_token1] = ACTIONS(5047), - [aux_sym_delete_token1] = ACTIONS(5047), - [aux_sym_highlight_token1] = ACTIONS(5047), - [aux_sym_edit_comment_token1] = ACTIONS(5047), - [anon_sym_CARET_LBRACK] = ACTIONS(5047), - [anon_sym_LBRACK_CARET] = ACTIONS(5047), - [sym_uri_autolink] = ACTIONS(5047), - [sym_email_autolink] = ACTIONS(5047), - [sym__whitespace_ge_2] = ACTIONS(5047), - [aux_sym__whitespace_token1] = ACTIONS(5049), - [sym__word_no_digit] = ACTIONS(5047), - [sym__digits] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5047), - [sym__code_span_start] = ACTIONS(5047), - [sym__emphasis_open_star] = ACTIONS(5047), - [sym__emphasis_open_underscore] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5047), - [sym__latex_span_start] = ACTIONS(5047), - [sym__single_quote_open] = ACTIONS(5047), - [sym__double_quote_open] = ACTIONS(5047), - [sym__superscript_open] = ACTIONS(5047), - [sym__subscript_open] = ACTIONS(5047), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5047), - [sym__cite_author_in_text] = ACTIONS(5047), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__shortcode_open_escaped] = ACTIONS(5047), - [sym__shortcode_open] = ACTIONS(5047), - [sym__unclosed_span] = ACTIONS(5047), - [sym__strong_emphasis_open_star] = ACTIONS(5047), - [sym__strong_emphasis_open_underscore] = ACTIONS(5047), + [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__single_quote_close] = 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(1236)] = { - [sym__backslash_escape] = ACTIONS(5051), - [sym_entity_reference] = ACTIONS(5051), - [sym_numeric_character_reference] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_BSLASH] = ACTIONS(5053), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [sym__newline_token] = ACTIONS(5051), - [aux_sym_insert_token1] = ACTIONS(5051), - [aux_sym_delete_token1] = ACTIONS(5051), - [aux_sym_highlight_token1] = ACTIONS(5051), - [aux_sym_edit_comment_token1] = ACTIONS(5051), - [anon_sym_CARET_LBRACK] = ACTIONS(5051), - [anon_sym_LBRACK_CARET] = ACTIONS(5051), - [sym_uri_autolink] = ACTIONS(5051), - [sym_email_autolink] = ACTIONS(5051), - [sym__whitespace_ge_2] = ACTIONS(5051), - [aux_sym__whitespace_token1] = ACTIONS(5053), - [sym__word_no_digit] = ACTIONS(5051), - [sym__digits] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5051), - [sym__code_span_start] = ACTIONS(5051), - [sym__emphasis_open_star] = ACTIONS(5051), - [sym__emphasis_open_underscore] = ACTIONS(5051), - [sym__strikeout_open] = ACTIONS(5051), - [sym__latex_span_start] = ACTIONS(5051), - [sym__single_quote_open] = ACTIONS(5051), - [sym__double_quote_open] = ACTIONS(5051), - [sym__superscript_open] = ACTIONS(5051), - [sym__subscript_open] = ACTIONS(5051), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5051), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5051), - [sym__cite_author_in_text] = ACTIONS(5051), - [sym__cite_suppress_author] = ACTIONS(5051), - [sym__shortcode_open_escaped] = ACTIONS(5051), - [sym__shortcode_open] = ACTIONS(5051), - [sym__unclosed_span] = ACTIONS(5051), - [sym__strong_emphasis_open_star] = ACTIONS(5051), - [sym__strong_emphasis_open_underscore] = ACTIONS(5051), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_insert_token2] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4305), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(1237)] = { - [sym__backslash_escape] = ACTIONS(5055), - [sym_entity_reference] = ACTIONS(5055), - [sym_numeric_character_reference] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(5055), - [anon_sym_POUND] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_BSLASH] = ACTIONS(5057), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_BQUOTE] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [sym__newline_token] = ACTIONS(5055), - [aux_sym_insert_token1] = ACTIONS(5055), - [aux_sym_delete_token1] = ACTIONS(5055), - [aux_sym_highlight_token1] = ACTIONS(5055), - [aux_sym_edit_comment_token1] = ACTIONS(5055), - [anon_sym_CARET_LBRACK] = ACTIONS(5055), - [anon_sym_LBRACK_CARET] = ACTIONS(5055), - [sym_uri_autolink] = ACTIONS(5055), - [sym_email_autolink] = ACTIONS(5055), - [sym__whitespace_ge_2] = ACTIONS(5055), - [aux_sym__whitespace_token1] = ACTIONS(5057), - [sym__word_no_digit] = ACTIONS(5055), - [sym__digits] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5055), - [sym__code_span_start] = ACTIONS(5055), - [sym__emphasis_open_star] = ACTIONS(5055), - [sym__emphasis_open_underscore] = ACTIONS(5055), - [sym__strikeout_open] = ACTIONS(5055), - [sym__latex_span_start] = ACTIONS(5055), - [sym__single_quote_open] = ACTIONS(5055), - [sym__double_quote_open] = ACTIONS(5055), - [sym__superscript_open] = ACTIONS(5055), - [sym__subscript_open] = ACTIONS(5055), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5055), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5055), - [sym__cite_author_in_text] = ACTIONS(5055), - [sym__cite_suppress_author] = ACTIONS(5055), - [sym__shortcode_open_escaped] = ACTIONS(5055), - [sym__shortcode_open] = ACTIONS(5055), - [sym__unclosed_span] = ACTIONS(5055), - [sym__strong_emphasis_open_star] = ACTIONS(5055), - [sym__strong_emphasis_open_underscore] = ACTIONS(5055), + [sym__backslash_escape] = ACTIONS(4511), + [sym_entity_reference] = ACTIONS(4511), + [sym_numeric_character_reference] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4511), + [anon_sym_POUND] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_COMMA] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_QMARK] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_BQUOTE] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(4511), + [sym__newline_token] = ACTIONS(4511), + [aux_sym_insert_token1] = ACTIONS(4511), + [aux_sym_delete_token1] = ACTIONS(4511), + [aux_sym_highlight_token1] = ACTIONS(4511), + [aux_sym_edit_comment_token1] = ACTIONS(4511), + [anon_sym_CARET_LBRACK] = ACTIONS(4511), + [anon_sym_LBRACK_CARET] = ACTIONS(4511), + [sym_uri_autolink] = ACTIONS(4511), + [sym_email_autolink] = ACTIONS(4511), + [sym__whitespace_ge_2] = ACTIONS(4511), + [aux_sym__whitespace_token1] = ACTIONS(4513), + [sym__word_no_digit] = ACTIONS(4511), + [sym__digits] = ACTIONS(4511), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), + [sym__code_span_start] = ACTIONS(4511), + [sym__emphasis_open_star] = ACTIONS(4511), + [sym__emphasis_open_underscore] = ACTIONS(4511), + [sym__emphasis_close_star] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4511), + [sym__latex_span_start] = ACTIONS(4511), + [sym__single_quote_open] = ACTIONS(4511), + [sym__double_quote_open] = ACTIONS(4511), + [sym__superscript_open] = ACTIONS(4511), + [sym__subscript_open] = ACTIONS(4511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), + [sym__cite_author_in_text] = ACTIONS(4511), + [sym__cite_suppress_author] = ACTIONS(4511), + [sym__shortcode_open_escaped] = ACTIONS(4511), + [sym__shortcode_open] = ACTIONS(4511), + [sym__unclosed_span] = ACTIONS(4511), + [sym__strong_emphasis_open_star] = ACTIONS(4511), + [sym__strong_emphasis_open_underscore] = ACTIONS(4511), }, [STATE(1238)] = { - [sym__backslash_escape] = ACTIONS(5059), - [sym_entity_reference] = ACTIONS(5059), - [sym_numeric_character_reference] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_DQUOTE] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_BSLASH] = ACTIONS(5061), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [sym__newline_token] = ACTIONS(5059), - [aux_sym_insert_token1] = ACTIONS(5059), - [aux_sym_delete_token1] = ACTIONS(5059), - [aux_sym_highlight_token1] = ACTIONS(5059), - [aux_sym_edit_comment_token1] = ACTIONS(5059), - [anon_sym_CARET_LBRACK] = ACTIONS(5059), - [anon_sym_LBRACK_CARET] = ACTIONS(5059), - [sym_uri_autolink] = ACTIONS(5059), - [sym_email_autolink] = ACTIONS(5059), - [sym__whitespace_ge_2] = ACTIONS(5059), - [aux_sym__whitespace_token1] = ACTIONS(5061), - [sym__word_no_digit] = ACTIONS(5059), - [sym__digits] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5059), - [sym__code_span_start] = ACTIONS(5059), - [sym__emphasis_open_star] = ACTIONS(5059), - [sym__emphasis_open_underscore] = ACTIONS(5059), - [sym__strikeout_open] = ACTIONS(5059), - [sym__latex_span_start] = ACTIONS(5059), - [sym__single_quote_open] = ACTIONS(5059), - [sym__double_quote_open] = ACTIONS(5059), - [sym__superscript_open] = ACTIONS(5059), - [sym__subscript_open] = ACTIONS(5059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5059), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5059), - [sym__cite_author_in_text] = ACTIONS(5059), - [sym__cite_suppress_author] = ACTIONS(5059), - [sym__shortcode_open_escaped] = ACTIONS(5059), - [sym__shortcode_open] = ACTIONS(5059), - [sym__unclosed_span] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5059), - [sym__strong_emphasis_open_underscore] = ACTIONS(5059), + [sym__backslash_escape] = ACTIONS(4515), + [sym_entity_reference] = ACTIONS(4515), + [sym_numeric_character_reference] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4515), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_BSLASH] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_RPAREN] = ACTIONS(4515), + [sym__newline_token] = ACTIONS(4515), + [aux_sym_insert_token1] = ACTIONS(4515), + [aux_sym_delete_token1] = ACTIONS(4515), + [aux_sym_highlight_token1] = ACTIONS(4515), + [aux_sym_edit_comment_token1] = ACTIONS(4515), + [anon_sym_CARET_LBRACK] = ACTIONS(4515), + [anon_sym_LBRACK_CARET] = ACTIONS(4515), + [sym_uri_autolink] = ACTIONS(4515), + [sym_email_autolink] = ACTIONS(4515), + [sym__whitespace_ge_2] = ACTIONS(4515), + [aux_sym__whitespace_token1] = ACTIONS(4517), + [sym__word_no_digit] = ACTIONS(4515), + [sym__digits] = ACTIONS(4515), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4515), + [sym__code_span_start] = ACTIONS(4515), + [sym__emphasis_open_star] = ACTIONS(4515), + [sym__emphasis_open_underscore] = ACTIONS(4515), + [sym__emphasis_close_star] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4515), + [sym__latex_span_start] = ACTIONS(4515), + [sym__single_quote_open] = ACTIONS(4515), + [sym__double_quote_open] = ACTIONS(4515), + [sym__superscript_open] = ACTIONS(4515), + [sym__subscript_open] = ACTIONS(4515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4515), + [sym__cite_author_in_text] = ACTIONS(4515), + [sym__cite_suppress_author] = ACTIONS(4515), + [sym__shortcode_open_escaped] = ACTIONS(4515), + [sym__shortcode_open] = ACTIONS(4515), + [sym__unclosed_span] = ACTIONS(4515), + [sym__strong_emphasis_open_star] = ACTIONS(4515), + [sym__strong_emphasis_open_underscore] = ACTIONS(4515), }, [STATE(1239)] = { - [sym__backslash_escape] = ACTIONS(5063), - [sym_entity_reference] = ACTIONS(5063), - [sym_numeric_character_reference] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_BSLASH] = ACTIONS(5065), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_BQUOTE] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [sym__newline_token] = ACTIONS(5063), - [aux_sym_insert_token1] = ACTIONS(5063), - [aux_sym_delete_token1] = ACTIONS(5063), - [aux_sym_highlight_token1] = ACTIONS(5063), - [aux_sym_edit_comment_token1] = ACTIONS(5063), - [anon_sym_CARET_LBRACK] = ACTIONS(5063), - [anon_sym_LBRACK_CARET] = ACTIONS(5063), - [sym_uri_autolink] = ACTIONS(5063), - [sym_email_autolink] = ACTIONS(5063), - [sym__whitespace_ge_2] = ACTIONS(5063), - [aux_sym__whitespace_token1] = ACTIONS(5065), - [sym__word_no_digit] = ACTIONS(5063), - [sym__digits] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5063), - [sym__code_span_start] = ACTIONS(5063), - [sym__emphasis_open_star] = ACTIONS(5063), - [sym__emphasis_open_underscore] = ACTIONS(5063), - [sym__strikeout_open] = ACTIONS(5063), - [sym__latex_span_start] = ACTIONS(5063), - [sym__single_quote_open] = ACTIONS(5063), - [sym__double_quote_open] = ACTIONS(5063), - [sym__superscript_open] = ACTIONS(5063), - [sym__subscript_open] = ACTIONS(5063), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5063), - [sym__cite_author_in_text] = ACTIONS(5063), - [sym__cite_suppress_author] = ACTIONS(5063), - [sym__shortcode_open_escaped] = ACTIONS(5063), - [sym__shortcode_open] = ACTIONS(5063), - [sym__unclosed_span] = ACTIONS(5063), - [sym__strong_emphasis_open_star] = ACTIONS(5063), - [sym__strong_emphasis_open_underscore] = ACTIONS(5063), + [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(1240)] = { - [sym__backslash_escape] = ACTIONS(5067), - [sym_entity_reference] = ACTIONS(5067), - [sym_numeric_character_reference] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DQUOTE] = ACTIONS(5067), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_COLON] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [sym__newline_token] = ACTIONS(5067), - [aux_sym_insert_token1] = ACTIONS(5067), - [aux_sym_delete_token1] = ACTIONS(5067), - [aux_sym_highlight_token1] = ACTIONS(5067), - [aux_sym_edit_comment_token1] = ACTIONS(5067), - [anon_sym_CARET_LBRACK] = ACTIONS(5067), - [anon_sym_LBRACK_CARET] = ACTIONS(5067), - [sym_uri_autolink] = ACTIONS(5067), - [sym_email_autolink] = ACTIONS(5067), - [sym__whitespace_ge_2] = ACTIONS(5067), - [aux_sym__whitespace_token1] = ACTIONS(5069), - [sym__word_no_digit] = ACTIONS(5067), - [sym__digits] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5067), - [sym__code_span_start] = ACTIONS(5067), - [sym__emphasis_open_star] = ACTIONS(5067), - [sym__emphasis_open_underscore] = ACTIONS(5067), - [sym__strikeout_open] = ACTIONS(5067), - [sym__latex_span_start] = ACTIONS(5067), - [sym__single_quote_open] = ACTIONS(5067), - [sym__double_quote_open] = ACTIONS(5067), - [sym__superscript_open] = ACTIONS(5067), - [sym__subscript_open] = ACTIONS(5067), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5067), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5067), - [sym__cite_author_in_text] = ACTIONS(5067), - [sym__cite_suppress_author] = ACTIONS(5067), - [sym__shortcode_open_escaped] = ACTIONS(5067), - [sym__shortcode_open] = ACTIONS(5067), - [sym__unclosed_span] = ACTIONS(5067), - [sym__strong_emphasis_open_star] = ACTIONS(5067), - [sym__strong_emphasis_open_underscore] = ACTIONS(5067), + [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_insert_token2] = 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(4581), + [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__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(1241)] = { - [sym__backslash_escape] = ACTIONS(5071), - [sym_entity_reference] = ACTIONS(5071), - [sym_numeric_character_reference] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_POUND] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [sym__newline_token] = ACTIONS(5071), - [aux_sym_insert_token1] = ACTIONS(5071), - [aux_sym_delete_token1] = ACTIONS(5071), - [aux_sym_highlight_token1] = ACTIONS(5071), - [aux_sym_edit_comment_token1] = ACTIONS(5071), - [anon_sym_CARET_LBRACK] = ACTIONS(5071), - [anon_sym_LBRACK_CARET] = ACTIONS(5071), - [sym_uri_autolink] = ACTIONS(5071), - [sym_email_autolink] = ACTIONS(5071), - [sym__whitespace_ge_2] = ACTIONS(5071), - [aux_sym__whitespace_token1] = ACTIONS(5073), - [sym__word_no_digit] = ACTIONS(5071), - [sym__digits] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5071), - [sym__code_span_start] = ACTIONS(5071), - [sym__emphasis_open_star] = ACTIONS(5071), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym__strikeout_open] = ACTIONS(5071), - [sym__latex_span_start] = ACTIONS(5071), - [sym__single_quote_open] = ACTIONS(5071), - [sym__double_quote_open] = ACTIONS(5071), - [sym__superscript_open] = ACTIONS(5071), - [sym__subscript_open] = ACTIONS(5071), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5071), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5071), - [sym__cite_author_in_text] = ACTIONS(5071), - [sym__cite_suppress_author] = ACTIONS(5071), - [sym__shortcode_open_escaped] = ACTIONS(5071), - [sym__shortcode_open] = ACTIONS(5071), - [sym__unclosed_span] = ACTIONS(5071), - [sym__strong_emphasis_open_star] = ACTIONS(5071), - [sym__strong_emphasis_open_underscore] = ACTIONS(5071), + [sym__backslash_escape] = ACTIONS(4519), + [sym_entity_reference] = ACTIONS(4519), + [sym_numeric_character_reference] = ACTIONS(4519), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4519), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_BSLASH] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_BQUOTE] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [sym__newline_token] = ACTIONS(4519), + [aux_sym_insert_token1] = ACTIONS(4519), + [aux_sym_delete_token1] = ACTIONS(4519), + [aux_sym_highlight_token1] = ACTIONS(4519), + [aux_sym_edit_comment_token1] = ACTIONS(4519), + [anon_sym_CARET_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_CARET] = ACTIONS(4519), + [sym_uri_autolink] = ACTIONS(4519), + [sym_email_autolink] = ACTIONS(4519), + [sym__whitespace_ge_2] = ACTIONS(4519), + [aux_sym__whitespace_token1] = ACTIONS(4521), + [sym__word_no_digit] = ACTIONS(4519), + [sym__digits] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [sym__code_span_start] = ACTIONS(4519), + [sym__emphasis_open_star] = ACTIONS(4519), + [sym__emphasis_open_underscore] = ACTIONS(4519), + [sym__emphasis_close_star] = ACTIONS(4519), + [sym__strikeout_open] = ACTIONS(4519), + [sym__latex_span_start] = ACTIONS(4519), + [sym__single_quote_open] = ACTIONS(4519), + [sym__double_quote_open] = ACTIONS(4519), + [sym__superscript_open] = ACTIONS(4519), + [sym__subscript_open] = ACTIONS(4519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4519), + [sym__cite_suppress_author] = ACTIONS(4519), + [sym__shortcode_open_escaped] = ACTIONS(4519), + [sym__shortcode_open] = ACTIONS(4519), + [sym__unclosed_span] = ACTIONS(4519), + [sym__strong_emphasis_open_star] = ACTIONS(4519), + [sym__strong_emphasis_open_underscore] = ACTIONS(4519), }, [STATE(1242)] = { - [sym__backslash_escape] = ACTIONS(5075), - [sym_entity_reference] = ACTIONS(5075), - [sym_numeric_character_reference] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_QMARK] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_BSLASH] = ACTIONS(5077), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [sym__newline_token] = ACTIONS(5075), - [aux_sym_insert_token1] = ACTIONS(5075), - [aux_sym_delete_token1] = ACTIONS(5075), - [aux_sym_highlight_token1] = ACTIONS(5075), - [aux_sym_edit_comment_token1] = ACTIONS(5075), - [anon_sym_CARET_LBRACK] = ACTIONS(5075), - [anon_sym_LBRACK_CARET] = ACTIONS(5075), - [sym_uri_autolink] = ACTIONS(5075), - [sym_email_autolink] = ACTIONS(5075), - [sym__whitespace_ge_2] = ACTIONS(5075), - [aux_sym__whitespace_token1] = ACTIONS(5077), - [sym__word_no_digit] = ACTIONS(5075), - [sym__digits] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5075), - [sym__code_span_start] = ACTIONS(5075), - [sym__emphasis_open_star] = ACTIONS(5075), - [sym__emphasis_open_underscore] = ACTIONS(5075), - [sym__strikeout_open] = ACTIONS(5075), - [sym__latex_span_start] = ACTIONS(5075), - [sym__single_quote_open] = ACTIONS(5075), - [sym__double_quote_open] = ACTIONS(5075), - [sym__superscript_open] = ACTIONS(5075), - [sym__subscript_open] = ACTIONS(5075), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5075), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5075), - [sym__cite_author_in_text] = ACTIONS(5075), - [sym__cite_suppress_author] = ACTIONS(5075), - [sym__shortcode_open_escaped] = ACTIONS(5075), - [sym__shortcode_open] = ACTIONS(5075), - [sym__unclosed_span] = ACTIONS(5075), - [sym__strong_emphasis_open_star] = ACTIONS(5075), - [sym__strong_emphasis_open_underscore] = ACTIONS(5075), + [sym__backslash_escape] = ACTIONS(4523), + [sym_entity_reference] = ACTIONS(4523), + [sym_numeric_character_reference] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_BSLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [sym__newline_token] = ACTIONS(4523), + [aux_sym_insert_token1] = ACTIONS(4523), + [aux_sym_delete_token1] = ACTIONS(4523), + [aux_sym_highlight_token1] = ACTIONS(4523), + [aux_sym_edit_comment_token1] = ACTIONS(4523), + [anon_sym_CARET_LBRACK] = ACTIONS(4523), + [anon_sym_LBRACK_CARET] = ACTIONS(4523), + [sym_uri_autolink] = ACTIONS(4523), + [sym_email_autolink] = ACTIONS(4523), + [sym__whitespace_ge_2] = ACTIONS(4523), + [aux_sym__whitespace_token1] = ACTIONS(4525), + [sym__word_no_digit] = ACTIONS(4523), + [sym__digits] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4523), + [sym__code_span_start] = ACTIONS(4523), + [sym__emphasis_open_star] = ACTIONS(4523), + [sym__emphasis_open_underscore] = ACTIONS(4523), + [sym__emphasis_close_star] = ACTIONS(4523), + [sym__strikeout_open] = ACTIONS(4523), + [sym__latex_span_start] = ACTIONS(4523), + [sym__single_quote_open] = ACTIONS(4523), + [sym__double_quote_open] = ACTIONS(4523), + [sym__superscript_open] = ACTIONS(4523), + [sym__subscript_open] = ACTIONS(4523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4523), + [sym__cite_author_in_text] = ACTIONS(4523), + [sym__cite_suppress_author] = ACTIONS(4523), + [sym__shortcode_open_escaped] = ACTIONS(4523), + [sym__shortcode_open] = ACTIONS(4523), + [sym__unclosed_span] = ACTIONS(4523), + [sym__strong_emphasis_open_star] = ACTIONS(4523), + [sym__strong_emphasis_open_underscore] = ACTIONS(4523), }, [STATE(1243)] = { - [sym__backslash_escape] = ACTIONS(5079), - [sym_entity_reference] = ACTIONS(5079), - [sym_numeric_character_reference] = ACTIONS(5079), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_DQUOTE] = ACTIONS(5079), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_QMARK] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BSLASH] = ACTIONS(5081), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5079), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [sym__newline_token] = ACTIONS(5079), - [aux_sym_insert_token1] = ACTIONS(5079), - [aux_sym_delete_token1] = ACTIONS(5079), - [aux_sym_highlight_token1] = ACTIONS(5079), - [aux_sym_edit_comment_token1] = ACTIONS(5079), - [anon_sym_CARET_LBRACK] = ACTIONS(5079), - [anon_sym_LBRACK_CARET] = ACTIONS(5079), - [sym_uri_autolink] = ACTIONS(5079), - [sym_email_autolink] = ACTIONS(5079), - [sym__whitespace_ge_2] = ACTIONS(5079), - [aux_sym__whitespace_token1] = ACTIONS(5081), - [sym__word_no_digit] = ACTIONS(5079), - [sym__digits] = ACTIONS(5079), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5079), - [sym__code_span_start] = ACTIONS(5079), - [sym__emphasis_open_star] = ACTIONS(5079), - [sym__emphasis_open_underscore] = ACTIONS(5079), - [sym__strikeout_open] = ACTIONS(5079), - [sym__latex_span_start] = ACTIONS(5079), - [sym__single_quote_open] = ACTIONS(5079), - [sym__double_quote_open] = ACTIONS(5079), - [sym__superscript_open] = ACTIONS(5079), - [sym__subscript_open] = ACTIONS(5079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5079), - [sym__cite_author_in_text] = ACTIONS(5079), - [sym__cite_suppress_author] = ACTIONS(5079), - [sym__shortcode_open_escaped] = ACTIONS(5079), - [sym__shortcode_open] = ACTIONS(5079), - [sym__unclosed_span] = ACTIONS(5079), - [sym__strong_emphasis_open_star] = ACTIONS(5079), - [sym__strong_emphasis_open_underscore] = ACTIONS(5079), + [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(1244)] = { - [sym__backslash_escape] = ACTIONS(5083), - [sym_entity_reference] = ACTIONS(5083), - [sym_numeric_character_reference] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOT] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_QMARK] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_BSLASH] = ACTIONS(5085), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym_BQUOTE] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [sym__newline_token] = ACTIONS(5083), - [aux_sym_insert_token1] = ACTIONS(5083), - [aux_sym_delete_token1] = ACTIONS(5083), - [aux_sym_highlight_token1] = ACTIONS(5083), - [aux_sym_edit_comment_token1] = ACTIONS(5083), - [anon_sym_CARET_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_CARET] = ACTIONS(5083), - [sym_uri_autolink] = ACTIONS(5083), - [sym_email_autolink] = ACTIONS(5083), - [sym__whitespace_ge_2] = ACTIONS(5083), - [aux_sym__whitespace_token1] = ACTIONS(5085), - [sym__word_no_digit] = ACTIONS(5083), - [sym__digits] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5083), - [sym__code_span_start] = ACTIONS(5083), - [sym__emphasis_open_star] = ACTIONS(5083), - [sym__emphasis_open_underscore] = ACTIONS(5083), - [sym__strikeout_open] = ACTIONS(5083), - [sym__latex_span_start] = ACTIONS(5083), - [sym__single_quote_open] = ACTIONS(5083), - [sym__double_quote_open] = ACTIONS(5083), - [sym__superscript_open] = ACTIONS(5083), - [sym__subscript_open] = ACTIONS(5083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5083), - [sym__cite_author_in_text] = ACTIONS(5083), - [sym__cite_suppress_author] = ACTIONS(5083), - [sym__shortcode_open_escaped] = ACTIONS(5083), - [sym__shortcode_open] = ACTIONS(5083), - [sym__unclosed_span] = ACTIONS(5083), - [sym__strong_emphasis_open_star] = ACTIONS(5083), - [sym__strong_emphasis_open_underscore] = ACTIONS(5083), + [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_insert_token2] = 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(4573), + [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(1245)] = { - [sym__backslash_escape] = ACTIONS(5087), - [sym_entity_reference] = ACTIONS(5087), - [sym_numeric_character_reference] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_DQUOTE] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_AMP] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_QMARK] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym_BQUOTE] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_PIPE] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [sym__newline_token] = ACTIONS(5087), - [aux_sym_insert_token1] = ACTIONS(5087), - [aux_sym_delete_token1] = ACTIONS(5087), - [aux_sym_highlight_token1] = ACTIONS(5087), - [aux_sym_edit_comment_token1] = ACTIONS(5087), - [anon_sym_CARET_LBRACK] = ACTIONS(5087), - [anon_sym_LBRACK_CARET] = ACTIONS(5087), - [sym_uri_autolink] = ACTIONS(5087), - [sym_email_autolink] = ACTIONS(5087), - [sym__whitespace_ge_2] = ACTIONS(5087), - [aux_sym__whitespace_token1] = ACTIONS(5089), - [sym__word_no_digit] = ACTIONS(5087), - [sym__digits] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5087), - [sym__code_span_start] = ACTIONS(5087), - [sym__emphasis_open_star] = ACTIONS(5087), - [sym__emphasis_open_underscore] = ACTIONS(5087), - [sym__strikeout_open] = ACTIONS(5087), - [sym__latex_span_start] = ACTIONS(5087), - [sym__single_quote_open] = ACTIONS(5087), - [sym__double_quote_open] = ACTIONS(5087), - [sym__superscript_open] = ACTIONS(5087), - [sym__subscript_open] = ACTIONS(5087), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5087), - [sym__cite_author_in_text] = ACTIONS(5087), - [sym__cite_suppress_author] = ACTIONS(5087), - [sym__shortcode_open_escaped] = ACTIONS(5087), - [sym__shortcode_open] = ACTIONS(5087), - [sym__unclosed_span] = ACTIONS(5087), - [sym__strong_emphasis_open_star] = ACTIONS(5087), - [sym__strong_emphasis_open_underscore] = ACTIONS(5087), + [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(1246)] = { - [sym__backslash_escape] = ACTIONS(4963), - [sym_entity_reference] = ACTIONS(4963), - [sym_numeric_character_reference] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_DQUOTE] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4963), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_RPAREN] = ACTIONS(4963), - [sym__newline_token] = ACTIONS(4963), - [aux_sym_insert_token1] = ACTIONS(4963), - [aux_sym_delete_token1] = ACTIONS(4963), - [aux_sym_highlight_token1] = ACTIONS(4963), - [aux_sym_edit_comment_token1] = ACTIONS(4963), - [anon_sym_CARET_LBRACK] = ACTIONS(4963), - [anon_sym_LBRACK_CARET] = ACTIONS(4963), - [sym_uri_autolink] = ACTIONS(4963), - [sym_email_autolink] = ACTIONS(4963), - [sym__whitespace_ge_2] = ACTIONS(4963), - [aux_sym__whitespace_token1] = ACTIONS(4965), - [sym__word_no_digit] = ACTIONS(4963), - [sym__digits] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4963), - [sym__code_span_start] = ACTIONS(4963), - [sym__emphasis_open_star] = ACTIONS(4963), - [sym__emphasis_open_underscore] = ACTIONS(4963), - [sym__emphasis_close_star] = ACTIONS(4963), - [sym__strikeout_open] = ACTIONS(4963), - [sym__latex_span_start] = ACTIONS(4963), - [sym__single_quote_open] = ACTIONS(4963), - [sym__double_quote_open] = ACTIONS(4963), - [sym__superscript_open] = ACTIONS(4963), - [sym__subscript_open] = ACTIONS(4963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4963), - [sym__cite_author_in_text] = ACTIONS(4963), - [sym__cite_suppress_author] = ACTIONS(4963), - [sym__shortcode_open_escaped] = ACTIONS(4963), - [sym__shortcode_open] = ACTIONS(4963), - [sym__unclosed_span] = ACTIONS(4963), - [sym__strong_emphasis_open_star] = ACTIONS(4963), - [sym__strong_emphasis_open_underscore] = ACTIONS(4963), + [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(1247)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_RBRACK] = ACTIONS(4797), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [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(1248)] = { - [sym__backslash_escape] = ACTIONS(4967), - [sym_entity_reference] = ACTIONS(4967), - [sym_numeric_character_reference] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_BQUOTE] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [sym__newline_token] = ACTIONS(4967), - [aux_sym_insert_token1] = ACTIONS(4967), - [aux_sym_delete_token1] = ACTIONS(4967), - [aux_sym_highlight_token1] = ACTIONS(4967), - [aux_sym_edit_comment_token1] = ACTIONS(4967), - [anon_sym_CARET_LBRACK] = ACTIONS(4967), - [anon_sym_LBRACK_CARET] = ACTIONS(4967), - [sym_uri_autolink] = ACTIONS(4967), - [sym_email_autolink] = ACTIONS(4967), - [sym__whitespace_ge_2] = ACTIONS(4967), - [aux_sym__whitespace_token1] = ACTIONS(4969), - [sym__word_no_digit] = ACTIONS(4967), - [sym__digits] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [sym__code_span_start] = ACTIONS(4967), - [sym__emphasis_open_star] = ACTIONS(4967), - [sym__emphasis_open_underscore] = ACTIONS(4967), - [sym__emphasis_close_star] = ACTIONS(4967), - [sym__strikeout_open] = ACTIONS(4967), - [sym__latex_span_start] = ACTIONS(4967), - [sym__single_quote_open] = ACTIONS(4967), - [sym__double_quote_open] = ACTIONS(4967), - [sym__superscript_open] = ACTIONS(4967), - [sym__subscript_open] = ACTIONS(4967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4967), - [sym__cite_author_in_text] = ACTIONS(4967), - [sym__cite_suppress_author] = ACTIONS(4967), - [sym__shortcode_open_escaped] = ACTIONS(4967), - [sym__shortcode_open] = ACTIONS(4967), - [sym__unclosed_span] = ACTIONS(4967), - [sym__strong_emphasis_open_star] = ACTIONS(4967), - [sym__strong_emphasis_open_underscore] = ACTIONS(4967), + [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(1249)] = { - [sym__backslash_escape] = ACTIONS(5091), - [sym_entity_reference] = ACTIONS(5091), - [sym_numeric_character_reference] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(5091), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_BSLASH] = ACTIONS(5093), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym_BQUOTE] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [sym__newline_token] = ACTIONS(5091), - [aux_sym_insert_token1] = ACTIONS(5091), - [aux_sym_delete_token1] = ACTIONS(5091), - [aux_sym_highlight_token1] = ACTIONS(5091), - [aux_sym_edit_comment_token1] = ACTIONS(5091), - [anon_sym_CARET_LBRACK] = ACTIONS(5091), - [anon_sym_LBRACK_CARET] = ACTIONS(5091), - [sym_uri_autolink] = ACTIONS(5091), - [sym_email_autolink] = ACTIONS(5091), - [sym__whitespace_ge_2] = ACTIONS(5091), - [aux_sym__whitespace_token1] = ACTIONS(5093), - [sym__word_no_digit] = ACTIONS(5091), - [sym__digits] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), - [sym__code_span_start] = ACTIONS(5091), - [sym__emphasis_open_star] = ACTIONS(5091), - [sym__emphasis_open_underscore] = ACTIONS(5091), - [sym__strikeout_open] = ACTIONS(5091), - [sym__latex_span_start] = ACTIONS(5091), - [sym__single_quote_open] = ACTIONS(5091), - [sym__double_quote_open] = ACTIONS(5091), - [sym__superscript_open] = ACTIONS(5091), - [sym__subscript_open] = ACTIONS(5091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5091), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5091), - [sym__cite_author_in_text] = ACTIONS(5091), - [sym__cite_suppress_author] = ACTIONS(5091), - [sym__shortcode_open_escaped] = ACTIONS(5091), - [sym__shortcode_open] = ACTIONS(5091), - [sym__unclosed_span] = ACTIONS(5091), - [sym__strong_emphasis_open_star] = ACTIONS(5091), - [sym__strong_emphasis_open_underscore] = ACTIONS(5091), + [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(1250)] = { - [sym__backslash_escape] = ACTIONS(4971), - [sym_entity_reference] = ACTIONS(4971), - [sym_numeric_character_reference] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym_BQUOTE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [sym__newline_token] = ACTIONS(4971), - [aux_sym_insert_token1] = ACTIONS(4971), - [aux_sym_delete_token1] = ACTIONS(4971), - [aux_sym_highlight_token1] = ACTIONS(4971), - [aux_sym_edit_comment_token1] = ACTIONS(4971), - [anon_sym_CARET_LBRACK] = ACTIONS(4971), - [anon_sym_LBRACK_CARET] = ACTIONS(4971), - [sym_uri_autolink] = ACTIONS(4971), - [sym_email_autolink] = ACTIONS(4971), - [sym__whitespace_ge_2] = ACTIONS(4971), - [aux_sym__whitespace_token1] = ACTIONS(4973), - [sym__word_no_digit] = ACTIONS(4971), - [sym__digits] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4971), - [sym__code_span_start] = ACTIONS(4971), - [sym__emphasis_open_star] = ACTIONS(4971), - [sym__emphasis_open_underscore] = ACTIONS(4971), - [sym__emphasis_close_star] = ACTIONS(4971), - [sym__strikeout_open] = ACTIONS(4971), - [sym__latex_span_start] = ACTIONS(4971), - [sym__single_quote_open] = ACTIONS(4971), - [sym__double_quote_open] = ACTIONS(4971), - [sym__superscript_open] = ACTIONS(4971), - [sym__subscript_open] = ACTIONS(4971), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4971), - [sym__cite_author_in_text] = ACTIONS(4971), - [sym__cite_suppress_author] = ACTIONS(4971), - [sym__shortcode_open_escaped] = ACTIONS(4971), - [sym__shortcode_open] = ACTIONS(4971), - [sym__unclosed_span] = ACTIONS(4971), - [sym__strong_emphasis_open_star] = ACTIONS(4971), - [sym__strong_emphasis_open_underscore] = ACTIONS(4971), + [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(1251)] = { - [sym__backslash_escape] = ACTIONS(4975), - [sym_entity_reference] = ACTIONS(4975), - [sym_numeric_character_reference] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [sym__newline_token] = ACTIONS(4975), - [aux_sym_insert_token1] = ACTIONS(4975), - [aux_sym_delete_token1] = ACTIONS(4975), - [aux_sym_highlight_token1] = ACTIONS(4975), - [aux_sym_edit_comment_token1] = ACTIONS(4975), - [anon_sym_CARET_LBRACK] = ACTIONS(4975), - [anon_sym_LBRACK_CARET] = ACTIONS(4975), - [sym_uri_autolink] = ACTIONS(4975), - [sym_email_autolink] = ACTIONS(4975), - [sym__whitespace_ge_2] = ACTIONS(4975), - [aux_sym__whitespace_token1] = ACTIONS(4977), - [sym__word_no_digit] = ACTIONS(4975), - [sym__digits] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [sym__code_span_start] = ACTIONS(4975), - [sym__emphasis_open_star] = ACTIONS(4975), - [sym__emphasis_open_underscore] = ACTIONS(4975), - [sym__emphasis_close_star] = ACTIONS(4975), - [sym__strikeout_open] = ACTIONS(4975), - [sym__latex_span_start] = ACTIONS(4975), - [sym__single_quote_open] = ACTIONS(4975), - [sym__double_quote_open] = ACTIONS(4975), - [sym__superscript_open] = ACTIONS(4975), - [sym__subscript_open] = ACTIONS(4975), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4975), - [sym__cite_author_in_text] = ACTIONS(4975), - [sym__cite_suppress_author] = ACTIONS(4975), - [sym__shortcode_open_escaped] = ACTIONS(4975), - [sym__shortcode_open] = ACTIONS(4975), - [sym__unclosed_span] = ACTIONS(4975), - [sym__strong_emphasis_open_star] = ACTIONS(4975), - [sym__strong_emphasis_open_underscore] = ACTIONS(4975), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__emphasis_close_star] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(1252)] = { - [sym__backslash_escape] = ACTIONS(5095), - [sym_entity_reference] = ACTIONS(5095), - [sym_numeric_character_reference] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_BSLASH] = ACTIONS(5097), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym_BQUOTE] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [sym__newline_token] = ACTIONS(5095), - [aux_sym_insert_token1] = ACTIONS(5095), - [aux_sym_delete_token1] = ACTIONS(5095), - [aux_sym_highlight_token1] = ACTIONS(5095), - [aux_sym_edit_comment_token1] = ACTIONS(5095), - [anon_sym_CARET_LBRACK] = ACTIONS(5095), - [anon_sym_LBRACK_CARET] = ACTIONS(5095), - [sym_uri_autolink] = ACTIONS(5095), - [sym_email_autolink] = ACTIONS(5095), - [sym__whitespace_ge_2] = ACTIONS(5095), - [aux_sym__whitespace_token1] = ACTIONS(5097), - [sym__word_no_digit] = ACTIONS(5095), - [sym__digits] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5095), - [sym__code_span_start] = ACTIONS(5095), - [sym__emphasis_open_star] = ACTIONS(5095), - [sym__emphasis_open_underscore] = ACTIONS(5095), - [sym__strikeout_open] = ACTIONS(5095), - [sym__latex_span_start] = ACTIONS(5095), - [sym__single_quote_open] = ACTIONS(5095), - [sym__double_quote_open] = ACTIONS(5095), - [sym__superscript_open] = ACTIONS(5095), - [sym__subscript_open] = ACTIONS(5095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5095), - [sym__cite_author_in_text] = ACTIONS(5095), - [sym__cite_suppress_author] = ACTIONS(5095), - [sym__shortcode_open_escaped] = ACTIONS(5095), - [sym__shortcode_open] = ACTIONS(5095), - [sym__unclosed_span] = ACTIONS(5095), - [sym__strong_emphasis_open_star] = ACTIONS(5095), - [sym__strong_emphasis_open_underscore] = ACTIONS(5095), + [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(1253)] = { - [sym__backslash_escape] = ACTIONS(5099), - [sym_entity_reference] = ACTIONS(5099), - [sym_numeric_character_reference] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5101), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [sym__newline_token] = ACTIONS(5099), - [aux_sym_insert_token1] = ACTIONS(5099), - [aux_sym_delete_token1] = ACTIONS(5099), - [aux_sym_highlight_token1] = ACTIONS(5099), - [aux_sym_edit_comment_token1] = ACTIONS(5099), - [anon_sym_CARET_LBRACK] = ACTIONS(5099), - [anon_sym_LBRACK_CARET] = ACTIONS(5099), - [sym_uri_autolink] = ACTIONS(5099), - [sym_email_autolink] = ACTIONS(5099), - [sym__whitespace_ge_2] = ACTIONS(5099), - [aux_sym__whitespace_token1] = ACTIONS(5101), - [sym__word_no_digit] = ACTIONS(5099), - [sym__digits] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5099), - [sym__code_span_start] = ACTIONS(5099), - [sym__emphasis_open_star] = ACTIONS(5099), - [sym__emphasis_open_underscore] = ACTIONS(5099), - [sym__strikeout_open] = ACTIONS(5099), - [sym__latex_span_start] = ACTIONS(5099), - [sym__single_quote_open] = ACTIONS(5099), - [sym__double_quote_open] = ACTIONS(5099), - [sym__superscript_open] = ACTIONS(5099), - [sym__subscript_open] = ACTIONS(5099), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5099), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5099), - [sym__cite_author_in_text] = ACTIONS(5099), - [sym__cite_suppress_author] = ACTIONS(5099), - [sym__shortcode_open_escaped] = ACTIONS(5099), - [sym__shortcode_open] = ACTIONS(5099), - [sym__unclosed_span] = ACTIONS(5099), - [sym__strong_emphasis_open_star] = ACTIONS(5099), - [sym__strong_emphasis_open_underscore] = ACTIONS(5099), + [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(1254)] = { - [sym__backslash_escape] = ACTIONS(5103), - [sym_entity_reference] = ACTIONS(5103), - [sym_numeric_character_reference] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(5103), - [anon_sym_POUND] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_BSLASH] = ACTIONS(5105), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [sym__newline_token] = ACTIONS(5103), - [aux_sym_insert_token1] = ACTIONS(5103), - [aux_sym_delete_token1] = ACTIONS(5103), - [aux_sym_highlight_token1] = ACTIONS(5103), - [aux_sym_edit_comment_token1] = ACTIONS(5103), - [anon_sym_CARET_LBRACK] = ACTIONS(5103), - [anon_sym_LBRACK_CARET] = ACTIONS(5103), - [sym_uri_autolink] = ACTIONS(5103), - [sym_email_autolink] = ACTIONS(5103), - [sym__whitespace_ge_2] = ACTIONS(5103), - [aux_sym__whitespace_token1] = ACTIONS(5105), - [sym__word_no_digit] = ACTIONS(5103), - [sym__digits] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5103), - [sym__code_span_start] = ACTIONS(5103), - [sym__emphasis_open_star] = ACTIONS(5103), - [sym__emphasis_open_underscore] = ACTIONS(5103), - [sym__strikeout_open] = ACTIONS(5103), - [sym__latex_span_start] = ACTIONS(5103), - [sym__single_quote_open] = ACTIONS(5103), - [sym__double_quote_open] = ACTIONS(5103), - [sym__superscript_open] = ACTIONS(5103), - [sym__subscript_open] = ACTIONS(5103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5103), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5103), - [sym__cite_author_in_text] = ACTIONS(5103), - [sym__cite_suppress_author] = ACTIONS(5103), - [sym__shortcode_open_escaped] = ACTIONS(5103), - [sym__shortcode_open] = ACTIONS(5103), - [sym__unclosed_span] = ACTIONS(5103), - [sym__strong_emphasis_open_star] = ACTIONS(5103), - [sym__strong_emphasis_open_underscore] = ACTIONS(5103), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4619), }, [STATE(1255)] = { - [sym__backslash_escape] = ACTIONS(5107), - [sym_entity_reference] = ACTIONS(5107), - [sym_numeric_character_reference] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_COLON] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_BSLASH] = ACTIONS(5109), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_BQUOTE] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_PIPE] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [sym__newline_token] = ACTIONS(5107), - [aux_sym_insert_token1] = ACTIONS(5107), - [aux_sym_delete_token1] = ACTIONS(5107), - [aux_sym_highlight_token1] = ACTIONS(5107), - [aux_sym_edit_comment_token1] = ACTIONS(5107), - [anon_sym_CARET_LBRACK] = ACTIONS(5107), - [anon_sym_LBRACK_CARET] = ACTIONS(5107), - [sym_uri_autolink] = ACTIONS(5107), - [sym_email_autolink] = ACTIONS(5107), - [sym__whitespace_ge_2] = ACTIONS(5107), - [aux_sym__whitespace_token1] = ACTIONS(5109), - [sym__word_no_digit] = ACTIONS(5107), - [sym__digits] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5107), - [sym__code_span_start] = ACTIONS(5107), - [sym__emphasis_open_star] = ACTIONS(5107), - [sym__emphasis_open_underscore] = ACTIONS(5107), - [sym__strikeout_open] = ACTIONS(5107), - [sym__latex_span_start] = ACTIONS(5107), - [sym__single_quote_open] = ACTIONS(5107), - [sym__double_quote_open] = ACTIONS(5107), - [sym__superscript_open] = ACTIONS(5107), - [sym__subscript_open] = ACTIONS(5107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5107), - [sym__cite_author_in_text] = ACTIONS(5107), - [sym__cite_suppress_author] = ACTIONS(5107), - [sym__shortcode_open_escaped] = ACTIONS(5107), - [sym__shortcode_open] = ACTIONS(5107), - [sym__unclosed_span] = ACTIONS(5107), - [sym__strong_emphasis_open_star] = ACTIONS(5107), - [sym__strong_emphasis_open_underscore] = ACTIONS(5107), + [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_insert_token2] = 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(4625), + [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(1256)] = { - [sym__backslash_escape] = ACTIONS(5111), - [sym_entity_reference] = ACTIONS(5111), - [sym_numeric_character_reference] = ACTIONS(5111), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym_BQUOTE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [sym__newline_token] = ACTIONS(5111), - [aux_sym_insert_token1] = ACTIONS(5111), - [aux_sym_delete_token1] = ACTIONS(5111), - [aux_sym_highlight_token1] = ACTIONS(5111), - [aux_sym_edit_comment_token1] = ACTIONS(5111), - [anon_sym_CARET_LBRACK] = ACTIONS(5111), - [anon_sym_LBRACK_CARET] = ACTIONS(5111), - [sym_uri_autolink] = ACTIONS(5111), - [sym_email_autolink] = ACTIONS(5111), - [sym__whitespace_ge_2] = ACTIONS(5111), - [aux_sym__whitespace_token1] = ACTIONS(5113), - [sym__word_no_digit] = ACTIONS(5111), - [sym__digits] = ACTIONS(5111), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [sym__code_span_start] = ACTIONS(5111), - [sym__emphasis_open_star] = ACTIONS(5111), - [sym__emphasis_open_underscore] = ACTIONS(5111), - [sym__strikeout_open] = ACTIONS(5111), - [sym__latex_span_start] = ACTIONS(5111), - [sym__single_quote_open] = ACTIONS(5111), - [sym__double_quote_open] = ACTIONS(5111), - [sym__superscript_open] = ACTIONS(5111), - [sym__subscript_open] = ACTIONS(5111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5111), - [sym__cite_author_in_text] = ACTIONS(5111), - [sym__cite_suppress_author] = ACTIONS(5111), - [sym__shortcode_open_escaped] = ACTIONS(5111), - [sym__shortcode_open] = ACTIONS(5111), - [sym__unclosed_span] = ACTIONS(5111), - [sym__strong_emphasis_open_star] = ACTIONS(5111), - [sym__strong_emphasis_open_underscore] = ACTIONS(5111), + [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(1257)] = { - [sym__backslash_escape] = ACTIONS(4979), - [sym_entity_reference] = ACTIONS(4979), - [sym_numeric_character_reference] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_COLON] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), - [sym__newline_token] = ACTIONS(4979), - [aux_sym_insert_token1] = ACTIONS(4979), - [aux_sym_delete_token1] = ACTIONS(4979), - [aux_sym_highlight_token1] = ACTIONS(4979), - [aux_sym_edit_comment_token1] = ACTIONS(4979), - [anon_sym_CARET_LBRACK] = ACTIONS(4979), - [anon_sym_LBRACK_CARET] = ACTIONS(4979), - [sym_uri_autolink] = ACTIONS(4979), - [sym_email_autolink] = ACTIONS(4979), - [sym__whitespace_ge_2] = ACTIONS(4979), - [aux_sym__whitespace_token1] = ACTIONS(4981), - [sym__word_no_digit] = ACTIONS(4979), - [sym__digits] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4979), - [sym__code_span_start] = ACTIONS(4979), - [sym__emphasis_open_star] = ACTIONS(4979), - [sym__emphasis_open_underscore] = ACTIONS(4979), - [sym__emphasis_close_star] = ACTIONS(4979), - [sym__strikeout_open] = ACTIONS(4979), - [sym__latex_span_start] = ACTIONS(4979), - [sym__single_quote_open] = ACTIONS(4979), - [sym__double_quote_open] = ACTIONS(4979), - [sym__superscript_open] = ACTIONS(4979), - [sym__subscript_open] = ACTIONS(4979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4979), - [sym__cite_author_in_text] = ACTIONS(4979), - [sym__cite_suppress_author] = ACTIONS(4979), - [sym__shortcode_open_escaped] = ACTIONS(4979), - [sym__shortcode_open] = ACTIONS(4979), - [sym__unclosed_span] = ACTIONS(4979), - [sym__strong_emphasis_open_star] = ACTIONS(4979), - [sym__strong_emphasis_open_underscore] = ACTIONS(4979), + [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_insert_token2] = 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(4585), + [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(1258)] = { - [sym__backslash_escape] = ACTIONS(5115), - [sym_entity_reference] = ACTIONS(5115), - [sym_numeric_character_reference] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(5115), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_QMARK] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH] = ACTIONS(5117), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym_BQUOTE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [sym__newline_token] = ACTIONS(5115), - [aux_sym_insert_token1] = ACTIONS(5115), - [aux_sym_delete_token1] = ACTIONS(5115), - [aux_sym_highlight_token1] = ACTIONS(5115), - [aux_sym_edit_comment_token1] = ACTIONS(5115), - [anon_sym_CARET_LBRACK] = ACTIONS(5115), - [anon_sym_LBRACK_CARET] = ACTIONS(5115), - [sym_uri_autolink] = ACTIONS(5115), - [sym_email_autolink] = ACTIONS(5115), - [sym__whitespace_ge_2] = ACTIONS(5115), - [aux_sym__whitespace_token1] = ACTIONS(5117), - [sym__word_no_digit] = ACTIONS(5115), - [sym__digits] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5115), - [sym__code_span_start] = ACTIONS(5115), - [sym__emphasis_open_star] = ACTIONS(5115), - [sym__emphasis_open_underscore] = ACTIONS(5115), - [sym__strikeout_open] = ACTIONS(5115), - [sym__latex_span_start] = ACTIONS(5115), - [sym__single_quote_open] = ACTIONS(5115), - [sym__double_quote_open] = ACTIONS(5115), - [sym__superscript_open] = ACTIONS(5115), - [sym__subscript_open] = ACTIONS(5115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5115), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5115), - [sym__cite_author_in_text] = ACTIONS(5115), - [sym__cite_suppress_author] = ACTIONS(5115), - [sym__shortcode_open_escaped] = ACTIONS(5115), - [sym__shortcode_open] = ACTIONS(5115), - [sym__unclosed_span] = ACTIONS(5115), - [sym__strong_emphasis_open_star] = ACTIONS(5115), - [sym__strong_emphasis_open_underscore] = ACTIONS(5115), + [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__superscript_close] = 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(1259)] = { - [sym__backslash_escape] = ACTIONS(5119), - [sym_entity_reference] = ACTIONS(5119), - [sym_numeric_character_reference] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_AMP] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5121), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [sym__newline_token] = ACTIONS(5119), - [aux_sym_insert_token1] = ACTIONS(5119), - [aux_sym_delete_token1] = ACTIONS(5119), - [aux_sym_highlight_token1] = ACTIONS(5119), - [aux_sym_edit_comment_token1] = ACTIONS(5119), - [anon_sym_CARET_LBRACK] = ACTIONS(5119), - [anon_sym_LBRACK_CARET] = ACTIONS(5119), - [sym_uri_autolink] = ACTIONS(5119), - [sym_email_autolink] = ACTIONS(5119), - [sym__whitespace_ge_2] = ACTIONS(5119), - [aux_sym__whitespace_token1] = ACTIONS(5121), - [sym__word_no_digit] = ACTIONS(5119), - [sym__digits] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5119), - [sym__code_span_start] = ACTIONS(5119), - [sym__emphasis_open_star] = ACTIONS(5119), - [sym__emphasis_open_underscore] = ACTIONS(5119), - [sym__strikeout_open] = ACTIONS(5119), - [sym__latex_span_start] = ACTIONS(5119), - [sym__single_quote_open] = ACTIONS(5119), - [sym__double_quote_open] = ACTIONS(5119), - [sym__superscript_open] = ACTIONS(5119), - [sym__subscript_open] = ACTIONS(5119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5119), - [sym__cite_author_in_text] = ACTIONS(5119), - [sym__cite_suppress_author] = ACTIONS(5119), - [sym__shortcode_open_escaped] = ACTIONS(5119), - [sym__shortcode_open] = ACTIONS(5119), - [sym__unclosed_span] = ACTIONS(5119), - [sym__strong_emphasis_open_star] = ACTIONS(5119), - [sym__strong_emphasis_open_underscore] = ACTIONS(5119), + [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), + [sym__strong_emphasis_close_underscore] = ACTIONS(4627), }, [STATE(1260)] = { - [sym__backslash_escape] = ACTIONS(5123), - [sym_entity_reference] = ACTIONS(5123), - [sym_numeric_character_reference] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_DQUOTE] = ACTIONS(5123), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH] = ACTIONS(5125), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym_BQUOTE] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [sym__newline_token] = ACTIONS(5123), - [aux_sym_insert_token1] = ACTIONS(5123), - [aux_sym_delete_token1] = ACTIONS(5123), - [aux_sym_highlight_token1] = ACTIONS(5123), - [aux_sym_edit_comment_token1] = ACTIONS(5123), - [anon_sym_CARET_LBRACK] = ACTIONS(5123), - [anon_sym_LBRACK_CARET] = ACTIONS(5123), - [sym_uri_autolink] = ACTIONS(5123), - [sym_email_autolink] = ACTIONS(5123), - [sym__whitespace_ge_2] = ACTIONS(5123), - [aux_sym__whitespace_token1] = ACTIONS(5125), - [sym__word_no_digit] = ACTIONS(5123), - [sym__digits] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), - [sym__code_span_start] = ACTIONS(5123), - [sym__emphasis_open_star] = ACTIONS(5123), - [sym__emphasis_open_underscore] = ACTIONS(5123), - [sym__strikeout_open] = ACTIONS(5123), - [sym__latex_span_start] = ACTIONS(5123), - [sym__single_quote_open] = ACTIONS(5123), - [sym__double_quote_open] = ACTIONS(5123), - [sym__superscript_open] = ACTIONS(5123), - [sym__subscript_open] = ACTIONS(5123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5123), - [sym__cite_author_in_text] = ACTIONS(5123), - [sym__cite_suppress_author] = ACTIONS(5123), - [sym__shortcode_open_escaped] = ACTIONS(5123), - [sym__shortcode_open] = ACTIONS(5123), - [sym__unclosed_span] = ACTIONS(5123), - [sym__strong_emphasis_open_star] = ACTIONS(5123), - [sym__strong_emphasis_open_underscore] = ACTIONS(5123), - }, - [STATE(1261)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -133725,7 +132373,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(4631), [anon_sym_AMP] = ACTIONS(4633), [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_STAR] = ACTIONS(4631), [anon_sym_PLUS] = ACTIONS(4631), [anon_sym_COMMA] = ACTIONS(4631), [anon_sym_DASH] = ACTIONS(4633), @@ -133737,7 +132384,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4631), [anon_sym_LBRACK] = ACTIONS(4633), [anon_sym_BSLASH] = ACTIONS(4633), - [anon_sym_RBRACK] = ACTIONS(4631), [anon_sym_CARET] = ACTIONS(4633), [anon_sym_BQUOTE] = ACTIONS(4631), [anon_sym_LBRACE] = ACTIONS(4631), @@ -133747,6 +132393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(4631), [sym__newline_token] = ACTIONS(4631), [aux_sym_insert_token1] = ACTIONS(4631), + [aux_sym_insert_token2] = ACTIONS(4631), [aux_sym_delete_token1] = ACTIONS(4631), [aux_sym_highlight_token1] = ACTIONS(4631), [aux_sym_edit_comment_token1] = ACTIONS(4631), @@ -133754,7 +132401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(4631), [sym_uri_autolink] = ACTIONS(4631), [sym_email_autolink] = ACTIONS(4631), - [sym__whitespace_ge_2] = ACTIONS(4631), + [sym__whitespace_ge_2] = ACTIONS(4633), [aux_sym__whitespace_token1] = ACTIONS(4633), [sym__word_no_digit] = ACTIONS(4631), [sym__digits] = ACTIONS(4631), @@ -133780,6535 +132427,4764 @@ 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(1261)] = { + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_insert_token2] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4225), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), + }, [STATE(1262)] = { - [ts_builtin_sym_end] = ACTIONS(4991), - [sym__backslash_escape] = ACTIONS(4991), - [sym_entity_reference] = ACTIONS(4991), - [sym_numeric_character_reference] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH] = ACTIONS(4993), - [anon_sym_CARET] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym__newline_token] = ACTIONS(4991), - [aux_sym_insert_token1] = ACTIONS(4991), - [aux_sym_delete_token1] = ACTIONS(4991), - [aux_sym_highlight_token1] = ACTIONS(4991), - [aux_sym_edit_comment_token1] = ACTIONS(4991), - [anon_sym_CARET_LBRACK] = ACTIONS(4991), - [anon_sym_LBRACK_CARET] = ACTIONS(4991), - [sym_uri_autolink] = ACTIONS(4991), - [sym_email_autolink] = ACTIONS(4991), - [sym__whitespace_ge_2] = ACTIONS(4991), - [aux_sym__whitespace_token1] = ACTIONS(4993), - [sym__word_no_digit] = ACTIONS(4991), - [sym__digits] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), - [sym__code_span_start] = ACTIONS(4991), - [sym__emphasis_open_star] = ACTIONS(4991), - [sym__emphasis_open_underscore] = ACTIONS(4991), - [sym__strikeout_open] = ACTIONS(4991), - [sym__latex_span_start] = ACTIONS(4991), - [sym__single_quote_open] = ACTIONS(4991), - [sym__double_quote_open] = ACTIONS(4991), - [sym__superscript_open] = ACTIONS(4991), - [sym__subscript_open] = ACTIONS(4991), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4991), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4991), - [sym__cite_author_in_text] = ACTIONS(4991), - [sym__cite_suppress_author] = ACTIONS(4991), - [sym__shortcode_open_escaped] = ACTIONS(4991), - [sym__shortcode_open] = ACTIONS(4991), - [sym__unclosed_span] = ACTIONS(4991), - [sym__strong_emphasis_open_star] = ACTIONS(4991), - [sym__strong_emphasis_open_underscore] = ACTIONS(4991), + [ts_builtin_sym_end] = ACTIONS(4303), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(1263)] = { - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_RBRACK] = ACTIONS(4657), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [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(1264)] = { - [sym__backslash_escape] = ACTIONS(4983), - [sym_entity_reference] = ACTIONS(4983), - [sym_numeric_character_reference] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [sym__newline_token] = ACTIONS(4983), - [aux_sym_insert_token1] = ACTIONS(4983), - [aux_sym_delete_token1] = ACTIONS(4983), - [aux_sym_highlight_token1] = ACTIONS(4983), - [aux_sym_edit_comment_token1] = ACTIONS(4983), - [anon_sym_CARET_LBRACK] = ACTIONS(4983), - [anon_sym_LBRACK_CARET] = ACTIONS(4983), - [sym_uri_autolink] = ACTIONS(4983), - [sym_email_autolink] = ACTIONS(4983), - [sym__whitespace_ge_2] = ACTIONS(4983), - [aux_sym__whitespace_token1] = ACTIONS(4985), - [sym__word_no_digit] = ACTIONS(4983), - [sym__digits] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4983), - [sym__code_span_start] = ACTIONS(4983), - [sym__emphasis_open_star] = ACTIONS(4983), - [sym__emphasis_open_underscore] = ACTIONS(4983), - [sym__emphasis_close_star] = ACTIONS(4983), - [sym__strikeout_open] = ACTIONS(4983), - [sym__latex_span_start] = ACTIONS(4983), - [sym__single_quote_open] = ACTIONS(4983), - [sym__double_quote_open] = ACTIONS(4983), - [sym__superscript_open] = ACTIONS(4983), - [sym__subscript_open] = ACTIONS(4983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4983), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4983), - [sym__cite_author_in_text] = ACTIONS(4983), - [sym__cite_suppress_author] = ACTIONS(4983), - [sym__shortcode_open_escaped] = ACTIONS(4983), - [sym__shortcode_open] = ACTIONS(4983), - [sym__unclosed_span] = ACTIONS(4983), - [sym__strong_emphasis_open_star] = ACTIONS(4983), - [sym__strong_emphasis_open_underscore] = ACTIONS(4983), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__emphasis_close_star] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(1265)] = { - [sym__backslash_escape] = ACTIONS(5127), - [sym_entity_reference] = ACTIONS(5127), - [sym_numeric_character_reference] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_DQUOTE] = ACTIONS(5127), - [anon_sym_POUND] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_PERCENT] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_QMARK] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH] = ACTIONS(5129), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym_BQUOTE] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym__newline_token] = ACTIONS(5127), - [aux_sym_insert_token1] = ACTIONS(5127), - [aux_sym_delete_token1] = ACTIONS(5127), - [aux_sym_highlight_token1] = ACTIONS(5127), - [aux_sym_edit_comment_token1] = ACTIONS(5127), - [anon_sym_CARET_LBRACK] = ACTIONS(5127), - [anon_sym_LBRACK_CARET] = ACTIONS(5127), - [sym_uri_autolink] = ACTIONS(5127), - [sym_email_autolink] = ACTIONS(5127), - [sym__whitespace_ge_2] = ACTIONS(5127), - [aux_sym__whitespace_token1] = ACTIONS(5129), - [sym__word_no_digit] = ACTIONS(5127), - [sym__digits] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5127), - [sym__code_span_start] = ACTIONS(5127), - [sym__emphasis_open_star] = ACTIONS(5127), - [sym__emphasis_open_underscore] = ACTIONS(5127), - [sym__strikeout_open] = ACTIONS(5127), - [sym__latex_span_start] = ACTIONS(5127), - [sym__single_quote_open] = ACTIONS(5127), - [sym__double_quote_open] = ACTIONS(5127), - [sym__superscript_open] = ACTIONS(5127), - [sym__subscript_open] = ACTIONS(5127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5127), - [sym__cite_author_in_text] = ACTIONS(5127), - [sym__cite_suppress_author] = ACTIONS(5127), - [sym__shortcode_open_escaped] = ACTIONS(5127), - [sym__shortcode_open] = ACTIONS(5127), - [sym__unclosed_span] = ACTIONS(5127), - [sym__strong_emphasis_open_star] = ACTIONS(5127), - [sym__strong_emphasis_open_underscore] = ACTIONS(5127), + [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_insert_token2] = 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(4641), + [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(1266)] = { - [sym__backslash_escape] = ACTIONS(5131), - [sym_entity_reference] = ACTIONS(5131), - [sym_numeric_character_reference] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(5131), - [anon_sym_POUND] = ACTIONS(5131), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(5133), - [anon_sym_SQUOTE] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_QMARK] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5131), - [anon_sym_CARET] = ACTIONS(5133), - [anon_sym_BQUOTE] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_PIPE] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [sym__newline_token] = ACTIONS(5131), - [aux_sym_insert_token1] = ACTIONS(5131), - [aux_sym_delete_token1] = ACTIONS(5131), - [aux_sym_highlight_token1] = ACTIONS(5131), - [aux_sym_edit_comment_token1] = ACTIONS(5131), - [anon_sym_CARET_LBRACK] = ACTIONS(5131), - [anon_sym_LBRACK_CARET] = ACTIONS(5131), - [sym_uri_autolink] = ACTIONS(5131), - [sym_email_autolink] = ACTIONS(5131), - [sym__whitespace_ge_2] = ACTIONS(5131), - [aux_sym__whitespace_token1] = ACTIONS(5133), - [sym__word_no_digit] = ACTIONS(5131), - [sym__digits] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), - [sym__code_span_start] = ACTIONS(5131), - [sym__emphasis_open_star] = ACTIONS(5131), - [sym__emphasis_open_underscore] = ACTIONS(5131), - [sym__strikeout_open] = ACTIONS(5131), - [sym__latex_span_start] = ACTIONS(5131), - [sym__single_quote_open] = ACTIONS(5131), - [sym__double_quote_open] = ACTIONS(5131), - [sym__superscript_open] = ACTIONS(5131), - [sym__subscript_open] = ACTIONS(5131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5131), - [sym__cite_author_in_text] = ACTIONS(5131), - [sym__cite_suppress_author] = ACTIONS(5131), - [sym__shortcode_open_escaped] = ACTIONS(5131), - [sym__shortcode_open] = ACTIONS(5131), - [sym__unclosed_span] = ACTIONS(5131), - [sym__strong_emphasis_open_star] = ACTIONS(5131), - [sym__strong_emphasis_open_underscore] = ACTIONS(5131), + [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(1267)] = { - [sym__backslash_escape] = ACTIONS(5135), - [sym_entity_reference] = ACTIONS(5135), - [sym_numeric_character_reference] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_AMP] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_QMARK] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [sym__newline_token] = ACTIONS(5135), - [aux_sym_insert_token1] = ACTIONS(5135), - [aux_sym_delete_token1] = ACTIONS(5135), - [aux_sym_highlight_token1] = ACTIONS(5135), - [aux_sym_edit_comment_token1] = ACTIONS(5135), - [anon_sym_CARET_LBRACK] = ACTIONS(5135), - [anon_sym_LBRACK_CARET] = ACTIONS(5135), - [sym_uri_autolink] = ACTIONS(5135), - [sym_email_autolink] = ACTIONS(5135), - [sym__whitespace_ge_2] = ACTIONS(5135), - [aux_sym__whitespace_token1] = ACTIONS(5137), - [sym__word_no_digit] = ACTIONS(5135), - [sym__digits] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5135), - [sym__code_span_start] = ACTIONS(5135), - [sym__emphasis_open_star] = ACTIONS(5135), - [sym__emphasis_open_underscore] = ACTIONS(5135), - [sym__strikeout_open] = ACTIONS(5135), - [sym__latex_span_start] = ACTIONS(5135), - [sym__single_quote_open] = ACTIONS(5135), - [sym__double_quote_open] = ACTIONS(5135), - [sym__superscript_open] = ACTIONS(5135), - [sym__subscript_open] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5135), - [sym__cite_author_in_text] = ACTIONS(5135), - [sym__cite_suppress_author] = ACTIONS(5135), - [sym__shortcode_open_escaped] = ACTIONS(5135), - [sym__shortcode_open] = ACTIONS(5135), - [sym__unclosed_span] = ACTIONS(5135), - [sym__strong_emphasis_open_star] = ACTIONS(5135), - [sym__strong_emphasis_open_underscore] = ACTIONS(5135), + [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(1268)] = { - [sym__backslash_escape] = ACTIONS(5139), - [sym_entity_reference] = ACTIONS(5139), - [sym_numeric_character_reference] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_DQUOTE] = ACTIONS(5139), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5141), - [anon_sym_BQUOTE] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_RPAREN] = ACTIONS(5139), - [sym__newline_token] = ACTIONS(5139), - [aux_sym_insert_token1] = ACTIONS(5139), - [aux_sym_delete_token1] = ACTIONS(5139), - [aux_sym_highlight_token1] = ACTIONS(5139), - [aux_sym_edit_comment_token1] = ACTIONS(5139), - [anon_sym_CARET_LBRACK] = ACTIONS(5139), - [anon_sym_LBRACK_CARET] = ACTIONS(5139), - [sym_uri_autolink] = ACTIONS(5139), - [sym_email_autolink] = ACTIONS(5139), - [sym__whitespace_ge_2] = ACTIONS(5139), - [aux_sym__whitespace_token1] = ACTIONS(5141), - [sym__word_no_digit] = ACTIONS(5139), - [sym__digits] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5141), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5139), - [sym__code_span_start] = ACTIONS(5139), - [sym__emphasis_open_star] = ACTIONS(5139), - [sym__emphasis_open_underscore] = ACTIONS(5139), - [sym__strikeout_open] = ACTIONS(5139), - [sym__latex_span_start] = ACTIONS(5139), - [sym__single_quote_open] = ACTIONS(5139), - [sym__double_quote_open] = ACTIONS(5139), - [sym__superscript_open] = ACTIONS(5139), - [sym__subscript_open] = ACTIONS(5139), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5139), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5139), - [sym__cite_author_in_text] = ACTIONS(5139), - [sym__cite_suppress_author] = ACTIONS(5139), - [sym__shortcode_open_escaped] = ACTIONS(5139), - [sym__shortcode_open] = ACTIONS(5139), - [sym__unclosed_span] = ACTIONS(5139), - [sym__strong_emphasis_open_star] = ACTIONS(5139), - [sym__strong_emphasis_open_underscore] = ACTIONS(5139), + [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_insert_token2] = 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(4653), + [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(1269)] = { - [sym__backslash_escape] = ACTIONS(5143), - [sym_entity_reference] = ACTIONS(5143), - [sym_numeric_character_reference] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_DQUOTE] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_PERCENT] = ACTIONS(5143), - [anon_sym_AMP] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH] = ACTIONS(5145), - [anon_sym_RBRACK] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym_BQUOTE] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [sym__newline_token] = ACTIONS(5143), - [aux_sym_insert_token1] = ACTIONS(5143), - [aux_sym_delete_token1] = ACTIONS(5143), - [aux_sym_highlight_token1] = ACTIONS(5143), - [aux_sym_edit_comment_token1] = ACTIONS(5143), - [anon_sym_CARET_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_CARET] = ACTIONS(5143), - [sym_uri_autolink] = ACTIONS(5143), - [sym_email_autolink] = ACTIONS(5143), - [sym__whitespace_ge_2] = ACTIONS(5143), - [aux_sym__whitespace_token1] = ACTIONS(5145), - [sym__word_no_digit] = ACTIONS(5143), - [sym__digits] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5143), - [sym__code_span_start] = ACTIONS(5143), - [sym__emphasis_open_star] = ACTIONS(5143), - [sym__emphasis_open_underscore] = ACTIONS(5143), - [sym__strikeout_open] = ACTIONS(5143), - [sym__latex_span_start] = ACTIONS(5143), - [sym__single_quote_open] = ACTIONS(5143), - [sym__double_quote_open] = ACTIONS(5143), - [sym__superscript_open] = ACTIONS(5143), - [sym__subscript_open] = ACTIONS(5143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5143), - [sym__cite_author_in_text] = ACTIONS(5143), - [sym__cite_suppress_author] = ACTIONS(5143), - [sym__shortcode_open_escaped] = ACTIONS(5143), - [sym__shortcode_open] = ACTIONS(5143), - [sym__unclosed_span] = ACTIONS(5143), - [sym__strong_emphasis_open_star] = ACTIONS(5143), - [sym__strong_emphasis_open_underscore] = ACTIONS(5143), + [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_insert_token2] = 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(4657), + [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(1270)] = { - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_RBRACK] = ACTIONS(4661), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), + [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_insert_token2] = 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(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [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(1271)] = { - [sym__backslash_escape] = ACTIONS(4987), - [sym_entity_reference] = ACTIONS(4987), - [sym_numeric_character_reference] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym__newline_token] = ACTIONS(4987), - [aux_sym_insert_token1] = ACTIONS(4987), - [aux_sym_delete_token1] = ACTIONS(4987), - [aux_sym_highlight_token1] = ACTIONS(4987), - [aux_sym_edit_comment_token1] = ACTIONS(4987), - [anon_sym_CARET_LBRACK] = ACTIONS(4987), - [anon_sym_LBRACK_CARET] = ACTIONS(4987), - [sym_uri_autolink] = ACTIONS(4987), - [sym_email_autolink] = ACTIONS(4987), - [sym__whitespace_ge_2] = ACTIONS(4987), - [aux_sym__whitespace_token1] = ACTIONS(4989), - [sym__word_no_digit] = ACTIONS(4987), - [sym__digits] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4987), - [sym__code_span_start] = ACTIONS(4987), - [sym__emphasis_open_star] = ACTIONS(4987), - [sym__emphasis_open_underscore] = ACTIONS(4987), - [sym__emphasis_close_star] = ACTIONS(4987), - [sym__strikeout_open] = ACTIONS(4987), - [sym__latex_span_start] = ACTIONS(4987), - [sym__single_quote_open] = ACTIONS(4987), - [sym__double_quote_open] = ACTIONS(4987), - [sym__superscript_open] = ACTIONS(4987), - [sym__subscript_open] = ACTIONS(4987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4987), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4987), - [sym__cite_author_in_text] = ACTIONS(4987), - [sym__cite_suppress_author] = ACTIONS(4987), - [sym__shortcode_open_escaped] = ACTIONS(4987), - [sym__shortcode_open] = ACTIONS(4987), - [sym__unclosed_span] = ACTIONS(4987), - [sym__strong_emphasis_open_star] = ACTIONS(4987), - [sym__strong_emphasis_open_underscore] = ACTIONS(4987), + [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_insert_token2] = 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(4665), + [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(1272)] = { - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_RBRACK] = ACTIONS(4637), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [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_insert_token2] = 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(4669), + [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__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(1273)] = { - [sym__backslash_escape] = ACTIONS(5147), - [sym_entity_reference] = ACTIONS(5147), - [sym_numeric_character_reference] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_DQUOTE] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(5149), - [anon_sym_RBRACK] = ACTIONS(5147), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [sym__newline_token] = ACTIONS(5147), - [aux_sym_insert_token1] = ACTIONS(5147), - [aux_sym_delete_token1] = ACTIONS(5147), - [aux_sym_highlight_token1] = ACTIONS(5147), - [aux_sym_edit_comment_token1] = ACTIONS(5147), - [anon_sym_CARET_LBRACK] = ACTIONS(5147), - [anon_sym_LBRACK_CARET] = ACTIONS(5147), - [sym_uri_autolink] = ACTIONS(5147), - [sym_email_autolink] = ACTIONS(5147), - [sym__whitespace_ge_2] = ACTIONS(5147), - [aux_sym__whitespace_token1] = ACTIONS(5149), - [sym__word_no_digit] = ACTIONS(5147), - [sym__digits] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5147), - [sym__code_span_start] = ACTIONS(5147), - [sym__emphasis_open_star] = ACTIONS(5147), - [sym__emphasis_open_underscore] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5147), - [sym__latex_span_start] = ACTIONS(5147), - [sym__single_quote_open] = ACTIONS(5147), - [sym__double_quote_open] = ACTIONS(5147), - [sym__superscript_open] = ACTIONS(5147), - [sym__subscript_open] = ACTIONS(5147), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5147), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5147), - [sym__cite_author_in_text] = ACTIONS(5147), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__shortcode_open_escaped] = ACTIONS(5147), - [sym__shortcode_open] = ACTIONS(5147), - [sym__unclosed_span] = ACTIONS(5147), - [sym__strong_emphasis_open_star] = ACTIONS(5147), - [sym__strong_emphasis_open_underscore] = ACTIONS(5147), + [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_insert_token2] = 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(4673), + [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(1274)] = { - [sym__backslash_escape] = ACTIONS(5151), - [sym_entity_reference] = ACTIONS(5151), - [sym_numeric_character_reference] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_DQUOTE] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_PERCENT] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_QMARK] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5151), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [sym__newline_token] = ACTIONS(5151), - [aux_sym_insert_token1] = ACTIONS(5151), - [aux_sym_delete_token1] = ACTIONS(5151), - [aux_sym_highlight_token1] = ACTIONS(5151), - [aux_sym_edit_comment_token1] = ACTIONS(5151), - [anon_sym_CARET_LBRACK] = ACTIONS(5151), - [anon_sym_LBRACK_CARET] = ACTIONS(5151), - [sym_uri_autolink] = ACTIONS(5151), - [sym_email_autolink] = ACTIONS(5151), - [sym__whitespace_ge_2] = ACTIONS(5151), - [aux_sym__whitespace_token1] = ACTIONS(5153), - [sym__word_no_digit] = ACTIONS(5151), - [sym__digits] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5151), - [sym__code_span_start] = ACTIONS(5151), - [sym__emphasis_open_star] = ACTIONS(5151), - [sym__emphasis_open_underscore] = ACTIONS(5151), - [sym__strikeout_open] = ACTIONS(5151), - [sym__latex_span_start] = ACTIONS(5151), - [sym__single_quote_open] = ACTIONS(5151), - [sym__double_quote_open] = ACTIONS(5151), - [sym__superscript_open] = ACTIONS(5151), - [sym__subscript_open] = ACTIONS(5151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5151), - [sym__cite_author_in_text] = ACTIONS(5151), - [sym__cite_suppress_author] = ACTIONS(5151), - [sym__shortcode_open_escaped] = ACTIONS(5151), - [sym__shortcode_open] = ACTIONS(5151), - [sym__unclosed_span] = ACTIONS(5151), - [sym__strong_emphasis_open_star] = ACTIONS(5151), - [sym__strong_emphasis_open_underscore] = ACTIONS(5151), + [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_insert_token2] = 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(4677), + [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(1275)] = { - [sym__backslash_escape] = ACTIONS(5155), - [sym_entity_reference] = ACTIONS(5155), - [sym_numeric_character_reference] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_QMARK] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [sym__newline_token] = ACTIONS(5155), - [aux_sym_insert_token1] = ACTIONS(5155), - [aux_sym_delete_token1] = ACTIONS(5155), - [aux_sym_highlight_token1] = ACTIONS(5155), - [aux_sym_edit_comment_token1] = ACTIONS(5155), - [anon_sym_CARET_LBRACK] = ACTIONS(5155), - [anon_sym_LBRACK_CARET] = ACTIONS(5155), - [sym_uri_autolink] = ACTIONS(5155), - [sym_email_autolink] = ACTIONS(5155), - [sym__whitespace_ge_2] = ACTIONS(5155), - [aux_sym__whitespace_token1] = ACTIONS(5157), - [sym__word_no_digit] = ACTIONS(5155), - [sym__digits] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5155), - [sym__code_span_start] = ACTIONS(5155), - [sym__emphasis_open_star] = ACTIONS(5155), - [sym__emphasis_open_underscore] = ACTIONS(5155), - [sym__strikeout_open] = ACTIONS(5155), - [sym__latex_span_start] = ACTIONS(5155), - [sym__single_quote_open] = ACTIONS(5155), - [sym__double_quote_open] = ACTIONS(5155), - [sym__superscript_open] = ACTIONS(5155), - [sym__subscript_open] = ACTIONS(5155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5155), - [sym__cite_author_in_text] = ACTIONS(5155), - [sym__cite_suppress_author] = ACTIONS(5155), - [sym__shortcode_open_escaped] = ACTIONS(5155), - [sym__shortcode_open] = ACTIONS(5155), - [sym__unclosed_span] = ACTIONS(5155), - [sym__strong_emphasis_open_star] = ACTIONS(5155), - [sym__strong_emphasis_open_underscore] = ACTIONS(5155), + [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_insert_token2] = 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(4681), + [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(1276)] = { - [sym__backslash_escape] = ACTIONS(5159), - [sym_entity_reference] = ACTIONS(5159), - [sym_numeric_character_reference] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_DQUOTE] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_QMARK] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym__newline_token] = ACTIONS(5159), - [aux_sym_insert_token1] = ACTIONS(5159), - [aux_sym_delete_token1] = ACTIONS(5159), - [aux_sym_highlight_token1] = ACTIONS(5159), - [aux_sym_edit_comment_token1] = ACTIONS(5159), - [anon_sym_CARET_LBRACK] = ACTIONS(5159), - [anon_sym_LBRACK_CARET] = ACTIONS(5159), - [sym_uri_autolink] = ACTIONS(5159), - [sym_email_autolink] = ACTIONS(5159), - [sym__whitespace_ge_2] = ACTIONS(5159), - [aux_sym__whitespace_token1] = ACTIONS(5161), - [sym__word_no_digit] = ACTIONS(5159), - [sym__digits] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5159), - [sym__code_span_start] = ACTIONS(5159), - [sym__emphasis_open_star] = ACTIONS(5159), - [sym__emphasis_open_underscore] = ACTIONS(5159), - [sym__strikeout_open] = ACTIONS(5159), - [sym__latex_span_start] = ACTIONS(5159), - [sym__single_quote_open] = ACTIONS(5159), - [sym__double_quote_open] = ACTIONS(5159), - [sym__superscript_open] = ACTIONS(5159), - [sym__subscript_open] = ACTIONS(5159), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5159), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5159), - [sym__cite_author_in_text] = ACTIONS(5159), - [sym__cite_suppress_author] = ACTIONS(5159), - [sym__shortcode_open_escaped] = ACTIONS(5159), - [sym__shortcode_open] = ACTIONS(5159), - [sym__unclosed_span] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5159), - [sym__strong_emphasis_open_underscore] = ACTIONS(5159), + [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_insert_token2] = 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(4685), + [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(1277)] = { - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_RBRACK] = ACTIONS(4665), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [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_insert_token2] = 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(4689), + [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(1278)] = { - [sym__backslash_escape] = ACTIONS(4991), - [sym_entity_reference] = ACTIONS(4991), - [sym_numeric_character_reference] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH] = ACTIONS(4993), - [anon_sym_CARET] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym__newline_token] = ACTIONS(4991), - [aux_sym_insert_token1] = ACTIONS(4991), - [aux_sym_delete_token1] = ACTIONS(4991), - [aux_sym_highlight_token1] = ACTIONS(4991), - [aux_sym_edit_comment_token1] = ACTIONS(4991), - [anon_sym_CARET_LBRACK] = ACTIONS(4991), - [anon_sym_LBRACK_CARET] = ACTIONS(4991), - [sym_uri_autolink] = ACTIONS(4991), - [sym_email_autolink] = ACTIONS(4991), - [sym__whitespace_ge_2] = ACTIONS(4991), - [aux_sym__whitespace_token1] = ACTIONS(4993), - [sym__word_no_digit] = ACTIONS(4991), - [sym__digits] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), - [sym__code_span_start] = ACTIONS(4991), - [sym__emphasis_open_star] = ACTIONS(4991), - [sym__emphasis_open_underscore] = ACTIONS(4991), - [sym__emphasis_close_star] = ACTIONS(4991), - [sym__strikeout_open] = ACTIONS(4991), - [sym__latex_span_start] = ACTIONS(4991), - [sym__single_quote_open] = ACTIONS(4991), - [sym__double_quote_open] = ACTIONS(4991), - [sym__superscript_open] = ACTIONS(4991), - [sym__subscript_open] = ACTIONS(4991), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4991), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4991), - [sym__cite_author_in_text] = ACTIONS(4991), - [sym__cite_suppress_author] = ACTIONS(4991), - [sym__shortcode_open_escaped] = ACTIONS(4991), - [sym__shortcode_open] = ACTIONS(4991), - [sym__unclosed_span] = ACTIONS(4991), - [sym__strong_emphasis_open_star] = ACTIONS(4991), - [sym__strong_emphasis_open_underscore] = ACTIONS(4991), + [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_insert_token2] = 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(4693), + [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(1279)] = { - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_RBRACK] = ACTIONS(4669), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [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_insert_token2] = 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(4697), + [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(1280)] = { - [sym__backslash_escape] = ACTIONS(4995), - [sym_entity_reference] = ACTIONS(4995), - [sym_numeric_character_reference] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym__newline_token] = ACTIONS(4995), - [aux_sym_insert_token1] = ACTIONS(4995), - [aux_sym_delete_token1] = ACTIONS(4995), - [aux_sym_highlight_token1] = ACTIONS(4995), - [aux_sym_edit_comment_token1] = ACTIONS(4995), - [anon_sym_CARET_LBRACK] = ACTIONS(4995), - [anon_sym_LBRACK_CARET] = ACTIONS(4995), - [sym_uri_autolink] = ACTIONS(4995), - [sym_email_autolink] = ACTIONS(4995), - [sym__whitespace_ge_2] = ACTIONS(4995), - [aux_sym__whitespace_token1] = ACTIONS(4997), - [sym__word_no_digit] = ACTIONS(4995), - [sym__digits] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4995), - [sym__code_span_start] = ACTIONS(4995), - [sym__emphasis_open_star] = ACTIONS(4995), - [sym__emphasis_open_underscore] = ACTIONS(4995), - [sym__emphasis_close_star] = ACTIONS(4995), - [sym__strikeout_open] = ACTIONS(4995), - [sym__latex_span_start] = ACTIONS(4995), - [sym__single_quote_open] = ACTIONS(4995), - [sym__double_quote_open] = ACTIONS(4995), - [sym__superscript_open] = ACTIONS(4995), - [sym__subscript_open] = ACTIONS(4995), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4995), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4995), - [sym__cite_author_in_text] = ACTIONS(4995), - [sym__cite_suppress_author] = ACTIONS(4995), - [sym__shortcode_open_escaped] = ACTIONS(4995), - [sym__shortcode_open] = ACTIONS(4995), - [sym__unclosed_span] = ACTIONS(4995), - [sym__strong_emphasis_open_star] = ACTIONS(4995), - [sym__strong_emphasis_open_underscore] = ACTIONS(4995), + [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_insert_token2] = 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(4701), + [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(1281)] = { - [sym__backslash_escape] = ACTIONS(5163), - [sym_entity_reference] = ACTIONS(5163), - [sym_numeric_character_reference] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_PERCENT] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym_BQUOTE] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [sym__newline_token] = ACTIONS(5163), - [aux_sym_insert_token1] = ACTIONS(5163), - [aux_sym_delete_token1] = ACTIONS(5163), - [aux_sym_highlight_token1] = ACTIONS(5163), - [aux_sym_edit_comment_token1] = ACTIONS(5163), - [anon_sym_CARET_LBRACK] = ACTIONS(5163), - [anon_sym_LBRACK_CARET] = ACTIONS(5163), - [sym_uri_autolink] = ACTIONS(5163), - [sym_email_autolink] = ACTIONS(5163), - [sym__whitespace_ge_2] = ACTIONS(5163), - [aux_sym__whitespace_token1] = ACTIONS(5165), - [sym__word_no_digit] = ACTIONS(5163), - [sym__digits] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5163), - [sym__code_span_start] = ACTIONS(5163), - [sym__emphasis_open_star] = ACTIONS(5163), - [sym__emphasis_open_underscore] = ACTIONS(5163), - [sym__strikeout_open] = ACTIONS(5163), - [sym__latex_span_start] = ACTIONS(5163), - [sym__single_quote_open] = ACTIONS(5163), - [sym__double_quote_open] = ACTIONS(5163), - [sym__superscript_open] = ACTIONS(5163), - [sym__subscript_open] = ACTIONS(5163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5163), - [sym__cite_author_in_text] = ACTIONS(5163), - [sym__cite_suppress_author] = ACTIONS(5163), - [sym__shortcode_open_escaped] = ACTIONS(5163), - [sym__shortcode_open] = ACTIONS(5163), - [sym__unclosed_span] = ACTIONS(5163), - [sym__strong_emphasis_open_star] = ACTIONS(5163), - [sym__strong_emphasis_open_underscore] = ACTIONS(5163), + [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_insert_token2] = 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(4705), + [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(1282)] = { - [sym__backslash_escape] = ACTIONS(5167), - [sym_entity_reference] = ACTIONS(5167), - [sym_numeric_character_reference] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_POUND] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_PERCENT] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_QMARK] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [sym__newline_token] = ACTIONS(5167), - [aux_sym_insert_token1] = ACTIONS(5167), - [aux_sym_delete_token1] = ACTIONS(5167), - [aux_sym_highlight_token1] = ACTIONS(5167), - [aux_sym_edit_comment_token1] = ACTIONS(5167), - [anon_sym_CARET_LBRACK] = ACTIONS(5167), - [anon_sym_LBRACK_CARET] = ACTIONS(5167), - [sym_uri_autolink] = ACTIONS(5167), - [sym_email_autolink] = ACTIONS(5167), - [sym__whitespace_ge_2] = ACTIONS(5167), - [aux_sym__whitespace_token1] = ACTIONS(5169), - [sym__word_no_digit] = ACTIONS(5167), - [sym__digits] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5169), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), - [sym__code_span_start] = ACTIONS(5167), - [sym__emphasis_open_star] = ACTIONS(5167), - [sym__emphasis_open_underscore] = ACTIONS(5167), - [sym__strikeout_open] = ACTIONS(5167), - [sym__latex_span_start] = ACTIONS(5167), - [sym__single_quote_open] = ACTIONS(5167), - [sym__double_quote_open] = ACTIONS(5167), - [sym__superscript_open] = ACTIONS(5167), - [sym__subscript_open] = ACTIONS(5167), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5167), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5167), - [sym__cite_author_in_text] = ACTIONS(5167), - [sym__cite_suppress_author] = ACTIONS(5167), - [sym__shortcode_open_escaped] = ACTIONS(5167), - [sym__shortcode_open] = ACTIONS(5167), - [sym__unclosed_span] = ACTIONS(5167), - [sym__strong_emphasis_open_star] = ACTIONS(5167), - [sym__strong_emphasis_open_underscore] = ACTIONS(5167), + [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_insert_token2] = 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(4709), + [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(1283)] = { - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_RBRACK] = ACTIONS(4673), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__backslash_escape] = ACTIONS(4495), + [sym_entity_reference] = ACTIONS(4495), + [sym_numeric_character_reference] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_QMARK] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_BSLASH] = ACTIONS(4497), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_BQUOTE] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [sym__newline_token] = ACTIONS(4495), + [aux_sym_insert_token1] = ACTIONS(4495), + [aux_sym_delete_token1] = ACTIONS(4495), + [aux_sym_highlight_token1] = ACTIONS(4495), + [aux_sym_edit_comment_token1] = ACTIONS(4495), + [anon_sym_CARET_LBRACK] = ACTIONS(4495), + [anon_sym_LBRACK_CARET] = ACTIONS(4495), + [sym_uri_autolink] = ACTIONS(4495), + [sym_email_autolink] = ACTIONS(4495), + [sym__whitespace_ge_2] = ACTIONS(4495), + [aux_sym__whitespace_token1] = ACTIONS(4497), + [sym__word_no_digit] = ACTIONS(4495), + [sym__digits] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4495), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(4495), + [sym__emphasis_open_underscore] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4495), + [sym__latex_span_start] = ACTIONS(4495), + [sym__single_quote_open] = ACTIONS(4495), + [sym__double_quote_open] = ACTIONS(4495), + [sym__superscript_open] = ACTIONS(4495), + [sym__superscript_close] = ACTIONS(4495), + [sym__subscript_open] = ACTIONS(4495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4495), + [sym__cite_author_in_text] = ACTIONS(4495), + [sym__cite_suppress_author] = ACTIONS(4495), + [sym__shortcode_open_escaped] = ACTIONS(4495), + [sym__shortcode_open] = ACTIONS(4495), + [sym__unclosed_span] = ACTIONS(4495), + [sym__strong_emphasis_open_star] = ACTIONS(4495), + [sym__strong_emphasis_open_underscore] = ACTIONS(4495), }, [STATE(1284)] = { - [sym__backslash_escape] = ACTIONS(4999), - [sym_entity_reference] = ACTIONS(4999), - [sym_numeric_character_reference] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [sym__newline_token] = ACTIONS(4999), - [aux_sym_insert_token1] = ACTIONS(4999), - [aux_sym_delete_token1] = ACTIONS(4999), - [aux_sym_highlight_token1] = ACTIONS(4999), - [aux_sym_edit_comment_token1] = ACTIONS(4999), - [anon_sym_CARET_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_CARET] = ACTIONS(4999), - [sym_uri_autolink] = ACTIONS(4999), - [sym_email_autolink] = ACTIONS(4999), - [sym__whitespace_ge_2] = ACTIONS(4999), - [aux_sym__whitespace_token1] = ACTIONS(5001), - [sym__word_no_digit] = ACTIONS(4999), - [sym__digits] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4999), - [sym__code_span_start] = ACTIONS(4999), - [sym__emphasis_open_star] = ACTIONS(4999), - [sym__emphasis_open_underscore] = ACTIONS(4999), - [sym__emphasis_close_star] = ACTIONS(4999), - [sym__strikeout_open] = ACTIONS(4999), - [sym__latex_span_start] = ACTIONS(4999), - [sym__single_quote_open] = ACTIONS(4999), - [sym__double_quote_open] = ACTIONS(4999), - [sym__superscript_open] = ACTIONS(4999), - [sym__subscript_open] = ACTIONS(4999), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4999), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4999), - [sym__cite_author_in_text] = ACTIONS(4999), - [sym__cite_suppress_author] = ACTIONS(4999), - [sym__shortcode_open_escaped] = ACTIONS(4999), - [sym__shortcode_open] = ACTIONS(4999), - [sym__unclosed_span] = ACTIONS(4999), - [sym__strong_emphasis_open_star] = ACTIONS(4999), - [sym__strong_emphasis_open_underscore] = ACTIONS(4999), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_insert_token2] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4369), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(1285)] = { - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_RBRACK] = ACTIONS(4677), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [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(1286)] = { - [sym__backslash_escape] = ACTIONS(5003), - [sym_entity_reference] = ACTIONS(5003), - [sym_numeric_character_reference] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym__newline_token] = ACTIONS(5003), - [aux_sym_insert_token1] = ACTIONS(5003), - [aux_sym_delete_token1] = ACTIONS(5003), - [aux_sym_highlight_token1] = ACTIONS(5003), - [aux_sym_edit_comment_token1] = ACTIONS(5003), - [anon_sym_CARET_LBRACK] = ACTIONS(5003), - [anon_sym_LBRACK_CARET] = ACTIONS(5003), - [sym_uri_autolink] = ACTIONS(5003), - [sym_email_autolink] = ACTIONS(5003), - [sym__whitespace_ge_2] = ACTIONS(5003), - [aux_sym__whitespace_token1] = ACTIONS(5005), - [sym__word_no_digit] = ACTIONS(5003), - [sym__digits] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [sym__code_span_start] = ACTIONS(5003), - [sym__emphasis_open_star] = ACTIONS(5003), - [sym__emphasis_open_underscore] = ACTIONS(5003), - [sym__emphasis_close_star] = ACTIONS(5003), - [sym__strikeout_open] = ACTIONS(5003), - [sym__latex_span_start] = ACTIONS(5003), - [sym__single_quote_open] = ACTIONS(5003), - [sym__double_quote_open] = ACTIONS(5003), - [sym__superscript_open] = ACTIONS(5003), - [sym__subscript_open] = ACTIONS(5003), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5003), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5003), - [sym__cite_author_in_text] = ACTIONS(5003), - [sym__cite_suppress_author] = ACTIONS(5003), - [sym__shortcode_open_escaped] = ACTIONS(5003), - [sym__shortcode_open] = ACTIONS(5003), - [sym__unclosed_span] = ACTIONS(5003), - [sym__strong_emphasis_open_star] = ACTIONS(5003), - [sym__strong_emphasis_open_underscore] = ACTIONS(5003), + [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_insert_token2] = 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(4713), + [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(1287)] = { - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_RBRACK] = ACTIONS(4681), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [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(1288)] = { - [ts_builtin_sym_end] = ACTIONS(4939), - [sym__backslash_escape] = ACTIONS(4939), - [sym_entity_reference] = ACTIONS(4939), - [sym_numeric_character_reference] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_POUND] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [sym__newline_token] = ACTIONS(4939), - [aux_sym_insert_token1] = ACTIONS(4939), - [aux_sym_delete_token1] = ACTIONS(4939), - [aux_sym_highlight_token1] = ACTIONS(4939), - [aux_sym_edit_comment_token1] = ACTIONS(4939), - [anon_sym_CARET_LBRACK] = ACTIONS(4939), - [anon_sym_LBRACK_CARET] = ACTIONS(4939), - [sym_uri_autolink] = ACTIONS(4939), - [sym_email_autolink] = ACTIONS(4939), - [sym__whitespace_ge_2] = ACTIONS(4939), - [aux_sym__whitespace_token1] = ACTIONS(4941), - [sym__word_no_digit] = ACTIONS(4939), - [sym__digits] = ACTIONS(4939), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4939), - [sym__code_span_start] = ACTIONS(4939), - [sym__emphasis_open_star] = ACTIONS(4939), - [sym__emphasis_open_underscore] = ACTIONS(4939), - [sym__strikeout_open] = ACTIONS(4939), - [sym__latex_span_start] = ACTIONS(4939), - [sym__single_quote_open] = ACTIONS(4939), - [sym__double_quote_open] = ACTIONS(4939), - [sym__superscript_open] = ACTIONS(4939), - [sym__subscript_open] = ACTIONS(4939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4939), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4939), - [sym__cite_author_in_text] = ACTIONS(4939), - [sym__cite_suppress_author] = ACTIONS(4939), - [sym__shortcode_open_escaped] = ACTIONS(4939), - [sym__shortcode_open] = ACTIONS(4939), - [sym__unclosed_span] = ACTIONS(4939), - [sym__strong_emphasis_open_star] = ACTIONS(4939), - [sym__strong_emphasis_open_underscore] = ACTIONS(4939), + [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(1289)] = { - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_RBRACK] = ACTIONS(4625), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [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_insert_token2] = 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(4717), + [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(1290)] = { - [sym__backslash_escape] = ACTIONS(5171), - [sym_entity_reference] = ACTIONS(5171), - [sym_numeric_character_reference] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [anon_sym_POUND] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_QMARK] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [sym__newline_token] = ACTIONS(5171), - [aux_sym_insert_token1] = ACTIONS(5171), - [aux_sym_delete_token1] = ACTIONS(5171), - [aux_sym_highlight_token1] = ACTIONS(5171), - [aux_sym_edit_comment_token1] = ACTIONS(5171), - [anon_sym_CARET_LBRACK] = ACTIONS(5171), - [anon_sym_LBRACK_CARET] = ACTIONS(5171), - [sym_uri_autolink] = ACTIONS(5171), - [sym_email_autolink] = ACTIONS(5171), - [sym__whitespace_ge_2] = ACTIONS(5171), - [aux_sym__whitespace_token1] = ACTIONS(5173), - [sym__word_no_digit] = ACTIONS(5171), - [sym__digits] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5171), - [sym__code_span_start] = ACTIONS(5171), - [sym__emphasis_open_star] = ACTIONS(5171), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym__strikeout_open] = ACTIONS(5171), - [sym__latex_span_start] = ACTIONS(5171), - [sym__single_quote_open] = ACTIONS(5171), - [sym__double_quote_open] = ACTIONS(5171), - [sym__superscript_open] = ACTIONS(5171), - [sym__subscript_open] = ACTIONS(5171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5171), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5171), - [sym__cite_author_in_text] = ACTIONS(5171), - [sym__cite_suppress_author] = ACTIONS(5171), - [sym__shortcode_open_escaped] = ACTIONS(5171), - [sym__shortcode_open] = ACTIONS(5171), - [sym__unclosed_span] = ACTIONS(5171), - [sym__strong_emphasis_open_star] = ACTIONS(5171), - [sym__strong_emphasis_open_underscore] = ACTIONS(5171), + [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_insert_token2] = 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(4721), + [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(1291)] = { - [sym__backslash_escape] = ACTIONS(5175), - [sym_entity_reference] = ACTIONS(5175), - [sym_numeric_character_reference] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_QMARK] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [sym__newline_token] = ACTIONS(5175), - [aux_sym_insert_token1] = ACTIONS(5175), - [aux_sym_delete_token1] = ACTIONS(5175), - [aux_sym_highlight_token1] = ACTIONS(5175), - [aux_sym_edit_comment_token1] = ACTIONS(5175), - [anon_sym_CARET_LBRACK] = ACTIONS(5175), - [anon_sym_LBRACK_CARET] = ACTIONS(5175), - [sym_uri_autolink] = ACTIONS(5175), - [sym_email_autolink] = ACTIONS(5175), - [sym__whitespace_ge_2] = ACTIONS(5175), - [aux_sym__whitespace_token1] = ACTIONS(5177), - [sym__word_no_digit] = ACTIONS(5175), - [sym__digits] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5177), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5175), - [sym__code_span_start] = ACTIONS(5175), - [sym__emphasis_open_star] = ACTIONS(5175), - [sym__emphasis_open_underscore] = ACTIONS(5175), - [sym__strikeout_open] = ACTIONS(5175), - [sym__latex_span_start] = ACTIONS(5175), - [sym__single_quote_open] = ACTIONS(5175), - [sym__double_quote_open] = ACTIONS(5175), - [sym__superscript_open] = ACTIONS(5175), - [sym__subscript_open] = ACTIONS(5175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5175), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5175), - [sym__cite_author_in_text] = ACTIONS(5175), - [sym__cite_suppress_author] = ACTIONS(5175), - [sym__shortcode_open_escaped] = ACTIONS(5175), - [sym__shortcode_open] = ACTIONS(5175), - [sym__unclosed_span] = ACTIONS(5175), - [sym__strong_emphasis_open_star] = ACTIONS(5175), - [sym__strong_emphasis_open_underscore] = ACTIONS(5175), + [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_insert_token2] = 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(4725), + [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(1292)] = { - [sym__backslash_escape] = ACTIONS(4939), - [sym_entity_reference] = ACTIONS(4939), - [sym_numeric_character_reference] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_POUND] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4939), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [sym__newline_token] = ACTIONS(4939), - [aux_sym_insert_token1] = ACTIONS(4939), - [aux_sym_delete_token1] = ACTIONS(4939), - [aux_sym_highlight_token1] = ACTIONS(4939), - [aux_sym_edit_comment_token1] = ACTIONS(4939), - [anon_sym_CARET_LBRACK] = ACTIONS(4939), - [anon_sym_LBRACK_CARET] = ACTIONS(4939), - [sym_uri_autolink] = ACTIONS(4939), - [sym_email_autolink] = ACTIONS(4939), - [sym__whitespace_ge_2] = ACTIONS(4939), - [aux_sym__whitespace_token1] = ACTIONS(4941), - [sym__word_no_digit] = ACTIONS(4939), - [sym__digits] = ACTIONS(4939), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4939), - [sym__code_span_start] = ACTIONS(4939), - [sym__emphasis_open_star] = ACTIONS(4939), - [sym__emphasis_open_underscore] = ACTIONS(4939), - [sym__strikeout_open] = ACTIONS(4939), - [sym__latex_span_start] = ACTIONS(4939), - [sym__single_quote_open] = ACTIONS(4939), - [sym__double_quote_open] = ACTIONS(4939), - [sym__superscript_open] = ACTIONS(4939), - [sym__subscript_open] = ACTIONS(4939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4939), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4939), - [sym__cite_author_in_text] = ACTIONS(4939), - [sym__cite_suppress_author] = ACTIONS(4939), - [sym__shortcode_open_escaped] = ACTIONS(4939), - [sym__shortcode_open] = ACTIONS(4939), - [sym__unclosed_span] = ACTIONS(4939), - [sym__strong_emphasis_open_star] = ACTIONS(4939), - [sym__strong_emphasis_open_underscore] = ACTIONS(4939), + [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_insert_token2] = 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(4729), + [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(1293)] = { - [sym__backslash_escape] = ACTIONS(5011), - [sym_entity_reference] = ACTIONS(5011), - [sym_numeric_character_reference] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_AMP] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym_BQUOTE] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym__newline_token] = ACTIONS(5011), - [aux_sym_insert_token1] = ACTIONS(5011), - [aux_sym_delete_token1] = ACTIONS(5011), - [aux_sym_highlight_token1] = ACTIONS(5011), - [aux_sym_edit_comment_token1] = ACTIONS(5011), - [anon_sym_CARET_LBRACK] = ACTIONS(5011), - [anon_sym_LBRACK_CARET] = ACTIONS(5011), - [sym_uri_autolink] = ACTIONS(5011), - [sym_email_autolink] = ACTIONS(5011), - [sym__whitespace_ge_2] = ACTIONS(5011), - [aux_sym__whitespace_token1] = ACTIONS(5013), - [sym__word_no_digit] = ACTIONS(5011), - [sym__digits] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5011), - [sym__code_span_start] = ACTIONS(5011), - [sym__emphasis_open_star] = ACTIONS(5011), - [sym__emphasis_open_underscore] = ACTIONS(5011), - [sym__emphasis_close_star] = ACTIONS(5011), - [sym__strikeout_open] = ACTIONS(5011), - [sym__latex_span_start] = ACTIONS(5011), - [sym__single_quote_open] = ACTIONS(5011), - [sym__double_quote_open] = ACTIONS(5011), - [sym__superscript_open] = ACTIONS(5011), - [sym__subscript_open] = ACTIONS(5011), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5011), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5011), - [sym__cite_author_in_text] = ACTIONS(5011), - [sym__cite_suppress_author] = ACTIONS(5011), - [sym__shortcode_open_escaped] = ACTIONS(5011), - [sym__shortcode_open] = ACTIONS(5011), - [sym__unclosed_span] = ACTIONS(5011), - [sym__strong_emphasis_open_star] = ACTIONS(5011), - [sym__strong_emphasis_open_underscore] = ACTIONS(5011), + [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_insert_token2] = 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(4733), + [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(1294)] = { - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__emphasis_close_star] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [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__superscript_close] = 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(1295)] = { - [ts_builtin_sym_end] = ACTIONS(4995), - [sym__backslash_escape] = ACTIONS(4995), - [sym_entity_reference] = ACTIONS(4995), - [sym_numeric_character_reference] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym__newline_token] = ACTIONS(4995), - [aux_sym_insert_token1] = ACTIONS(4995), - [aux_sym_delete_token1] = ACTIONS(4995), - [aux_sym_highlight_token1] = ACTIONS(4995), - [aux_sym_edit_comment_token1] = ACTIONS(4995), - [anon_sym_CARET_LBRACK] = ACTIONS(4995), - [anon_sym_LBRACK_CARET] = ACTIONS(4995), - [sym_uri_autolink] = ACTIONS(4995), - [sym_email_autolink] = ACTIONS(4995), - [sym__whitespace_ge_2] = ACTIONS(4995), - [aux_sym__whitespace_token1] = ACTIONS(4997), - [sym__word_no_digit] = ACTIONS(4995), - [sym__digits] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4995), - [sym__code_span_start] = ACTIONS(4995), - [sym__emphasis_open_star] = ACTIONS(4995), - [sym__emphasis_open_underscore] = ACTIONS(4995), - [sym__strikeout_open] = ACTIONS(4995), - [sym__latex_span_start] = ACTIONS(4995), - [sym__single_quote_open] = ACTIONS(4995), - [sym__double_quote_open] = ACTIONS(4995), - [sym__superscript_open] = ACTIONS(4995), - [sym__subscript_open] = ACTIONS(4995), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4995), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4995), - [sym__cite_author_in_text] = ACTIONS(4995), - [sym__cite_suppress_author] = ACTIONS(4995), - [sym__shortcode_open_escaped] = ACTIONS(4995), - [sym__shortcode_open] = ACTIONS(4995), - [sym__unclosed_span] = ACTIONS(4995), - [sym__strong_emphasis_open_star] = ACTIONS(4995), - [sym__strong_emphasis_open_underscore] = ACTIONS(4995), + [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_insert_token2] = 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(4737), + [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(1296)] = { - [sym__backslash_escape] = ACTIONS(5015), - [sym_entity_reference] = ACTIONS(5015), - [sym_numeric_character_reference] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym_BQUOTE] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__newline_token] = ACTIONS(5015), - [aux_sym_insert_token1] = ACTIONS(5015), - [aux_sym_delete_token1] = ACTIONS(5015), - [aux_sym_highlight_token1] = ACTIONS(5015), - [aux_sym_edit_comment_token1] = ACTIONS(5015), - [anon_sym_CARET_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_CARET] = ACTIONS(5015), - [sym_uri_autolink] = ACTIONS(5015), - [sym_email_autolink] = ACTIONS(5015), - [sym__whitespace_ge_2] = ACTIONS(5015), - [aux_sym__whitespace_token1] = ACTIONS(5017), - [sym__word_no_digit] = ACTIONS(5015), - [sym__digits] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5015), - [sym__code_span_start] = ACTIONS(5015), - [sym__emphasis_open_star] = ACTIONS(5015), - [sym__emphasis_open_underscore] = ACTIONS(5015), - [sym__emphasis_close_star] = ACTIONS(5015), - [sym__strikeout_open] = ACTIONS(5015), - [sym__latex_span_start] = ACTIONS(5015), - [sym__single_quote_open] = ACTIONS(5015), - [sym__double_quote_open] = ACTIONS(5015), - [sym__superscript_open] = ACTIONS(5015), - [sym__subscript_open] = ACTIONS(5015), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5015), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5015), - [sym__cite_author_in_text] = ACTIONS(5015), - [sym__cite_suppress_author] = ACTIONS(5015), - [sym__shortcode_open_escaped] = ACTIONS(5015), - [sym__shortcode_open] = ACTIONS(5015), - [sym__unclosed_span] = ACTIONS(5015), - [sym__strong_emphasis_open_star] = ACTIONS(5015), - [sym__strong_emphasis_open_underscore] = ACTIONS(5015), + [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_insert_token2] = 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(4741), + [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(1297)] = { - [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_STAR] = 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_insert_token2] = 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(4749), - [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), + [sym__backslash_escape] = ACTIONS(4499), + [sym_entity_reference] = ACTIONS(4499), + [sym_numeric_character_reference] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4501), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_BSLASH] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_PIPE] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [sym__newline_token] = ACTIONS(4499), + [aux_sym_insert_token1] = ACTIONS(4499), + [aux_sym_insert_token2] = ACTIONS(4499), + [aux_sym_delete_token1] = ACTIONS(4499), + [aux_sym_highlight_token1] = ACTIONS(4499), + [aux_sym_edit_comment_token1] = ACTIONS(4499), + [anon_sym_CARET_LBRACK] = ACTIONS(4499), + [anon_sym_LBRACK_CARET] = ACTIONS(4499), + [sym_uri_autolink] = ACTIONS(4499), + [sym_email_autolink] = ACTIONS(4499), + [sym__whitespace_ge_2] = ACTIONS(4501), + [aux_sym__whitespace_token1] = ACTIONS(4501), + [sym__word_no_digit] = ACTIONS(4499), + [sym__digits] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4499), + [sym__code_span_start] = ACTIONS(4499), + [sym__emphasis_open_star] = ACTIONS(4499), + [sym__emphasis_open_underscore] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4499), + [sym__latex_span_start] = ACTIONS(4499), + [sym__single_quote_open] = ACTIONS(4499), + [sym__double_quote_open] = ACTIONS(4499), + [sym__superscript_open] = ACTIONS(4499), + [sym__subscript_open] = ACTIONS(4499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4499), + [sym__cite_author_in_text] = ACTIONS(4499), + [sym__cite_suppress_author] = ACTIONS(4499), + [sym__shortcode_open_escaped] = ACTIONS(4499), + [sym__shortcode_open] = ACTIONS(4499), + [sym__unclosed_span] = ACTIONS(4499), + [sym__strong_emphasis_open_star] = ACTIONS(4499), + [sym__strong_emphasis_open_underscore] = ACTIONS(4499), }, [STATE(1298)] = { - [ts_builtin_sym_end] = ACTIONS(4999), - [sym__backslash_escape] = ACTIONS(4999), - [sym_entity_reference] = ACTIONS(4999), - [sym_numeric_character_reference] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [sym__newline_token] = ACTIONS(4999), - [aux_sym_insert_token1] = ACTIONS(4999), - [aux_sym_delete_token1] = ACTIONS(4999), - [aux_sym_highlight_token1] = ACTIONS(4999), - [aux_sym_edit_comment_token1] = ACTIONS(4999), - [anon_sym_CARET_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_CARET] = ACTIONS(4999), - [sym_uri_autolink] = ACTIONS(4999), - [sym_email_autolink] = ACTIONS(4999), - [sym__whitespace_ge_2] = ACTIONS(4999), - [aux_sym__whitespace_token1] = ACTIONS(5001), - [sym__word_no_digit] = ACTIONS(4999), - [sym__digits] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4999), - [sym__code_span_start] = ACTIONS(4999), - [sym__emphasis_open_star] = ACTIONS(4999), - [sym__emphasis_open_underscore] = ACTIONS(4999), - [sym__strikeout_open] = ACTIONS(4999), - [sym__latex_span_start] = ACTIONS(4999), - [sym__single_quote_open] = ACTIONS(4999), - [sym__double_quote_open] = ACTIONS(4999), - [sym__superscript_open] = ACTIONS(4999), - [sym__subscript_open] = ACTIONS(4999), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4999), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4999), - [sym__cite_author_in_text] = ACTIONS(4999), - [sym__cite_suppress_author] = ACTIONS(4999), - [sym__shortcode_open_escaped] = ACTIONS(4999), - [sym__shortcode_open] = ACTIONS(4999), - [sym__unclosed_span] = ACTIONS(4999), - [sym__strong_emphasis_open_star] = ACTIONS(4999), - [sym__strong_emphasis_open_underscore] = ACTIONS(4999), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_insert_token2] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4237), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(1299)] = { - [sym__backslash_escape] = ACTIONS(5019), - [sym_entity_reference] = ACTIONS(5019), - [sym_numeric_character_reference] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_DQUOTE] = ACTIONS(5019), - [anon_sym_POUND] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym__newline_token] = ACTIONS(5019), - [aux_sym_insert_token1] = ACTIONS(5019), - [aux_sym_delete_token1] = ACTIONS(5019), - [aux_sym_highlight_token1] = ACTIONS(5019), - [aux_sym_edit_comment_token1] = ACTIONS(5019), - [anon_sym_CARET_LBRACK] = ACTIONS(5019), - [anon_sym_LBRACK_CARET] = ACTIONS(5019), - [sym_uri_autolink] = ACTIONS(5019), - [sym_email_autolink] = ACTIONS(5019), - [sym__whitespace_ge_2] = ACTIONS(5019), - [aux_sym__whitespace_token1] = ACTIONS(5021), - [sym__word_no_digit] = ACTIONS(5019), - [sym__digits] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [sym__code_span_start] = ACTIONS(5019), - [sym__emphasis_open_star] = ACTIONS(5019), - [sym__emphasis_open_underscore] = ACTIONS(5019), - [sym__emphasis_close_star] = ACTIONS(5019), - [sym__strikeout_open] = ACTIONS(5019), - [sym__latex_span_start] = ACTIONS(5019), - [sym__single_quote_open] = ACTIONS(5019), - [sym__double_quote_open] = ACTIONS(5019), - [sym__superscript_open] = ACTIONS(5019), - [sym__subscript_open] = ACTIONS(5019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5019), - [sym__cite_author_in_text] = ACTIONS(5019), - [sym__cite_suppress_author] = ACTIONS(5019), - [sym__shortcode_open_escaped] = ACTIONS(5019), - [sym__shortcode_open] = ACTIONS(5019), - [sym__unclosed_span] = ACTIONS(5019), - [sym__strong_emphasis_open_star] = ACTIONS(5019), - [sym__strong_emphasis_open_underscore] = ACTIONS(5019), + [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(1300)] = { - [sym__backslash_escape] = ACTIONS(4943), - [sym_entity_reference] = ACTIONS(4943), - [sym_numeric_character_reference] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [sym__newline_token] = ACTIONS(4943), - [aux_sym_insert_token1] = ACTIONS(4943), - [aux_sym_insert_token2] = ACTIONS(4943), - [aux_sym_delete_token1] = ACTIONS(4943), - [aux_sym_highlight_token1] = ACTIONS(4943), - [aux_sym_edit_comment_token1] = ACTIONS(4943), - [anon_sym_CARET_LBRACK] = ACTIONS(4943), - [anon_sym_LBRACK_CARET] = ACTIONS(4943), - [sym_uri_autolink] = ACTIONS(4943), - [sym_email_autolink] = ACTIONS(4943), - [sym__whitespace_ge_2] = ACTIONS(4945), - [aux_sym__whitespace_token1] = ACTIONS(4945), - [sym__word_no_digit] = ACTIONS(4943), - [sym__digits] = ACTIONS(4943), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4943), - [sym__code_span_start] = ACTIONS(4943), - [sym__emphasis_open_star] = ACTIONS(4943), - [sym__emphasis_open_underscore] = ACTIONS(4943), - [sym__strikeout_open] = ACTIONS(4943), - [sym__latex_span_start] = ACTIONS(4943), - [sym__single_quote_open] = ACTIONS(4943), - [sym__double_quote_open] = ACTIONS(4943), - [sym__superscript_open] = ACTIONS(4943), - [sym__subscript_open] = ACTIONS(4943), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4943), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4943), - [sym__cite_author_in_text] = ACTIONS(4943), - [sym__cite_suppress_author] = ACTIONS(4943), - [sym__shortcode_open_escaped] = ACTIONS(4943), - [sym__shortcode_open] = ACTIONS(4943), - [sym__unclosed_span] = ACTIONS(4943), - [sym__strong_emphasis_open_star] = ACTIONS(4943), - [sym__strong_emphasis_open_underscore] = ACTIONS(4943), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_insert_token2] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4241), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(1301)] = { - [sym__backslash_escape] = ACTIONS(4947), - [sym_entity_reference] = ACTIONS(4947), - [sym_numeric_character_reference] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_DQUOTE] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [sym__newline_token] = ACTIONS(4947), - [aux_sym_insert_token1] = ACTIONS(4947), - [aux_sym_insert_token2] = ACTIONS(4947), - [aux_sym_delete_token1] = ACTIONS(4947), - [aux_sym_highlight_token1] = ACTIONS(4947), - [aux_sym_edit_comment_token1] = ACTIONS(4947), - [anon_sym_CARET_LBRACK] = ACTIONS(4947), - [anon_sym_LBRACK_CARET] = ACTIONS(4947), - [sym_uri_autolink] = ACTIONS(4947), - [sym_email_autolink] = ACTIONS(4947), - [sym__whitespace_ge_2] = ACTIONS(4949), - [aux_sym__whitespace_token1] = ACTIONS(4949), - [sym__word_no_digit] = ACTIONS(4947), - [sym__digits] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4947), - [sym__code_span_start] = ACTIONS(4947), - [sym__emphasis_open_star] = ACTIONS(4947), - [sym__emphasis_open_underscore] = ACTIONS(4947), - [sym__strikeout_open] = ACTIONS(4947), - [sym__latex_span_start] = ACTIONS(4947), - [sym__single_quote_open] = ACTIONS(4947), - [sym__double_quote_open] = ACTIONS(4947), - [sym__superscript_open] = ACTIONS(4947), - [sym__subscript_open] = ACTIONS(4947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4947), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4947), - [sym__cite_author_in_text] = ACTIONS(4947), - [sym__cite_suppress_author] = ACTIONS(4947), - [sym__shortcode_open_escaped] = ACTIONS(4947), - [sym__shortcode_open] = ACTIONS(4947), - [sym__unclosed_span] = ACTIONS(4947), - [sym__strong_emphasis_open_star] = ACTIONS(4947), - [sym__strong_emphasis_open_underscore] = ACTIONS(4947), + [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(1302)] = { - [sym__backslash_escape] = ACTIONS(5023), - [sym_entity_reference] = ACTIONS(5023), - [sym_numeric_character_reference] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [sym__newline_token] = ACTIONS(5023), - [aux_sym_insert_token1] = ACTIONS(5023), - [aux_sym_delete_token1] = ACTIONS(5023), - [aux_sym_highlight_token1] = ACTIONS(5023), - [aux_sym_edit_comment_token1] = ACTIONS(5023), - [anon_sym_CARET_LBRACK] = ACTIONS(5023), - [anon_sym_LBRACK_CARET] = ACTIONS(5023), - [sym_uri_autolink] = ACTIONS(5023), - [sym_email_autolink] = ACTIONS(5023), - [sym__whitespace_ge_2] = ACTIONS(5023), - [aux_sym__whitespace_token1] = ACTIONS(5025), - [sym__word_no_digit] = ACTIONS(5023), - [sym__digits] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5023), - [sym__code_span_start] = ACTIONS(5023), - [sym__emphasis_open_star] = ACTIONS(5023), - [sym__emphasis_open_underscore] = ACTIONS(5023), - [sym__emphasis_close_star] = ACTIONS(5023), - [sym__strikeout_open] = ACTIONS(5023), - [sym__latex_span_start] = ACTIONS(5023), - [sym__single_quote_open] = ACTIONS(5023), - [sym__double_quote_open] = ACTIONS(5023), - [sym__superscript_open] = ACTIONS(5023), - [sym__subscript_open] = ACTIONS(5023), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5023), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5023), - [sym__cite_author_in_text] = ACTIONS(5023), - [sym__cite_suppress_author] = ACTIONS(5023), - [sym__shortcode_open_escaped] = ACTIONS(5023), - [sym__shortcode_open] = ACTIONS(5023), - [sym__unclosed_span] = ACTIONS(5023), - [sym__strong_emphasis_open_star] = ACTIONS(5023), - [sym__strong_emphasis_open_underscore] = ACTIONS(5023), + [sym__backslash_escape] = ACTIONS(4507), + [sym_entity_reference] = ACTIONS(4507), + [sym_numeric_character_reference] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(4507), + [anon_sym_DOLLAR] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_QMARK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_BSLASH] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [sym__newline_token] = ACTIONS(4507), + [aux_sym_insert_token1] = ACTIONS(4507), + [aux_sym_insert_token2] = ACTIONS(4507), + [aux_sym_delete_token1] = ACTIONS(4507), + [aux_sym_highlight_token1] = ACTIONS(4507), + [aux_sym_edit_comment_token1] = ACTIONS(4507), + [anon_sym_CARET_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK_CARET] = ACTIONS(4507), + [sym_uri_autolink] = ACTIONS(4507), + [sym_email_autolink] = ACTIONS(4507), + [sym__whitespace_ge_2] = ACTIONS(4509), + [aux_sym__whitespace_token1] = ACTIONS(4509), + [sym__word_no_digit] = ACTIONS(4507), + [sym__digits] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4507), + [sym__code_span_start] = ACTIONS(4507), + [sym__emphasis_open_star] = ACTIONS(4507), + [sym__emphasis_open_underscore] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4507), + [sym__latex_span_start] = ACTIONS(4507), + [sym__single_quote_open] = ACTIONS(4507), + [sym__double_quote_open] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4507), + [sym__subscript_open] = ACTIONS(4507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4507), + [sym__cite_author_in_text] = ACTIONS(4507), + [sym__cite_suppress_author] = ACTIONS(4507), + [sym__shortcode_open_escaped] = ACTIONS(4507), + [sym__shortcode_open] = ACTIONS(4507), + [sym__unclosed_span] = ACTIONS(4507), + [sym__strong_emphasis_open_star] = ACTIONS(4507), + [sym__strong_emphasis_open_underscore] = ACTIONS(4507), }, [STATE(1303)] = { - [sym__backslash_escape] = ACTIONS(4951), - [sym_entity_reference] = ACTIONS(4951), - [sym_numeric_character_reference] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [sym__newline_token] = ACTIONS(4951), - [aux_sym_insert_token1] = ACTIONS(4951), - [aux_sym_insert_token2] = ACTIONS(4951), - [aux_sym_delete_token1] = ACTIONS(4951), - [aux_sym_highlight_token1] = ACTIONS(4951), - [aux_sym_edit_comment_token1] = ACTIONS(4951), - [anon_sym_CARET_LBRACK] = ACTIONS(4951), - [anon_sym_LBRACK_CARET] = ACTIONS(4951), - [sym_uri_autolink] = ACTIONS(4951), - [sym_email_autolink] = ACTIONS(4951), - [sym__whitespace_ge_2] = ACTIONS(4953), - [aux_sym__whitespace_token1] = ACTIONS(4953), - [sym__word_no_digit] = ACTIONS(4951), - [sym__digits] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4951), - [sym__code_span_start] = ACTIONS(4951), - [sym__emphasis_open_star] = ACTIONS(4951), - [sym__emphasis_open_underscore] = ACTIONS(4951), - [sym__strikeout_open] = ACTIONS(4951), - [sym__latex_span_start] = ACTIONS(4951), - [sym__single_quote_open] = ACTIONS(4951), - [sym__double_quote_open] = ACTIONS(4951), - [sym__superscript_open] = ACTIONS(4951), - [sym__subscript_open] = ACTIONS(4951), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4951), - [sym__cite_author_in_text] = ACTIONS(4951), - [sym__cite_suppress_author] = ACTIONS(4951), - [sym__shortcode_open_escaped] = ACTIONS(4951), - [sym__shortcode_open] = ACTIONS(4951), - [sym__unclosed_span] = ACTIONS(4951), - [sym__strong_emphasis_open_star] = ACTIONS(4951), - [sym__strong_emphasis_open_underscore] = ACTIONS(4951), + [sym__backslash_escape] = ACTIONS(4511), + [sym_entity_reference] = ACTIONS(4511), + [sym_numeric_character_reference] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4511), + [anon_sym_POUND] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_COMMA] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_QMARK] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_BQUOTE] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(4511), + [sym__newline_token] = ACTIONS(4511), + [aux_sym_insert_token1] = ACTIONS(4511), + [aux_sym_insert_token2] = ACTIONS(4511), + [aux_sym_delete_token1] = ACTIONS(4511), + [aux_sym_highlight_token1] = ACTIONS(4511), + [aux_sym_edit_comment_token1] = ACTIONS(4511), + [anon_sym_CARET_LBRACK] = ACTIONS(4511), + [anon_sym_LBRACK_CARET] = ACTIONS(4511), + [sym_uri_autolink] = ACTIONS(4511), + [sym_email_autolink] = ACTIONS(4511), + [sym__whitespace_ge_2] = ACTIONS(4513), + [aux_sym__whitespace_token1] = ACTIONS(4513), + [sym__word_no_digit] = ACTIONS(4511), + [sym__digits] = ACTIONS(4511), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), + [sym__code_span_start] = ACTIONS(4511), + [sym__emphasis_open_star] = ACTIONS(4511), + [sym__emphasis_open_underscore] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4511), + [sym__latex_span_start] = ACTIONS(4511), + [sym__single_quote_open] = ACTIONS(4511), + [sym__double_quote_open] = ACTIONS(4511), + [sym__superscript_open] = ACTIONS(4511), + [sym__subscript_open] = ACTIONS(4511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), + [sym__cite_author_in_text] = ACTIONS(4511), + [sym__cite_suppress_author] = ACTIONS(4511), + [sym__shortcode_open_escaped] = ACTIONS(4511), + [sym__shortcode_open] = ACTIONS(4511), + [sym__unclosed_span] = ACTIONS(4511), + [sym__strong_emphasis_open_star] = ACTIONS(4511), + [sym__strong_emphasis_open_underscore] = ACTIONS(4511), }, [STATE(1304)] = { - [sym__backslash_escape] = ACTIONS(4955), - [sym_entity_reference] = ACTIONS(4955), - [sym_numeric_character_reference] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_DQUOTE] = ACTIONS(4955), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4957), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [sym__newline_token] = ACTIONS(4955), - [aux_sym_insert_token1] = ACTIONS(4955), - [aux_sym_insert_token2] = ACTIONS(4955), - [aux_sym_delete_token1] = ACTIONS(4955), - [aux_sym_highlight_token1] = ACTIONS(4955), - [aux_sym_edit_comment_token1] = ACTIONS(4955), - [anon_sym_CARET_LBRACK] = ACTIONS(4955), - [anon_sym_LBRACK_CARET] = ACTIONS(4955), - [sym_uri_autolink] = ACTIONS(4955), - [sym_email_autolink] = ACTIONS(4955), - [sym__whitespace_ge_2] = ACTIONS(4957), - [aux_sym__whitespace_token1] = ACTIONS(4957), - [sym__word_no_digit] = ACTIONS(4955), - [sym__digits] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4955), - [sym__code_span_start] = ACTIONS(4955), - [sym__emphasis_open_star] = ACTIONS(4955), - [sym__emphasis_open_underscore] = ACTIONS(4955), - [sym__strikeout_open] = ACTIONS(4955), - [sym__latex_span_start] = ACTIONS(4955), - [sym__single_quote_open] = ACTIONS(4955), - [sym__double_quote_open] = ACTIONS(4955), - [sym__superscript_open] = ACTIONS(4955), - [sym__subscript_open] = ACTIONS(4955), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4955), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4955), - [sym__cite_author_in_text] = ACTIONS(4955), - [sym__cite_suppress_author] = ACTIONS(4955), - [sym__shortcode_open_escaped] = ACTIONS(4955), - [sym__shortcode_open] = ACTIONS(4955), - [sym__unclosed_span] = ACTIONS(4955), - [sym__strong_emphasis_open_star] = ACTIONS(4955), - [sym__strong_emphasis_open_underscore] = ACTIONS(4955), + [sym__backslash_escape] = ACTIONS(4515), + [sym_entity_reference] = ACTIONS(4515), + [sym_numeric_character_reference] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4515), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_BSLASH] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_RPAREN] = ACTIONS(4515), + [sym__newline_token] = ACTIONS(4515), + [aux_sym_insert_token1] = ACTIONS(4515), + [aux_sym_insert_token2] = ACTIONS(4515), + [aux_sym_delete_token1] = ACTIONS(4515), + [aux_sym_highlight_token1] = ACTIONS(4515), + [aux_sym_edit_comment_token1] = ACTIONS(4515), + [anon_sym_CARET_LBRACK] = ACTIONS(4515), + [anon_sym_LBRACK_CARET] = ACTIONS(4515), + [sym_uri_autolink] = ACTIONS(4515), + [sym_email_autolink] = ACTIONS(4515), + [sym__whitespace_ge_2] = ACTIONS(4517), + [aux_sym__whitespace_token1] = ACTIONS(4517), + [sym__word_no_digit] = ACTIONS(4515), + [sym__digits] = ACTIONS(4515), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4515), + [sym__code_span_start] = ACTIONS(4515), + [sym__emphasis_open_star] = ACTIONS(4515), + [sym__emphasis_open_underscore] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4515), + [sym__latex_span_start] = ACTIONS(4515), + [sym__single_quote_open] = ACTIONS(4515), + [sym__double_quote_open] = ACTIONS(4515), + [sym__superscript_open] = ACTIONS(4515), + [sym__subscript_open] = ACTIONS(4515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4515), + [sym__cite_author_in_text] = ACTIONS(4515), + [sym__cite_suppress_author] = ACTIONS(4515), + [sym__shortcode_open_escaped] = ACTIONS(4515), + [sym__shortcode_open] = ACTIONS(4515), + [sym__unclosed_span] = ACTIONS(4515), + [sym__strong_emphasis_open_star] = ACTIONS(4515), + [sym__strong_emphasis_open_underscore] = ACTIONS(4515), }, [STATE(1305)] = { - [sym__backslash_escape] = ACTIONS(4959), - [sym_entity_reference] = ACTIONS(4959), - [sym_numeric_character_reference] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_DQUOTE] = ACTIONS(4959), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4961), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_TILDE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4959), - [sym__newline_token] = ACTIONS(4959), - [aux_sym_insert_token1] = ACTIONS(4959), - [aux_sym_insert_token2] = ACTIONS(4959), - [aux_sym_delete_token1] = ACTIONS(4959), - [aux_sym_highlight_token1] = ACTIONS(4959), - [aux_sym_edit_comment_token1] = ACTIONS(4959), - [anon_sym_CARET_LBRACK] = ACTIONS(4959), - [anon_sym_LBRACK_CARET] = ACTIONS(4959), - [sym_uri_autolink] = ACTIONS(4959), - [sym_email_autolink] = ACTIONS(4959), - [sym__whitespace_ge_2] = ACTIONS(4961), - [aux_sym__whitespace_token1] = ACTIONS(4961), - [sym__word_no_digit] = ACTIONS(4959), - [sym__digits] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4959), - [sym__code_span_start] = ACTIONS(4959), - [sym__emphasis_open_star] = ACTIONS(4959), - [sym__emphasis_open_underscore] = ACTIONS(4959), - [sym__strikeout_open] = ACTIONS(4959), - [sym__latex_span_start] = ACTIONS(4959), - [sym__single_quote_open] = ACTIONS(4959), - [sym__double_quote_open] = ACTIONS(4959), - [sym__superscript_open] = ACTIONS(4959), - [sym__subscript_open] = ACTIONS(4959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4959), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4959), - [sym__cite_author_in_text] = ACTIONS(4959), - [sym__cite_suppress_author] = ACTIONS(4959), - [sym__shortcode_open_escaped] = ACTIONS(4959), - [sym__shortcode_open] = ACTIONS(4959), - [sym__unclosed_span] = ACTIONS(4959), - [sym__strong_emphasis_open_star] = ACTIONS(4959), - [sym__strong_emphasis_open_underscore] = ACTIONS(4959), + [sym__backslash_escape] = ACTIONS(4519), + [sym_entity_reference] = ACTIONS(4519), + [sym_numeric_character_reference] = ACTIONS(4519), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4519), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_BSLASH] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_BQUOTE] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [sym__newline_token] = ACTIONS(4519), + [aux_sym_insert_token1] = ACTIONS(4519), + [aux_sym_insert_token2] = ACTIONS(4519), + [aux_sym_delete_token1] = ACTIONS(4519), + [aux_sym_highlight_token1] = ACTIONS(4519), + [aux_sym_edit_comment_token1] = ACTIONS(4519), + [anon_sym_CARET_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_CARET] = ACTIONS(4519), + [sym_uri_autolink] = ACTIONS(4519), + [sym_email_autolink] = ACTIONS(4519), + [sym__whitespace_ge_2] = ACTIONS(4521), + [aux_sym__whitespace_token1] = ACTIONS(4521), + [sym__word_no_digit] = ACTIONS(4519), + [sym__digits] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [sym__code_span_start] = ACTIONS(4519), + [sym__emphasis_open_star] = ACTIONS(4519), + [sym__emphasis_open_underscore] = ACTIONS(4519), + [sym__strikeout_open] = ACTIONS(4519), + [sym__latex_span_start] = ACTIONS(4519), + [sym__single_quote_open] = ACTIONS(4519), + [sym__double_quote_open] = ACTIONS(4519), + [sym__superscript_open] = ACTIONS(4519), + [sym__subscript_open] = ACTIONS(4519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4519), + [sym__cite_suppress_author] = ACTIONS(4519), + [sym__shortcode_open_escaped] = ACTIONS(4519), + [sym__shortcode_open] = ACTIONS(4519), + [sym__unclosed_span] = ACTIONS(4519), + [sym__strong_emphasis_open_star] = ACTIONS(4519), + [sym__strong_emphasis_open_underscore] = ACTIONS(4519), }, [STATE(1306)] = { - [sym__backslash_escape] = ACTIONS(4963), - [sym_entity_reference] = ACTIONS(4963), - [sym_numeric_character_reference] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_DQUOTE] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4963), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_RPAREN] = ACTIONS(4963), - [sym__newline_token] = ACTIONS(4963), - [aux_sym_insert_token1] = ACTIONS(4963), - [aux_sym_insert_token2] = ACTIONS(4963), - [aux_sym_delete_token1] = ACTIONS(4963), - [aux_sym_highlight_token1] = ACTIONS(4963), - [aux_sym_edit_comment_token1] = ACTIONS(4963), - [anon_sym_CARET_LBRACK] = ACTIONS(4963), - [anon_sym_LBRACK_CARET] = ACTIONS(4963), - [sym_uri_autolink] = ACTIONS(4963), - [sym_email_autolink] = ACTIONS(4963), - [sym__whitespace_ge_2] = ACTIONS(4965), - [aux_sym__whitespace_token1] = ACTIONS(4965), - [sym__word_no_digit] = ACTIONS(4963), - [sym__digits] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4963), - [sym__code_span_start] = ACTIONS(4963), - [sym__emphasis_open_star] = ACTIONS(4963), - [sym__emphasis_open_underscore] = ACTIONS(4963), - [sym__strikeout_open] = ACTIONS(4963), - [sym__latex_span_start] = ACTIONS(4963), - [sym__single_quote_open] = ACTIONS(4963), - [sym__double_quote_open] = ACTIONS(4963), - [sym__superscript_open] = ACTIONS(4963), - [sym__subscript_open] = ACTIONS(4963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4963), - [sym__cite_author_in_text] = ACTIONS(4963), - [sym__cite_suppress_author] = ACTIONS(4963), - [sym__shortcode_open_escaped] = ACTIONS(4963), - [sym__shortcode_open] = ACTIONS(4963), - [sym__unclosed_span] = ACTIONS(4963), - [sym__strong_emphasis_open_star] = ACTIONS(4963), - [sym__strong_emphasis_open_underscore] = ACTIONS(4963), + [sym__backslash_escape] = ACTIONS(4523), + [sym_entity_reference] = ACTIONS(4523), + [sym_numeric_character_reference] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_BSLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [sym__newline_token] = ACTIONS(4523), + [aux_sym_insert_token1] = ACTIONS(4523), + [aux_sym_insert_token2] = ACTIONS(4523), + [aux_sym_delete_token1] = ACTIONS(4523), + [aux_sym_highlight_token1] = ACTIONS(4523), + [aux_sym_edit_comment_token1] = ACTIONS(4523), + [anon_sym_CARET_LBRACK] = ACTIONS(4523), + [anon_sym_LBRACK_CARET] = ACTIONS(4523), + [sym_uri_autolink] = ACTIONS(4523), + [sym_email_autolink] = ACTIONS(4523), + [sym__whitespace_ge_2] = ACTIONS(4525), + [aux_sym__whitespace_token1] = ACTIONS(4525), + [sym__word_no_digit] = ACTIONS(4523), + [sym__digits] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4523), + [sym__code_span_start] = ACTIONS(4523), + [sym__emphasis_open_star] = ACTIONS(4523), + [sym__emphasis_open_underscore] = ACTIONS(4523), + [sym__strikeout_open] = ACTIONS(4523), + [sym__latex_span_start] = ACTIONS(4523), + [sym__single_quote_open] = ACTIONS(4523), + [sym__double_quote_open] = ACTIONS(4523), + [sym__superscript_open] = ACTIONS(4523), + [sym__subscript_open] = ACTIONS(4523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4523), + [sym__cite_author_in_text] = ACTIONS(4523), + [sym__cite_suppress_author] = ACTIONS(4523), + [sym__shortcode_open_escaped] = ACTIONS(4523), + [sym__shortcode_open] = ACTIONS(4523), + [sym__unclosed_span] = ACTIONS(4523), + [sym__strong_emphasis_open_star] = ACTIONS(4523), + [sym__strong_emphasis_open_underscore] = ACTIONS(4523), }, [STATE(1307)] = { - [sym__backslash_escape] = ACTIONS(4967), - [sym_entity_reference] = ACTIONS(4967), - [sym_numeric_character_reference] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_BQUOTE] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [sym__newline_token] = ACTIONS(4967), - [aux_sym_insert_token1] = ACTIONS(4967), - [aux_sym_insert_token2] = ACTIONS(4967), - [aux_sym_delete_token1] = ACTIONS(4967), - [aux_sym_highlight_token1] = ACTIONS(4967), - [aux_sym_edit_comment_token1] = ACTIONS(4967), - [anon_sym_CARET_LBRACK] = ACTIONS(4967), - [anon_sym_LBRACK_CARET] = ACTIONS(4967), - [sym_uri_autolink] = ACTIONS(4967), - [sym_email_autolink] = ACTIONS(4967), - [sym__whitespace_ge_2] = ACTIONS(4969), - [aux_sym__whitespace_token1] = ACTIONS(4969), - [sym__word_no_digit] = ACTIONS(4967), - [sym__digits] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [sym__code_span_start] = ACTIONS(4967), - [sym__emphasis_open_star] = ACTIONS(4967), - [sym__emphasis_open_underscore] = ACTIONS(4967), - [sym__strikeout_open] = ACTIONS(4967), - [sym__latex_span_start] = ACTIONS(4967), - [sym__single_quote_open] = ACTIONS(4967), - [sym__double_quote_open] = ACTIONS(4967), - [sym__superscript_open] = ACTIONS(4967), - [sym__subscript_open] = ACTIONS(4967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4967), - [sym__cite_author_in_text] = ACTIONS(4967), - [sym__cite_suppress_author] = ACTIONS(4967), - [sym__shortcode_open_escaped] = ACTIONS(4967), - [sym__shortcode_open] = ACTIONS(4967), - [sym__unclosed_span] = ACTIONS(4967), - [sym__strong_emphasis_open_star] = ACTIONS(4967), - [sym__strong_emphasis_open_underscore] = ACTIONS(4967), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_insert_token2] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4245), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(1308)] = { - [sym__backslash_escape] = ACTIONS(4971), - [sym_entity_reference] = ACTIONS(4971), - [sym_numeric_character_reference] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym_BQUOTE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [sym__newline_token] = ACTIONS(4971), - [aux_sym_insert_token1] = ACTIONS(4971), - [aux_sym_insert_token2] = ACTIONS(4971), - [aux_sym_delete_token1] = ACTIONS(4971), - [aux_sym_highlight_token1] = ACTIONS(4971), - [aux_sym_edit_comment_token1] = ACTIONS(4971), - [anon_sym_CARET_LBRACK] = ACTIONS(4971), - [anon_sym_LBRACK_CARET] = ACTIONS(4971), - [sym_uri_autolink] = ACTIONS(4971), - [sym_email_autolink] = ACTIONS(4971), - [sym__whitespace_ge_2] = ACTIONS(4973), - [aux_sym__whitespace_token1] = ACTIONS(4973), - [sym__word_no_digit] = ACTIONS(4971), - [sym__digits] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4971), - [sym__code_span_start] = ACTIONS(4971), - [sym__emphasis_open_star] = ACTIONS(4971), - [sym__emphasis_open_underscore] = ACTIONS(4971), - [sym__strikeout_open] = ACTIONS(4971), - [sym__latex_span_start] = ACTIONS(4971), - [sym__single_quote_open] = ACTIONS(4971), - [sym__double_quote_open] = ACTIONS(4971), - [sym__superscript_open] = ACTIONS(4971), - [sym__subscript_open] = ACTIONS(4971), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4971), - [sym__cite_author_in_text] = ACTIONS(4971), - [sym__cite_suppress_author] = ACTIONS(4971), - [sym__shortcode_open_escaped] = ACTIONS(4971), - [sym__shortcode_open] = ACTIONS(4971), - [sym__unclosed_span] = ACTIONS(4971), - [sym__strong_emphasis_open_star] = ACTIONS(4971), - [sym__strong_emphasis_open_underscore] = ACTIONS(4971), + [sym__backslash_escape] = ACTIONS(4503), + [sym_entity_reference] = ACTIONS(4503), + [sym_numeric_character_reference] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_BQUOTE] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_PIPE] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [sym__newline_token] = ACTIONS(4503), + [aux_sym_insert_token1] = ACTIONS(4503), + [aux_sym_delete_token1] = ACTIONS(4503), + [aux_sym_highlight_token1] = ACTIONS(4503), + [aux_sym_edit_comment_token1] = ACTIONS(4503), + [anon_sym_CARET_LBRACK] = ACTIONS(4503), + [anon_sym_LBRACK_CARET] = ACTIONS(4503), + [sym_uri_autolink] = ACTIONS(4503), + [sym_email_autolink] = ACTIONS(4503), + [sym__whitespace_ge_2] = ACTIONS(4503), + [aux_sym__whitespace_token1] = ACTIONS(4505), + [sym__word_no_digit] = ACTIONS(4503), + [sym__digits] = ACTIONS(4503), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4503), + [sym__code_span_start] = ACTIONS(4503), + [sym__emphasis_open_star] = ACTIONS(4503), + [sym__emphasis_open_underscore] = ACTIONS(4503), + [sym__emphasis_close_star] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4503), + [sym__latex_span_start] = ACTIONS(4503), + [sym__single_quote_open] = ACTIONS(4503), + [sym__double_quote_open] = ACTIONS(4503), + [sym__superscript_open] = ACTIONS(4503), + [sym__subscript_open] = ACTIONS(4503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4503), + [sym__cite_author_in_text] = ACTIONS(4503), + [sym__cite_suppress_author] = ACTIONS(4503), + [sym__shortcode_open_escaped] = ACTIONS(4503), + [sym__shortcode_open] = ACTIONS(4503), + [sym__unclosed_span] = ACTIONS(4503), + [sym__strong_emphasis_open_star] = ACTIONS(4503), + [sym__strong_emphasis_open_underscore] = ACTIONS(4503), }, [STATE(1309)] = { - [sym__backslash_escape] = ACTIONS(4975), - [sym_entity_reference] = ACTIONS(4975), - [sym_numeric_character_reference] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [sym__newline_token] = ACTIONS(4975), - [aux_sym_insert_token1] = ACTIONS(4975), - [aux_sym_insert_token2] = ACTIONS(4975), - [aux_sym_delete_token1] = ACTIONS(4975), - [aux_sym_highlight_token1] = ACTIONS(4975), - [aux_sym_edit_comment_token1] = ACTIONS(4975), - [anon_sym_CARET_LBRACK] = ACTIONS(4975), - [anon_sym_LBRACK_CARET] = ACTIONS(4975), - [sym_uri_autolink] = ACTIONS(4975), - [sym_email_autolink] = ACTIONS(4975), - [sym__whitespace_ge_2] = ACTIONS(4977), - [aux_sym__whitespace_token1] = ACTIONS(4977), - [sym__word_no_digit] = ACTIONS(4975), - [sym__digits] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [sym__code_span_start] = ACTIONS(4975), - [sym__emphasis_open_star] = ACTIONS(4975), - [sym__emphasis_open_underscore] = ACTIONS(4975), - [sym__strikeout_open] = ACTIONS(4975), - [sym__latex_span_start] = ACTIONS(4975), - [sym__single_quote_open] = ACTIONS(4975), - [sym__double_quote_open] = ACTIONS(4975), - [sym__superscript_open] = ACTIONS(4975), - [sym__subscript_open] = ACTIONS(4975), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4975), - [sym__cite_author_in_text] = ACTIONS(4975), - [sym__cite_suppress_author] = ACTIONS(4975), - [sym__shortcode_open_escaped] = ACTIONS(4975), - [sym__shortcode_open] = ACTIONS(4975), - [sym__unclosed_span] = ACTIONS(4975), - [sym__strong_emphasis_open_star] = ACTIONS(4975), - [sym__strong_emphasis_open_underscore] = ACTIONS(4975), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_insert_token2] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4249), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(1310)] = { - [sym__backslash_escape] = ACTIONS(4979), - [sym_entity_reference] = ACTIONS(4979), - [sym_numeric_character_reference] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_COLON] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), - [sym__newline_token] = ACTIONS(4979), - [aux_sym_insert_token1] = ACTIONS(4979), - [aux_sym_insert_token2] = ACTIONS(4979), - [aux_sym_delete_token1] = ACTIONS(4979), - [aux_sym_highlight_token1] = ACTIONS(4979), - [aux_sym_edit_comment_token1] = ACTIONS(4979), - [anon_sym_CARET_LBRACK] = ACTIONS(4979), - [anon_sym_LBRACK_CARET] = ACTIONS(4979), - [sym_uri_autolink] = ACTIONS(4979), - [sym_email_autolink] = ACTIONS(4979), - [sym__whitespace_ge_2] = ACTIONS(4981), - [aux_sym__whitespace_token1] = ACTIONS(4981), - [sym__word_no_digit] = ACTIONS(4979), - [sym__digits] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4979), - [sym__code_span_start] = ACTIONS(4979), - [sym__emphasis_open_star] = ACTIONS(4979), - [sym__emphasis_open_underscore] = ACTIONS(4979), - [sym__strikeout_open] = ACTIONS(4979), - [sym__latex_span_start] = ACTIONS(4979), - [sym__single_quote_open] = ACTIONS(4979), - [sym__double_quote_open] = ACTIONS(4979), - [sym__superscript_open] = ACTIONS(4979), - [sym__subscript_open] = ACTIONS(4979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4979), - [sym__cite_author_in_text] = ACTIONS(4979), - [sym__cite_suppress_author] = ACTIONS(4979), - [sym__shortcode_open_escaped] = ACTIONS(4979), - [sym__shortcode_open] = ACTIONS(4979), - [sym__unclosed_span] = ACTIONS(4979), - [sym__strong_emphasis_open_star] = ACTIONS(4979), - [sym__strong_emphasis_open_underscore] = ACTIONS(4979), + [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(4251), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(1311)] = { - [ts_builtin_sym_end] = ACTIONS(5003), - [sym__backslash_escape] = ACTIONS(5003), - [sym_entity_reference] = ACTIONS(5003), - [sym_numeric_character_reference] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym__newline_token] = ACTIONS(5003), - [aux_sym_insert_token1] = ACTIONS(5003), - [aux_sym_delete_token1] = ACTIONS(5003), - [aux_sym_highlight_token1] = ACTIONS(5003), - [aux_sym_edit_comment_token1] = ACTIONS(5003), - [anon_sym_CARET_LBRACK] = ACTIONS(5003), - [anon_sym_LBRACK_CARET] = ACTIONS(5003), - [sym_uri_autolink] = ACTIONS(5003), - [sym_email_autolink] = ACTIONS(5003), - [sym__whitespace_ge_2] = ACTIONS(5003), - [aux_sym__whitespace_token1] = ACTIONS(5005), - [sym__word_no_digit] = ACTIONS(5003), - [sym__digits] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [sym__code_span_start] = ACTIONS(5003), - [sym__emphasis_open_star] = ACTIONS(5003), - [sym__emphasis_open_underscore] = ACTIONS(5003), - [sym__strikeout_open] = ACTIONS(5003), - [sym__latex_span_start] = ACTIONS(5003), - [sym__single_quote_open] = ACTIONS(5003), - [sym__double_quote_open] = ACTIONS(5003), - [sym__superscript_open] = ACTIONS(5003), - [sym__subscript_open] = ACTIONS(5003), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5003), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5003), - [sym__cite_author_in_text] = ACTIONS(5003), - [sym__cite_suppress_author] = ACTIONS(5003), - [sym__shortcode_open_escaped] = ACTIONS(5003), - [sym__shortcode_open] = ACTIONS(5003), - [sym__unclosed_span] = ACTIONS(5003), - [sym__strong_emphasis_open_star] = ACTIONS(5003), - [sym__strong_emphasis_open_underscore] = ACTIONS(5003), + [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(1312)] = { - [sym__backslash_escape] = ACTIONS(4983), - [sym_entity_reference] = ACTIONS(4983), - [sym_numeric_character_reference] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [sym__newline_token] = ACTIONS(4983), - [aux_sym_insert_token1] = ACTIONS(4983), - [aux_sym_insert_token2] = ACTIONS(4983), - [aux_sym_delete_token1] = ACTIONS(4983), - [aux_sym_highlight_token1] = ACTIONS(4983), - [aux_sym_edit_comment_token1] = ACTIONS(4983), - [anon_sym_CARET_LBRACK] = ACTIONS(4983), - [anon_sym_LBRACK_CARET] = ACTIONS(4983), - [sym_uri_autolink] = ACTIONS(4983), - [sym_email_autolink] = ACTIONS(4983), - [sym__whitespace_ge_2] = ACTIONS(4985), - [aux_sym__whitespace_token1] = ACTIONS(4985), - [sym__word_no_digit] = ACTIONS(4983), - [sym__digits] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4983), - [sym__code_span_start] = ACTIONS(4983), - [sym__emphasis_open_star] = ACTIONS(4983), - [sym__emphasis_open_underscore] = ACTIONS(4983), - [sym__strikeout_open] = ACTIONS(4983), - [sym__latex_span_start] = ACTIONS(4983), - [sym__single_quote_open] = ACTIONS(4983), - [sym__double_quote_open] = ACTIONS(4983), - [sym__superscript_open] = ACTIONS(4983), - [sym__subscript_open] = ACTIONS(4983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4983), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4983), - [sym__cite_author_in_text] = ACTIONS(4983), - [sym__cite_suppress_author] = ACTIONS(4983), - [sym__shortcode_open_escaped] = ACTIONS(4983), - [sym__shortcode_open] = ACTIONS(4983), - [sym__unclosed_span] = ACTIONS(4983), - [sym__strong_emphasis_open_star] = ACTIONS(4983), - [sym__strong_emphasis_open_underscore] = ACTIONS(4983), + [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_insert_token2] = 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(4537), + [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(1313)] = { - [sym__backslash_escape] = ACTIONS(4987), - [sym_entity_reference] = ACTIONS(4987), - [sym_numeric_character_reference] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym__newline_token] = ACTIONS(4987), - [aux_sym_insert_token1] = ACTIONS(4987), - [aux_sym_insert_token2] = ACTIONS(4987), - [aux_sym_delete_token1] = ACTIONS(4987), - [aux_sym_highlight_token1] = ACTIONS(4987), - [aux_sym_edit_comment_token1] = ACTIONS(4987), - [anon_sym_CARET_LBRACK] = ACTIONS(4987), - [anon_sym_LBRACK_CARET] = ACTIONS(4987), - [sym_uri_autolink] = ACTIONS(4987), - [sym_email_autolink] = ACTIONS(4987), - [sym__whitespace_ge_2] = ACTIONS(4989), - [aux_sym__whitespace_token1] = ACTIONS(4989), - [sym__word_no_digit] = ACTIONS(4987), - [sym__digits] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4987), - [sym__code_span_start] = ACTIONS(4987), - [sym__emphasis_open_star] = ACTIONS(4987), - [sym__emphasis_open_underscore] = ACTIONS(4987), - [sym__strikeout_open] = ACTIONS(4987), - [sym__latex_span_start] = ACTIONS(4987), - [sym__single_quote_open] = ACTIONS(4987), - [sym__double_quote_open] = ACTIONS(4987), - [sym__superscript_open] = ACTIONS(4987), - [sym__subscript_open] = ACTIONS(4987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4987), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4987), - [sym__cite_author_in_text] = ACTIONS(4987), - [sym__cite_suppress_author] = ACTIONS(4987), - [sym__shortcode_open_escaped] = ACTIONS(4987), - [sym__shortcode_open] = ACTIONS(4987), - [sym__unclosed_span] = ACTIONS(4987), - [sym__strong_emphasis_open_star] = ACTIONS(4987), - [sym__strong_emphasis_open_underscore] = ACTIONS(4987), + [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_insert_token2] = 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(4541), + [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__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(1314)] = { - [sym__backslash_escape] = ACTIONS(5179), - [sym_entity_reference] = ACTIONS(5179), - [sym_numeric_character_reference] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_QMARK] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_BSLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [sym__newline_token] = ACTIONS(5179), - [aux_sym_insert_token1] = ACTIONS(5179), - [aux_sym_delete_token1] = ACTIONS(5179), - [aux_sym_highlight_token1] = ACTIONS(5179), - [aux_sym_edit_comment_token1] = ACTIONS(5179), - [anon_sym_CARET_LBRACK] = ACTIONS(5179), - [anon_sym_LBRACK_CARET] = ACTIONS(5179), - [sym_uri_autolink] = ACTIONS(5179), - [sym_email_autolink] = ACTIONS(5179), - [sym__whitespace_ge_2] = ACTIONS(5179), - [aux_sym__whitespace_token1] = ACTIONS(5181), - [sym__word_no_digit] = ACTIONS(5179), - [sym__digits] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5181), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5179), - [sym__code_span_start] = ACTIONS(5179), - [sym__emphasis_open_star] = ACTIONS(5179), - [sym__emphasis_open_underscore] = ACTIONS(5179), - [sym__strikeout_open] = ACTIONS(5179), - [sym__latex_span_start] = ACTIONS(5179), - [sym__single_quote_open] = ACTIONS(5179), - [sym__double_quote_open] = ACTIONS(5179), - [sym__superscript_open] = ACTIONS(5179), - [sym__subscript_open] = ACTIONS(5179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5179), - [sym__cite_author_in_text] = ACTIONS(5179), - [sym__cite_suppress_author] = ACTIONS(5179), - [sym__shortcode_open_escaped] = ACTIONS(5179), - [sym__shortcode_open] = ACTIONS(5179), - [sym__unclosed_span] = ACTIONS(5179), - [sym__strong_emphasis_open_star] = ACTIONS(5179), - [sym__strong_emphasis_open_underscore] = ACTIONS(5179), - [sym__strong_emphasis_close_underscore] = ACTIONS(5179), + [sym__backslash_escape] = ACTIONS(4503), + [sym_entity_reference] = ACTIONS(4503), + [sym_numeric_character_reference] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_BQUOTE] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_PIPE] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [sym__newline_token] = ACTIONS(4503), + [aux_sym_insert_token1] = ACTIONS(4503), + [aux_sym_insert_token2] = ACTIONS(4503), + [aux_sym_delete_token1] = ACTIONS(4503), + [aux_sym_highlight_token1] = ACTIONS(4503), + [aux_sym_edit_comment_token1] = ACTIONS(4503), + [anon_sym_CARET_LBRACK] = ACTIONS(4503), + [anon_sym_LBRACK_CARET] = ACTIONS(4503), + [sym_uri_autolink] = ACTIONS(4503), + [sym_email_autolink] = ACTIONS(4503), + [sym__whitespace_ge_2] = ACTIONS(4505), + [aux_sym__whitespace_token1] = ACTIONS(4505), + [sym__word_no_digit] = ACTIONS(4503), + [sym__digits] = ACTIONS(4503), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4503), + [sym__code_span_start] = ACTIONS(4503), + [sym__emphasis_open_star] = ACTIONS(4503), + [sym__emphasis_open_underscore] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4503), + [sym__latex_span_start] = ACTIONS(4503), + [sym__single_quote_open] = ACTIONS(4503), + [sym__double_quote_open] = ACTIONS(4503), + [sym__superscript_open] = ACTIONS(4503), + [sym__subscript_open] = ACTIONS(4503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4503), + [sym__cite_author_in_text] = ACTIONS(4503), + [sym__cite_suppress_author] = ACTIONS(4503), + [sym__shortcode_open_escaped] = ACTIONS(4503), + [sym__shortcode_open] = ACTIONS(4503), + [sym__unclosed_span] = ACTIONS(4503), + [sym__strong_emphasis_open_star] = ACTIONS(4503), + [sym__strong_emphasis_open_underscore] = ACTIONS(4503), }, [STATE(1315)] = { - [sym__backslash_escape] = ACTIONS(4991), - [sym_entity_reference] = ACTIONS(4991), - [sym_numeric_character_reference] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH] = ACTIONS(4993), - [anon_sym_CARET] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym__newline_token] = ACTIONS(4991), - [aux_sym_insert_token1] = ACTIONS(4991), - [aux_sym_insert_token2] = ACTIONS(4991), - [aux_sym_delete_token1] = ACTIONS(4991), - [aux_sym_highlight_token1] = ACTIONS(4991), - [aux_sym_edit_comment_token1] = ACTIONS(4991), - [anon_sym_CARET_LBRACK] = ACTIONS(4991), - [anon_sym_LBRACK_CARET] = ACTIONS(4991), - [sym_uri_autolink] = ACTIONS(4991), - [sym_email_autolink] = ACTIONS(4991), - [sym__whitespace_ge_2] = ACTIONS(4993), - [aux_sym__whitespace_token1] = ACTIONS(4993), - [sym__word_no_digit] = ACTIONS(4991), - [sym__digits] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), - [sym__code_span_start] = ACTIONS(4991), - [sym__emphasis_open_star] = ACTIONS(4991), - [sym__emphasis_open_underscore] = ACTIONS(4991), - [sym__strikeout_open] = ACTIONS(4991), - [sym__latex_span_start] = ACTIONS(4991), - [sym__single_quote_open] = ACTIONS(4991), - [sym__double_quote_open] = ACTIONS(4991), - [sym__superscript_open] = ACTIONS(4991), - [sym__subscript_open] = ACTIONS(4991), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4991), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4991), - [sym__cite_author_in_text] = ACTIONS(4991), - [sym__cite_suppress_author] = ACTIONS(4991), - [sym__shortcode_open_escaped] = ACTIONS(4991), - [sym__shortcode_open] = ACTIONS(4991), - [sym__unclosed_span] = ACTIONS(4991), - [sym__strong_emphasis_open_star] = ACTIONS(4991), - [sym__strong_emphasis_open_underscore] = ACTIONS(4991), + [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(4251), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(1316)] = { - [sym__backslash_escape] = ACTIONS(4995), - [sym_entity_reference] = ACTIONS(4995), - [sym_numeric_character_reference] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym__newline_token] = ACTIONS(4995), - [aux_sym_insert_token1] = ACTIONS(4995), - [aux_sym_insert_token2] = ACTIONS(4995), - [aux_sym_delete_token1] = ACTIONS(4995), - [aux_sym_highlight_token1] = ACTIONS(4995), - [aux_sym_edit_comment_token1] = ACTIONS(4995), - [anon_sym_CARET_LBRACK] = ACTIONS(4995), - [anon_sym_LBRACK_CARET] = ACTIONS(4995), - [sym_uri_autolink] = ACTIONS(4995), - [sym_email_autolink] = ACTIONS(4995), - [sym__whitespace_ge_2] = ACTIONS(4997), - [aux_sym__whitespace_token1] = ACTIONS(4997), - [sym__word_no_digit] = ACTIONS(4995), - [sym__digits] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4995), - [sym__code_span_start] = ACTIONS(4995), - [sym__emphasis_open_star] = ACTIONS(4995), - [sym__emphasis_open_underscore] = ACTIONS(4995), - [sym__strikeout_open] = ACTIONS(4995), - [sym__latex_span_start] = ACTIONS(4995), - [sym__single_quote_open] = ACTIONS(4995), - [sym__double_quote_open] = ACTIONS(4995), - [sym__superscript_open] = ACTIONS(4995), - [sym__subscript_open] = ACTIONS(4995), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4995), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4995), - [sym__cite_author_in_text] = ACTIONS(4995), - [sym__cite_suppress_author] = ACTIONS(4995), - [sym__shortcode_open_escaped] = ACTIONS(4995), - [sym__shortcode_open] = ACTIONS(4995), - [sym__unclosed_span] = ACTIONS(4995), - [sym__strong_emphasis_open_star] = ACTIONS(4995), - [sym__strong_emphasis_open_underscore] = ACTIONS(4995), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_insert_token2] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4257), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(1317)] = { - [sym__backslash_escape] = ACTIONS(4999), - [sym_entity_reference] = ACTIONS(4999), - [sym_numeric_character_reference] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [sym__newline_token] = ACTIONS(4999), - [aux_sym_insert_token1] = ACTIONS(4999), - [aux_sym_insert_token2] = ACTIONS(4999), - [aux_sym_delete_token1] = ACTIONS(4999), - [aux_sym_highlight_token1] = ACTIONS(4999), - [aux_sym_edit_comment_token1] = ACTIONS(4999), - [anon_sym_CARET_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_CARET] = ACTIONS(4999), - [sym_uri_autolink] = ACTIONS(4999), - [sym_email_autolink] = ACTIONS(4999), - [sym__whitespace_ge_2] = ACTIONS(5001), - [aux_sym__whitespace_token1] = ACTIONS(5001), - [sym__word_no_digit] = ACTIONS(4999), - [sym__digits] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4999), - [sym__code_span_start] = ACTIONS(4999), - [sym__emphasis_open_star] = ACTIONS(4999), - [sym__emphasis_open_underscore] = ACTIONS(4999), - [sym__strikeout_open] = ACTIONS(4999), - [sym__latex_span_start] = ACTIONS(4999), - [sym__single_quote_open] = ACTIONS(4999), - [sym__double_quote_open] = ACTIONS(4999), - [sym__superscript_open] = ACTIONS(4999), - [sym__subscript_open] = ACTIONS(4999), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4999), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4999), - [sym__cite_author_in_text] = ACTIONS(4999), - [sym__cite_suppress_author] = ACTIONS(4999), - [sym__shortcode_open_escaped] = ACTIONS(4999), - [sym__shortcode_open] = ACTIONS(4999), - [sym__unclosed_span] = ACTIONS(4999), - [sym__strong_emphasis_open_star] = ACTIONS(4999), - [sym__strong_emphasis_open_underscore] = ACTIONS(4999), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__emphasis_close_star] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(1318)] = { - [sym__backslash_escape] = ACTIONS(5003), - [sym_entity_reference] = ACTIONS(5003), - [sym_numeric_character_reference] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym__newline_token] = ACTIONS(5003), - [aux_sym_insert_token1] = ACTIONS(5003), - [aux_sym_insert_token2] = ACTIONS(5003), - [aux_sym_delete_token1] = ACTIONS(5003), - [aux_sym_highlight_token1] = ACTIONS(5003), - [aux_sym_edit_comment_token1] = ACTIONS(5003), - [anon_sym_CARET_LBRACK] = ACTIONS(5003), - [anon_sym_LBRACK_CARET] = ACTIONS(5003), - [sym_uri_autolink] = ACTIONS(5003), - [sym_email_autolink] = ACTIONS(5003), - [sym__whitespace_ge_2] = ACTIONS(5005), - [aux_sym__whitespace_token1] = ACTIONS(5005), - [sym__word_no_digit] = ACTIONS(5003), - [sym__digits] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [sym__code_span_start] = ACTIONS(5003), - [sym__emphasis_open_star] = ACTIONS(5003), - [sym__emphasis_open_underscore] = ACTIONS(5003), - [sym__strikeout_open] = ACTIONS(5003), - [sym__latex_span_start] = ACTIONS(5003), - [sym__single_quote_open] = ACTIONS(5003), - [sym__double_quote_open] = ACTIONS(5003), - [sym__superscript_open] = ACTIONS(5003), - [sym__subscript_open] = ACTIONS(5003), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5003), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5003), - [sym__cite_author_in_text] = ACTIONS(5003), - [sym__cite_suppress_author] = ACTIONS(5003), - [sym__shortcode_open_escaped] = ACTIONS(5003), - [sym__shortcode_open] = ACTIONS(5003), - [sym__unclosed_span] = ACTIONS(5003), - [sym__strong_emphasis_open_star] = ACTIONS(5003), - [sym__strong_emphasis_open_underscore] = ACTIONS(5003), + [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_insert_token2] = 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(4545), + [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(1319)] = { - [sym__backslash_escape] = ACTIONS(5027), - [sym_entity_reference] = ACTIONS(5027), - [sym_numeric_character_reference] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [sym__newline_token] = ACTIONS(5027), - [aux_sym_insert_token1] = ACTIONS(5027), - [aux_sym_delete_token1] = ACTIONS(5027), - [aux_sym_highlight_token1] = ACTIONS(5027), - [aux_sym_edit_comment_token1] = ACTIONS(5027), - [anon_sym_CARET_LBRACK] = ACTIONS(5027), - [anon_sym_LBRACK_CARET] = ACTIONS(5027), - [sym_uri_autolink] = ACTIONS(5027), - [sym_email_autolink] = ACTIONS(5027), - [sym__whitespace_ge_2] = ACTIONS(5027), - [aux_sym__whitespace_token1] = ACTIONS(5029), - [sym__word_no_digit] = ACTIONS(5027), - [sym__digits] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5027), - [sym__code_span_start] = ACTIONS(5027), - [sym__emphasis_open_star] = ACTIONS(5027), - [sym__emphasis_open_underscore] = ACTIONS(5027), - [sym__emphasis_close_star] = ACTIONS(5027), - [sym__strikeout_open] = ACTIONS(5027), - [sym__latex_span_start] = ACTIONS(5027), - [sym__single_quote_open] = ACTIONS(5027), - [sym__double_quote_open] = ACTIONS(5027), - [sym__superscript_open] = ACTIONS(5027), - [sym__subscript_open] = ACTIONS(5027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5027), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5027), - [sym__cite_author_in_text] = ACTIONS(5027), - [sym__cite_suppress_author] = ACTIONS(5027), - [sym__shortcode_open_escaped] = ACTIONS(5027), - [sym__shortcode_open] = ACTIONS(5027), - [sym__unclosed_span] = ACTIONS(5027), - [sym__strong_emphasis_open_star] = ACTIONS(5027), - [sym__strong_emphasis_open_underscore] = ACTIONS(5027), + [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_insert_token2] = 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(4549), + [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(1320)] = { - [sym__backslash_escape] = ACTIONS(5007), - [sym_entity_reference] = ACTIONS(5007), - [sym_numeric_character_reference] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH] = ACTIONS(5009), - [anon_sym_CARET] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym__newline_token] = ACTIONS(5007), - [aux_sym_insert_token1] = ACTIONS(5007), - [aux_sym_delete_token1] = ACTIONS(5007), - [aux_sym_highlight_token1] = ACTIONS(5007), - [aux_sym_edit_comment_token1] = ACTIONS(5007), - [anon_sym_CARET_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_CARET] = ACTIONS(5007), - [sym_uri_autolink] = ACTIONS(5007), - [sym_email_autolink] = ACTIONS(5007), - [sym__whitespace_ge_2] = ACTIONS(5007), - [aux_sym__whitespace_token1] = ACTIONS(5009), - [sym__word_no_digit] = ACTIONS(5007), - [sym__digits] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), - [sym__code_span_start] = ACTIONS(5007), - [sym__emphasis_open_star] = ACTIONS(5007), - [sym__emphasis_open_underscore] = ACTIONS(5007), - [sym__strikeout_open] = ACTIONS(5007), - [sym__latex_span_start] = ACTIONS(5007), - [sym__single_quote_open] = ACTIONS(5007), - [sym__double_quote_open] = ACTIONS(5007), - [sym__superscript_open] = ACTIONS(5007), - [sym__subscript_open] = ACTIONS(5007), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5007), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5007), - [sym__cite_author_in_text] = ACTIONS(5007), - [sym__cite_suppress_author] = ACTIONS(5007), - [sym__shortcode_open_escaped] = ACTIONS(5007), - [sym__shortcode_open] = ACTIONS(5007), - [sym__unclosed_span] = ACTIONS(5007), - [sym__strong_emphasis_open_star] = ACTIONS(5007), - [sym__strong_emphasis_open_underscore] = ACTIONS(5007), - [sym__strong_emphasis_close_underscore] = ACTIONS(5007), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_insert_token2] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4189), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(1321)] = { - [sym__backslash_escape] = ACTIONS(5011), - [sym_entity_reference] = ACTIONS(5011), - [sym_numeric_character_reference] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_AMP] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym_BQUOTE] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym__newline_token] = ACTIONS(5011), - [aux_sym_insert_token1] = ACTIONS(5011), - [aux_sym_insert_token2] = ACTIONS(5011), - [aux_sym_delete_token1] = ACTIONS(5011), - [aux_sym_highlight_token1] = ACTIONS(5011), - [aux_sym_edit_comment_token1] = ACTIONS(5011), - [anon_sym_CARET_LBRACK] = ACTIONS(5011), - [anon_sym_LBRACK_CARET] = ACTIONS(5011), - [sym_uri_autolink] = ACTIONS(5011), - [sym_email_autolink] = ACTIONS(5011), - [sym__whitespace_ge_2] = ACTIONS(5013), - [aux_sym__whitespace_token1] = ACTIONS(5013), - [sym__word_no_digit] = ACTIONS(5011), - [sym__digits] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5011), - [sym__code_span_start] = ACTIONS(5011), - [sym__emphasis_open_star] = ACTIONS(5011), - [sym__emphasis_open_underscore] = ACTIONS(5011), - [sym__strikeout_open] = ACTIONS(5011), - [sym__latex_span_start] = ACTIONS(5011), - [sym__single_quote_open] = ACTIONS(5011), - [sym__double_quote_open] = ACTIONS(5011), - [sym__superscript_open] = ACTIONS(5011), - [sym__subscript_open] = ACTIONS(5011), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5011), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5011), - [sym__cite_author_in_text] = ACTIONS(5011), - [sym__cite_suppress_author] = ACTIONS(5011), - [sym__shortcode_open_escaped] = ACTIONS(5011), - [sym__shortcode_open] = ACTIONS(5011), - [sym__unclosed_span] = ACTIONS(5011), - [sym__strong_emphasis_open_star] = ACTIONS(5011), - [sym__strong_emphasis_open_underscore] = ACTIONS(5011), + [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(1322)] = { - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_insert_token2] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4703), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_insert_token2] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4195), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(1323)] = { - [sym__backslash_escape] = ACTIONS(5015), - [sym_entity_reference] = ACTIONS(5015), - [sym_numeric_character_reference] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym_BQUOTE] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__newline_token] = ACTIONS(5015), - [aux_sym_insert_token1] = ACTIONS(5015), - [aux_sym_insert_token2] = ACTIONS(5015), - [aux_sym_delete_token1] = ACTIONS(5015), - [aux_sym_highlight_token1] = ACTIONS(5015), - [aux_sym_edit_comment_token1] = ACTIONS(5015), - [anon_sym_CARET_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_CARET] = ACTIONS(5015), - [sym_uri_autolink] = ACTIONS(5015), - [sym_email_autolink] = ACTIONS(5015), - [sym__whitespace_ge_2] = ACTIONS(5017), - [aux_sym__whitespace_token1] = ACTIONS(5017), - [sym__word_no_digit] = ACTIONS(5015), - [sym__digits] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5015), - [sym__code_span_start] = ACTIONS(5015), - [sym__emphasis_open_star] = ACTIONS(5015), - [sym__emphasis_open_underscore] = ACTIONS(5015), - [sym__strikeout_open] = ACTIONS(5015), - [sym__latex_span_start] = ACTIONS(5015), - [sym__single_quote_open] = ACTIONS(5015), - [sym__double_quote_open] = ACTIONS(5015), - [sym__superscript_open] = ACTIONS(5015), - [sym__subscript_open] = ACTIONS(5015), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5015), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5015), - [sym__cite_author_in_text] = ACTIONS(5015), - [sym__cite_suppress_author] = ACTIONS(5015), - [sym__shortcode_open_escaped] = ACTIONS(5015), - [sym__shortcode_open] = ACTIONS(5015), - [sym__unclosed_span] = ACTIONS(5015), - [sym__strong_emphasis_open_star] = ACTIONS(5015), - [sym__strong_emphasis_open_underscore] = ACTIONS(5015), + [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(1324)] = { - [sym__backslash_escape] = ACTIONS(5031), - [sym_entity_reference] = ACTIONS(5031), - [sym_numeric_character_reference] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_BSLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_BQUOTE] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [sym__newline_token] = ACTIONS(5031), - [aux_sym_insert_token1] = ACTIONS(5031), - [aux_sym_delete_token1] = ACTIONS(5031), - [aux_sym_highlight_token1] = ACTIONS(5031), - [aux_sym_edit_comment_token1] = ACTIONS(5031), - [anon_sym_CARET_LBRACK] = ACTIONS(5031), - [anon_sym_LBRACK_CARET] = ACTIONS(5031), - [sym_uri_autolink] = ACTIONS(5031), - [sym_email_autolink] = ACTIONS(5031), - [sym__whitespace_ge_2] = ACTIONS(5031), - [aux_sym__whitespace_token1] = ACTIONS(5033), - [sym__word_no_digit] = ACTIONS(5031), - [sym__digits] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [sym__code_span_start] = ACTIONS(5031), - [sym__emphasis_open_star] = ACTIONS(5031), - [sym__emphasis_open_underscore] = ACTIONS(5031), - [sym__emphasis_close_star] = ACTIONS(5031), - [sym__strikeout_open] = ACTIONS(5031), - [sym__latex_span_start] = ACTIONS(5031), - [sym__single_quote_open] = ACTIONS(5031), - [sym__double_quote_open] = ACTIONS(5031), - [sym__superscript_open] = ACTIONS(5031), - [sym__subscript_open] = ACTIONS(5031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5031), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5031), - [sym__cite_author_in_text] = ACTIONS(5031), - [sym__cite_suppress_author] = ACTIONS(5031), - [sym__shortcode_open_escaped] = ACTIONS(5031), - [sym__shortcode_open] = ACTIONS(5031), - [sym__unclosed_span] = ACTIONS(5031), - [sym__strong_emphasis_open_star] = ACTIONS(5031), - [sym__strong_emphasis_open_underscore] = ACTIONS(5031), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_insert_token2] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4199), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(1325)] = { - [sym__backslash_escape] = ACTIONS(5019), - [sym_entity_reference] = ACTIONS(5019), - [sym_numeric_character_reference] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_DQUOTE] = ACTIONS(5019), - [anon_sym_POUND] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym__newline_token] = ACTIONS(5019), - [aux_sym_insert_token1] = ACTIONS(5019), - [aux_sym_insert_token2] = ACTIONS(5019), - [aux_sym_delete_token1] = ACTIONS(5019), - [aux_sym_highlight_token1] = ACTIONS(5019), - [aux_sym_edit_comment_token1] = ACTIONS(5019), - [anon_sym_CARET_LBRACK] = ACTIONS(5019), - [anon_sym_LBRACK_CARET] = ACTIONS(5019), - [sym_uri_autolink] = ACTIONS(5019), - [sym_email_autolink] = ACTIONS(5019), - [sym__whitespace_ge_2] = ACTIONS(5021), - [aux_sym__whitespace_token1] = ACTIONS(5021), - [sym__word_no_digit] = ACTIONS(5019), - [sym__digits] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [sym__code_span_start] = ACTIONS(5019), - [sym__emphasis_open_star] = ACTIONS(5019), - [sym__emphasis_open_underscore] = ACTIONS(5019), - [sym__strikeout_open] = ACTIONS(5019), - [sym__latex_span_start] = ACTIONS(5019), - [sym__single_quote_open] = ACTIONS(5019), - [sym__double_quote_open] = ACTIONS(5019), - [sym__superscript_open] = ACTIONS(5019), - [sym__subscript_open] = ACTIONS(5019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5019), - [sym__cite_author_in_text] = ACTIONS(5019), - [sym__cite_suppress_author] = ACTIONS(5019), - [sym__shortcode_open_escaped] = ACTIONS(5019), - [sym__shortcode_open] = ACTIONS(5019), - [sym__unclosed_span] = ACTIONS(5019), - [sym__strong_emphasis_open_star] = ACTIONS(5019), - [sym__strong_emphasis_open_underscore] = ACTIONS(5019), + [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(1326)] = { - [sym__backslash_escape] = ACTIONS(5023), - [sym_entity_reference] = ACTIONS(5023), - [sym_numeric_character_reference] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [sym__newline_token] = ACTIONS(5023), - [aux_sym_insert_token1] = ACTIONS(5023), - [aux_sym_insert_token2] = ACTIONS(5023), - [aux_sym_delete_token1] = ACTIONS(5023), - [aux_sym_highlight_token1] = ACTIONS(5023), - [aux_sym_edit_comment_token1] = ACTIONS(5023), - [anon_sym_CARET_LBRACK] = ACTIONS(5023), - [anon_sym_LBRACK_CARET] = ACTIONS(5023), - [sym_uri_autolink] = ACTIONS(5023), - [sym_email_autolink] = ACTIONS(5023), - [sym__whitespace_ge_2] = ACTIONS(5025), - [aux_sym__whitespace_token1] = ACTIONS(5025), - [sym__word_no_digit] = ACTIONS(5023), - [sym__digits] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5023), - [sym__code_span_start] = ACTIONS(5023), - [sym__emphasis_open_star] = ACTIONS(5023), - [sym__emphasis_open_underscore] = ACTIONS(5023), - [sym__strikeout_open] = ACTIONS(5023), - [sym__latex_span_start] = ACTIONS(5023), - [sym__single_quote_open] = ACTIONS(5023), - [sym__double_quote_open] = ACTIONS(5023), - [sym__superscript_open] = ACTIONS(5023), - [sym__subscript_open] = ACTIONS(5023), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5023), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5023), - [sym__cite_author_in_text] = ACTIONS(5023), - [sym__cite_suppress_author] = ACTIONS(5023), - [sym__shortcode_open_escaped] = ACTIONS(5023), - [sym__shortcode_open] = ACTIONS(5023), - [sym__unclosed_span] = ACTIONS(5023), - [sym__strong_emphasis_open_star] = ACTIONS(5023), - [sym__strong_emphasis_open_underscore] = ACTIONS(5023), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_insert_token2] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4203), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(1327)] = { - [sym__backslash_escape] = ACTIONS(5027), - [sym_entity_reference] = ACTIONS(5027), - [sym_numeric_character_reference] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [sym__newline_token] = ACTIONS(5027), - [aux_sym_insert_token1] = ACTIONS(5027), - [aux_sym_insert_token2] = ACTIONS(5027), - [aux_sym_delete_token1] = ACTIONS(5027), - [aux_sym_highlight_token1] = ACTIONS(5027), - [aux_sym_edit_comment_token1] = ACTIONS(5027), - [anon_sym_CARET_LBRACK] = ACTIONS(5027), - [anon_sym_LBRACK_CARET] = ACTIONS(5027), - [sym_uri_autolink] = ACTIONS(5027), - [sym_email_autolink] = ACTIONS(5027), - [sym__whitespace_ge_2] = ACTIONS(5029), - [aux_sym__whitespace_token1] = ACTIONS(5029), - [sym__word_no_digit] = ACTIONS(5027), - [sym__digits] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5027), - [sym__code_span_start] = ACTIONS(5027), - [sym__emphasis_open_star] = ACTIONS(5027), - [sym__emphasis_open_underscore] = ACTIONS(5027), - [sym__strikeout_open] = ACTIONS(5027), - [sym__latex_span_start] = ACTIONS(5027), - [sym__single_quote_open] = ACTIONS(5027), - [sym__double_quote_open] = ACTIONS(5027), - [sym__superscript_open] = ACTIONS(5027), - [sym__subscript_open] = ACTIONS(5027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5027), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5027), - [sym__cite_author_in_text] = ACTIONS(5027), - [sym__cite_suppress_author] = ACTIONS(5027), - [sym__shortcode_open_escaped] = ACTIONS(5027), - [sym__shortcode_open] = ACTIONS(5027), - [sym__unclosed_span] = ACTIONS(5027), - [sym__strong_emphasis_open_star] = ACTIONS(5027), - [sym__strong_emphasis_open_underscore] = ACTIONS(5027), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__emphasis_close_star] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(1328)] = { - [sym__backslash_escape] = ACTIONS(5031), - [sym_entity_reference] = ACTIONS(5031), - [sym_numeric_character_reference] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_BSLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_BQUOTE] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [sym__newline_token] = ACTIONS(5031), - [aux_sym_insert_token1] = ACTIONS(5031), - [aux_sym_insert_token2] = ACTIONS(5031), - [aux_sym_delete_token1] = ACTIONS(5031), - [aux_sym_highlight_token1] = ACTIONS(5031), - [aux_sym_edit_comment_token1] = ACTIONS(5031), - [anon_sym_CARET_LBRACK] = ACTIONS(5031), - [anon_sym_LBRACK_CARET] = ACTIONS(5031), - [sym_uri_autolink] = ACTIONS(5031), - [sym_email_autolink] = ACTIONS(5031), - [sym__whitespace_ge_2] = ACTIONS(5033), - [aux_sym__whitespace_token1] = ACTIONS(5033), - [sym__word_no_digit] = ACTIONS(5031), - [sym__digits] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [sym__code_span_start] = ACTIONS(5031), - [sym__emphasis_open_star] = ACTIONS(5031), - [sym__emphasis_open_underscore] = ACTIONS(5031), - [sym__strikeout_open] = ACTIONS(5031), - [sym__latex_span_start] = ACTIONS(5031), - [sym__single_quote_open] = ACTIONS(5031), - [sym__double_quote_open] = ACTIONS(5031), - [sym__superscript_open] = ACTIONS(5031), - [sym__subscript_open] = ACTIONS(5031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5031), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5031), - [sym__cite_author_in_text] = ACTIONS(5031), - [sym__cite_suppress_author] = ACTIONS(5031), - [sym__shortcode_open_escaped] = ACTIONS(5031), - [sym__shortcode_open] = ACTIONS(5031), - [sym__unclosed_span] = ACTIONS(5031), - [sym__strong_emphasis_open_star] = ACTIONS(5031), - [sym__strong_emphasis_open_underscore] = ACTIONS(5031), + [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_insert_token2] = 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(4557), + [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(1329)] = { - [sym__backslash_escape] = ACTIONS(5035), - [sym_entity_reference] = ACTIONS(5035), - [sym_numeric_character_reference] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_DQUOTE] = ACTIONS(5035), - [anon_sym_POUND] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_BSLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [sym__newline_token] = ACTIONS(5035), - [aux_sym_insert_token1] = ACTIONS(5035), - [aux_sym_insert_token2] = ACTIONS(5035), - [aux_sym_delete_token1] = ACTIONS(5035), - [aux_sym_highlight_token1] = ACTIONS(5035), - [aux_sym_edit_comment_token1] = ACTIONS(5035), - [anon_sym_CARET_LBRACK] = ACTIONS(5035), - [anon_sym_LBRACK_CARET] = ACTIONS(5035), - [sym_uri_autolink] = ACTIONS(5035), - [sym_email_autolink] = ACTIONS(5035), - [sym__whitespace_ge_2] = ACTIONS(5037), - [aux_sym__whitespace_token1] = ACTIONS(5037), - [sym__word_no_digit] = ACTIONS(5035), - [sym__digits] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5035), - [sym__code_span_start] = ACTIONS(5035), - [sym__emphasis_open_star] = ACTIONS(5035), - [sym__emphasis_open_underscore] = ACTIONS(5035), - [sym__strikeout_open] = ACTIONS(5035), - [sym__latex_span_start] = ACTIONS(5035), - [sym__single_quote_open] = ACTIONS(5035), - [sym__double_quote_open] = ACTIONS(5035), - [sym__superscript_open] = ACTIONS(5035), - [sym__subscript_open] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5035), - [sym__cite_author_in_text] = ACTIONS(5035), - [sym__cite_suppress_author] = ACTIONS(5035), - [sym__shortcode_open_escaped] = ACTIONS(5035), - [sym__shortcode_open] = ACTIONS(5035), - [sym__unclosed_span] = ACTIONS(5035), - [sym__strong_emphasis_open_star] = ACTIONS(5035), - [sym__strong_emphasis_open_underscore] = ACTIONS(5035), + [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_insert_token2] = 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(4561), + [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__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(1330)] = { - [sym__backslash_escape] = ACTIONS(5039), - [sym_entity_reference] = ACTIONS(5039), - [sym_numeric_character_reference] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(5039), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_BSLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [sym__newline_token] = ACTIONS(5039), - [aux_sym_insert_token1] = ACTIONS(5039), - [aux_sym_insert_token2] = ACTIONS(5039), - [aux_sym_delete_token1] = ACTIONS(5039), - [aux_sym_highlight_token1] = ACTIONS(5039), - [aux_sym_edit_comment_token1] = ACTIONS(5039), - [anon_sym_CARET_LBRACK] = ACTIONS(5039), - [anon_sym_LBRACK_CARET] = ACTIONS(5039), - [sym_uri_autolink] = ACTIONS(5039), - [sym_email_autolink] = ACTIONS(5039), - [sym__whitespace_ge_2] = ACTIONS(5041), - [aux_sym__whitespace_token1] = ACTIONS(5041), - [sym__word_no_digit] = ACTIONS(5039), - [sym__digits] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5039), - [sym__code_span_start] = ACTIONS(5039), - [sym__emphasis_open_star] = ACTIONS(5039), - [sym__emphasis_open_underscore] = ACTIONS(5039), - [sym__strikeout_open] = ACTIONS(5039), - [sym__latex_span_start] = ACTIONS(5039), - [sym__single_quote_open] = ACTIONS(5039), - [sym__double_quote_open] = ACTIONS(5039), - [sym__superscript_open] = ACTIONS(5039), - [sym__subscript_open] = ACTIONS(5039), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5039), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5039), - [sym__cite_author_in_text] = ACTIONS(5039), - [sym__cite_suppress_author] = ACTIONS(5039), - [sym__shortcode_open_escaped] = ACTIONS(5039), - [sym__shortcode_open] = ACTIONS(5039), - [sym__unclosed_span] = ACTIONS(5039), - [sym__strong_emphasis_open_star] = ACTIONS(5039), - [sym__strong_emphasis_open_underscore] = ACTIONS(5039), + [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_insert_token2] = 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(4565), + [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(1331)] = { - [sym__backslash_escape] = ACTIONS(5043), - [sym_entity_reference] = ACTIONS(5043), - [sym_numeric_character_reference] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_DQUOTE] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_QMARK] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_BSLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [sym__newline_token] = ACTIONS(5043), - [aux_sym_insert_token1] = ACTIONS(5043), - [aux_sym_insert_token2] = ACTIONS(5043), - [aux_sym_delete_token1] = ACTIONS(5043), - [aux_sym_highlight_token1] = ACTIONS(5043), - [aux_sym_edit_comment_token1] = ACTIONS(5043), - [anon_sym_CARET_LBRACK] = ACTIONS(5043), - [anon_sym_LBRACK_CARET] = ACTIONS(5043), - [sym_uri_autolink] = ACTIONS(5043), - [sym_email_autolink] = ACTIONS(5043), - [sym__whitespace_ge_2] = ACTIONS(5045), - [aux_sym__whitespace_token1] = ACTIONS(5045), - [sym__word_no_digit] = ACTIONS(5043), - [sym__digits] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), - [sym__code_span_start] = ACTIONS(5043), - [sym__emphasis_open_star] = ACTIONS(5043), - [sym__emphasis_open_underscore] = ACTIONS(5043), - [sym__strikeout_open] = ACTIONS(5043), - [sym__latex_span_start] = ACTIONS(5043), - [sym__single_quote_open] = ACTIONS(5043), - [sym__double_quote_open] = ACTIONS(5043), - [sym__superscript_open] = ACTIONS(5043), - [sym__subscript_open] = ACTIONS(5043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5043), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5043), - [sym__cite_author_in_text] = ACTIONS(5043), - [sym__cite_suppress_author] = ACTIONS(5043), - [sym__shortcode_open_escaped] = ACTIONS(5043), - [sym__shortcode_open] = ACTIONS(5043), - [sym__unclosed_span] = ACTIONS(5043), - [sym__strong_emphasis_open_star] = ACTIONS(5043), - [sym__strong_emphasis_open_underscore] = ACTIONS(5043), + [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__double_quote_close] = 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(1332)] = { - [sym__backslash_escape] = ACTIONS(5047), - [sym_entity_reference] = ACTIONS(5047), - [sym_numeric_character_reference] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(5047), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [sym__newline_token] = ACTIONS(5047), - [aux_sym_insert_token1] = ACTIONS(5047), - [aux_sym_insert_token2] = ACTIONS(5047), - [aux_sym_delete_token1] = ACTIONS(5047), - [aux_sym_highlight_token1] = ACTIONS(5047), - [aux_sym_edit_comment_token1] = ACTIONS(5047), - [anon_sym_CARET_LBRACK] = ACTIONS(5047), - [anon_sym_LBRACK_CARET] = ACTIONS(5047), - [sym_uri_autolink] = ACTIONS(5047), - [sym_email_autolink] = ACTIONS(5047), - [sym__whitespace_ge_2] = ACTIONS(5049), - [aux_sym__whitespace_token1] = ACTIONS(5049), - [sym__word_no_digit] = ACTIONS(5047), - [sym__digits] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5047), - [sym__code_span_start] = ACTIONS(5047), - [sym__emphasis_open_star] = ACTIONS(5047), - [sym__emphasis_open_underscore] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5047), - [sym__latex_span_start] = ACTIONS(5047), - [sym__single_quote_open] = ACTIONS(5047), - [sym__double_quote_open] = ACTIONS(5047), - [sym__superscript_open] = ACTIONS(5047), - [sym__subscript_open] = ACTIONS(5047), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5047), - [sym__cite_author_in_text] = ACTIONS(5047), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__shortcode_open_escaped] = ACTIONS(5047), - [sym__shortcode_open] = ACTIONS(5047), - [sym__unclosed_span] = ACTIONS(5047), - [sym__strong_emphasis_open_star] = ACTIONS(5047), - [sym__strong_emphasis_open_underscore] = ACTIONS(5047), - }, - [STATE(1333)] = { - [sym__backslash_escape] = ACTIONS(5051), - [sym_entity_reference] = ACTIONS(5051), - [sym_numeric_character_reference] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_BSLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [sym__newline_token] = ACTIONS(5051), - [aux_sym_insert_token1] = ACTIONS(5051), - [aux_sym_insert_token2] = ACTIONS(5051), - [aux_sym_delete_token1] = ACTIONS(5051), - [aux_sym_highlight_token1] = ACTIONS(5051), - [aux_sym_edit_comment_token1] = ACTIONS(5051), - [anon_sym_CARET_LBRACK] = ACTIONS(5051), - [anon_sym_LBRACK_CARET] = ACTIONS(5051), - [sym_uri_autolink] = ACTIONS(5051), - [sym_email_autolink] = ACTIONS(5051), - [sym__whitespace_ge_2] = ACTIONS(5053), - [aux_sym__whitespace_token1] = ACTIONS(5053), - [sym__word_no_digit] = ACTIONS(5051), - [sym__digits] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5051), - [sym__code_span_start] = ACTIONS(5051), - [sym__emphasis_open_star] = ACTIONS(5051), - [sym__emphasis_open_underscore] = ACTIONS(5051), - [sym__strikeout_open] = ACTIONS(5051), - [sym__latex_span_start] = ACTIONS(5051), - [sym__single_quote_open] = ACTIONS(5051), - [sym__double_quote_open] = ACTIONS(5051), - [sym__superscript_open] = ACTIONS(5051), - [sym__subscript_open] = ACTIONS(5051), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5051), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5051), - [sym__cite_author_in_text] = ACTIONS(5051), - [sym__cite_suppress_author] = ACTIONS(5051), - [sym__shortcode_open_escaped] = ACTIONS(5051), - [sym__shortcode_open] = ACTIONS(5051), - [sym__unclosed_span] = ACTIONS(5051), - [sym__strong_emphasis_open_star] = ACTIONS(5051), - [sym__strong_emphasis_open_underscore] = ACTIONS(5051), - }, - [STATE(1334)] = { - [sym__backslash_escape] = ACTIONS(5055), - [sym_entity_reference] = ACTIONS(5055), - [sym_numeric_character_reference] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(5055), - [anon_sym_POUND] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_BSLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_BQUOTE] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [sym__newline_token] = ACTIONS(5055), - [aux_sym_insert_token1] = ACTIONS(5055), - [aux_sym_insert_token2] = ACTIONS(5055), - [aux_sym_delete_token1] = ACTIONS(5055), - [aux_sym_highlight_token1] = ACTIONS(5055), - [aux_sym_edit_comment_token1] = ACTIONS(5055), - [anon_sym_CARET_LBRACK] = ACTIONS(5055), - [anon_sym_LBRACK_CARET] = ACTIONS(5055), - [sym_uri_autolink] = ACTIONS(5055), - [sym_email_autolink] = ACTIONS(5055), - [sym__whitespace_ge_2] = ACTIONS(5057), - [aux_sym__whitespace_token1] = ACTIONS(5057), - [sym__word_no_digit] = ACTIONS(5055), - [sym__digits] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5055), - [sym__code_span_start] = ACTIONS(5055), - [sym__emphasis_open_star] = ACTIONS(5055), - [sym__emphasis_open_underscore] = ACTIONS(5055), - [sym__strikeout_open] = ACTIONS(5055), - [sym__latex_span_start] = ACTIONS(5055), - [sym__single_quote_open] = ACTIONS(5055), - [sym__double_quote_open] = ACTIONS(5055), - [sym__superscript_open] = ACTIONS(5055), - [sym__subscript_open] = ACTIONS(5055), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5055), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5055), - [sym__cite_author_in_text] = ACTIONS(5055), - [sym__cite_suppress_author] = ACTIONS(5055), - [sym__shortcode_open_escaped] = ACTIONS(5055), - [sym__shortcode_open] = ACTIONS(5055), - [sym__unclosed_span] = ACTIONS(5055), - [sym__strong_emphasis_open_star] = ACTIONS(5055), - [sym__strong_emphasis_open_underscore] = ACTIONS(5055), - }, - [STATE(1335)] = { - [sym__backslash_escape] = ACTIONS(5059), - [sym_entity_reference] = ACTIONS(5059), - [sym_numeric_character_reference] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_DQUOTE] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_BSLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [sym__newline_token] = ACTIONS(5059), - [aux_sym_insert_token1] = ACTIONS(5059), - [aux_sym_insert_token2] = ACTIONS(5059), - [aux_sym_delete_token1] = ACTIONS(5059), - [aux_sym_highlight_token1] = ACTIONS(5059), - [aux_sym_edit_comment_token1] = ACTIONS(5059), - [anon_sym_CARET_LBRACK] = ACTIONS(5059), - [anon_sym_LBRACK_CARET] = ACTIONS(5059), - [sym_uri_autolink] = ACTIONS(5059), - [sym_email_autolink] = ACTIONS(5059), - [sym__whitespace_ge_2] = ACTIONS(5061), - [aux_sym__whitespace_token1] = ACTIONS(5061), - [sym__word_no_digit] = ACTIONS(5059), - [sym__digits] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5059), - [sym__code_span_start] = ACTIONS(5059), - [sym__emphasis_open_star] = ACTIONS(5059), - [sym__emphasis_open_underscore] = ACTIONS(5059), - [sym__strikeout_open] = ACTIONS(5059), - [sym__latex_span_start] = ACTIONS(5059), - [sym__single_quote_open] = ACTIONS(5059), - [sym__double_quote_open] = ACTIONS(5059), - [sym__superscript_open] = ACTIONS(5059), - [sym__subscript_open] = ACTIONS(5059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5059), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5059), - [sym__cite_author_in_text] = ACTIONS(5059), - [sym__cite_suppress_author] = ACTIONS(5059), - [sym__shortcode_open_escaped] = ACTIONS(5059), - [sym__shortcode_open] = ACTIONS(5059), - [sym__unclosed_span] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5059), - [sym__strong_emphasis_open_underscore] = ACTIONS(5059), - }, - [STATE(1336)] = { - [sym__backslash_escape] = ACTIONS(5063), - [sym_entity_reference] = ACTIONS(5063), - [sym_numeric_character_reference] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_BSLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_BQUOTE] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [sym__newline_token] = ACTIONS(5063), - [aux_sym_insert_token1] = ACTIONS(5063), - [aux_sym_insert_token2] = ACTIONS(5063), - [aux_sym_delete_token1] = ACTIONS(5063), - [aux_sym_highlight_token1] = ACTIONS(5063), - [aux_sym_edit_comment_token1] = ACTIONS(5063), - [anon_sym_CARET_LBRACK] = ACTIONS(5063), - [anon_sym_LBRACK_CARET] = ACTIONS(5063), - [sym_uri_autolink] = ACTIONS(5063), - [sym_email_autolink] = ACTIONS(5063), - [sym__whitespace_ge_2] = ACTIONS(5065), - [aux_sym__whitespace_token1] = ACTIONS(5065), - [sym__word_no_digit] = ACTIONS(5063), - [sym__digits] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5063), - [sym__code_span_start] = ACTIONS(5063), - [sym__emphasis_open_star] = ACTIONS(5063), - [sym__emphasis_open_underscore] = ACTIONS(5063), - [sym__strikeout_open] = ACTIONS(5063), - [sym__latex_span_start] = ACTIONS(5063), - [sym__single_quote_open] = ACTIONS(5063), - [sym__double_quote_open] = ACTIONS(5063), - [sym__superscript_open] = ACTIONS(5063), - [sym__subscript_open] = ACTIONS(5063), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5063), - [sym__cite_author_in_text] = ACTIONS(5063), - [sym__cite_suppress_author] = ACTIONS(5063), - [sym__shortcode_open_escaped] = ACTIONS(5063), - [sym__shortcode_open] = ACTIONS(5063), - [sym__unclosed_span] = ACTIONS(5063), - [sym__strong_emphasis_open_star] = ACTIONS(5063), - [sym__strong_emphasis_open_underscore] = ACTIONS(5063), - }, - [STATE(1337)] = { - [sym__backslash_escape] = ACTIONS(5067), - [sym_entity_reference] = ACTIONS(5067), - [sym_numeric_character_reference] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DQUOTE] = ACTIONS(5067), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_COLON] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [sym__newline_token] = ACTIONS(5067), - [aux_sym_insert_token1] = ACTIONS(5067), - [aux_sym_insert_token2] = ACTIONS(5067), - [aux_sym_delete_token1] = ACTIONS(5067), - [aux_sym_highlight_token1] = ACTIONS(5067), - [aux_sym_edit_comment_token1] = ACTIONS(5067), - [anon_sym_CARET_LBRACK] = ACTIONS(5067), - [anon_sym_LBRACK_CARET] = ACTIONS(5067), - [sym_uri_autolink] = ACTIONS(5067), - [sym_email_autolink] = ACTIONS(5067), - [sym__whitespace_ge_2] = ACTIONS(5069), - [aux_sym__whitespace_token1] = ACTIONS(5069), - [sym__word_no_digit] = ACTIONS(5067), - [sym__digits] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5067), - [sym__code_span_start] = ACTIONS(5067), - [sym__emphasis_open_star] = ACTIONS(5067), - [sym__emphasis_open_underscore] = ACTIONS(5067), - [sym__strikeout_open] = ACTIONS(5067), - [sym__latex_span_start] = ACTIONS(5067), - [sym__single_quote_open] = ACTIONS(5067), - [sym__double_quote_open] = ACTIONS(5067), - [sym__superscript_open] = ACTIONS(5067), - [sym__subscript_open] = ACTIONS(5067), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5067), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5067), - [sym__cite_author_in_text] = ACTIONS(5067), - [sym__cite_suppress_author] = ACTIONS(5067), - [sym__shortcode_open_escaped] = ACTIONS(5067), - [sym__shortcode_open] = ACTIONS(5067), - [sym__unclosed_span] = ACTIONS(5067), - [sym__strong_emphasis_open_star] = ACTIONS(5067), - [sym__strong_emphasis_open_underscore] = ACTIONS(5067), - }, - [STATE(1338)] = { - [sym__backslash_escape] = ACTIONS(5071), - [sym_entity_reference] = ACTIONS(5071), - [sym_numeric_character_reference] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_POUND] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [sym__newline_token] = ACTIONS(5071), - [aux_sym_insert_token1] = ACTIONS(5071), - [aux_sym_insert_token2] = ACTIONS(5071), - [aux_sym_delete_token1] = ACTIONS(5071), - [aux_sym_highlight_token1] = ACTIONS(5071), - [aux_sym_edit_comment_token1] = ACTIONS(5071), - [anon_sym_CARET_LBRACK] = ACTIONS(5071), - [anon_sym_LBRACK_CARET] = ACTIONS(5071), - [sym_uri_autolink] = ACTIONS(5071), - [sym_email_autolink] = ACTIONS(5071), - [sym__whitespace_ge_2] = ACTIONS(5073), - [aux_sym__whitespace_token1] = ACTIONS(5073), - [sym__word_no_digit] = ACTIONS(5071), - [sym__digits] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5071), - [sym__code_span_start] = ACTIONS(5071), - [sym__emphasis_open_star] = ACTIONS(5071), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym__strikeout_open] = ACTIONS(5071), - [sym__latex_span_start] = ACTIONS(5071), - [sym__single_quote_open] = ACTIONS(5071), - [sym__double_quote_open] = ACTIONS(5071), - [sym__superscript_open] = ACTIONS(5071), - [sym__subscript_open] = ACTIONS(5071), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5071), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5071), - [sym__cite_author_in_text] = ACTIONS(5071), - [sym__cite_suppress_author] = ACTIONS(5071), - [sym__shortcode_open_escaped] = ACTIONS(5071), - [sym__shortcode_open] = ACTIONS(5071), - [sym__unclosed_span] = ACTIONS(5071), - [sym__strong_emphasis_open_star] = ACTIONS(5071), - [sym__strong_emphasis_open_underscore] = ACTIONS(5071), - }, - [STATE(1339)] = { - [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_STAR] = 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__double_quote_close] = 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(1340)] = { - [sym__backslash_escape] = ACTIONS(5079), - [sym_entity_reference] = ACTIONS(5079), - [sym_numeric_character_reference] = ACTIONS(5079), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_DQUOTE] = ACTIONS(5079), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_QMARK] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BSLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5079), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [sym__newline_token] = ACTIONS(5079), - [aux_sym_insert_token1] = ACTIONS(5079), - [aux_sym_insert_token2] = ACTIONS(5079), - [aux_sym_delete_token1] = ACTIONS(5079), - [aux_sym_highlight_token1] = ACTIONS(5079), - [aux_sym_edit_comment_token1] = ACTIONS(5079), - [anon_sym_CARET_LBRACK] = ACTIONS(5079), - [anon_sym_LBRACK_CARET] = ACTIONS(5079), - [sym_uri_autolink] = ACTIONS(5079), - [sym_email_autolink] = ACTIONS(5079), - [sym__whitespace_ge_2] = ACTIONS(5081), - [aux_sym__whitespace_token1] = ACTIONS(5081), - [sym__word_no_digit] = ACTIONS(5079), - [sym__digits] = ACTIONS(5079), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5079), - [sym__code_span_start] = ACTIONS(5079), - [sym__emphasis_open_star] = ACTIONS(5079), - [sym__emphasis_open_underscore] = ACTIONS(5079), - [sym__strikeout_open] = ACTIONS(5079), - [sym__latex_span_start] = ACTIONS(5079), - [sym__single_quote_open] = ACTIONS(5079), - [sym__double_quote_open] = ACTIONS(5079), - [sym__superscript_open] = ACTIONS(5079), - [sym__subscript_open] = ACTIONS(5079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5079), - [sym__cite_author_in_text] = ACTIONS(5079), - [sym__cite_suppress_author] = ACTIONS(5079), - [sym__shortcode_open_escaped] = ACTIONS(5079), - [sym__shortcode_open] = ACTIONS(5079), - [sym__unclosed_span] = ACTIONS(5079), - [sym__strong_emphasis_open_star] = ACTIONS(5079), - [sym__strong_emphasis_open_underscore] = ACTIONS(5079), - }, - [STATE(1341)] = { - [sym__backslash_escape] = ACTIONS(5083), - [sym_entity_reference] = ACTIONS(5083), - [sym_numeric_character_reference] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOT] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_QMARK] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_BSLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym_BQUOTE] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [sym__newline_token] = ACTIONS(5083), - [aux_sym_insert_token1] = ACTIONS(5083), - [aux_sym_insert_token2] = ACTIONS(5083), - [aux_sym_delete_token1] = ACTIONS(5083), - [aux_sym_highlight_token1] = ACTIONS(5083), - [aux_sym_edit_comment_token1] = ACTIONS(5083), - [anon_sym_CARET_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_CARET] = ACTIONS(5083), - [sym_uri_autolink] = ACTIONS(5083), - [sym_email_autolink] = ACTIONS(5083), - [sym__whitespace_ge_2] = ACTIONS(5085), - [aux_sym__whitespace_token1] = ACTIONS(5085), - [sym__word_no_digit] = ACTIONS(5083), - [sym__digits] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5083), - [sym__code_span_start] = ACTIONS(5083), - [sym__emphasis_open_star] = ACTIONS(5083), - [sym__emphasis_open_underscore] = ACTIONS(5083), - [sym__strikeout_open] = ACTIONS(5083), - [sym__latex_span_start] = ACTIONS(5083), - [sym__single_quote_open] = ACTIONS(5083), - [sym__double_quote_open] = ACTIONS(5083), - [sym__superscript_open] = ACTIONS(5083), - [sym__subscript_open] = ACTIONS(5083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5083), - [sym__cite_author_in_text] = ACTIONS(5083), - [sym__cite_suppress_author] = ACTIONS(5083), - [sym__shortcode_open_escaped] = ACTIONS(5083), - [sym__shortcode_open] = ACTIONS(5083), - [sym__unclosed_span] = ACTIONS(5083), - [sym__strong_emphasis_open_star] = ACTIONS(5083), - [sym__strong_emphasis_open_underscore] = ACTIONS(5083), - }, - [STATE(1342)] = { - [sym__backslash_escape] = ACTIONS(5087), - [sym_entity_reference] = ACTIONS(5087), - [sym_numeric_character_reference] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_DQUOTE] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_AMP] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_QMARK] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym_BQUOTE] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_PIPE] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [sym__newline_token] = ACTIONS(5087), - [aux_sym_insert_token1] = ACTIONS(5087), - [aux_sym_insert_token2] = ACTIONS(5087), - [aux_sym_delete_token1] = ACTIONS(5087), - [aux_sym_highlight_token1] = ACTIONS(5087), - [aux_sym_edit_comment_token1] = ACTIONS(5087), - [anon_sym_CARET_LBRACK] = ACTIONS(5087), - [anon_sym_LBRACK_CARET] = ACTIONS(5087), - [sym_uri_autolink] = ACTIONS(5087), - [sym_email_autolink] = ACTIONS(5087), - [sym__whitespace_ge_2] = ACTIONS(5089), - [aux_sym__whitespace_token1] = ACTIONS(5089), - [sym__word_no_digit] = ACTIONS(5087), - [sym__digits] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5087), - [sym__code_span_start] = ACTIONS(5087), - [sym__emphasis_open_star] = ACTIONS(5087), - [sym__emphasis_open_underscore] = ACTIONS(5087), - [sym__strikeout_open] = ACTIONS(5087), - [sym__latex_span_start] = ACTIONS(5087), - [sym__single_quote_open] = ACTIONS(5087), - [sym__double_quote_open] = ACTIONS(5087), - [sym__superscript_open] = ACTIONS(5087), - [sym__subscript_open] = ACTIONS(5087), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5087), - [sym__cite_author_in_text] = ACTIONS(5087), - [sym__cite_suppress_author] = ACTIONS(5087), - [sym__shortcode_open_escaped] = ACTIONS(5087), - [sym__shortcode_open] = ACTIONS(5087), - [sym__unclosed_span] = ACTIONS(5087), - [sym__strong_emphasis_open_star] = ACTIONS(5087), - [sym__strong_emphasis_open_underscore] = ACTIONS(5087), - }, - [STATE(1343)] = { - [sym__backslash_escape] = ACTIONS(5035), - [sym_entity_reference] = ACTIONS(5035), - [sym_numeric_character_reference] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_DQUOTE] = ACTIONS(5035), - [anon_sym_POUND] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_BSLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [sym__newline_token] = ACTIONS(5035), - [aux_sym_insert_token1] = ACTIONS(5035), - [aux_sym_delete_token1] = ACTIONS(5035), - [aux_sym_highlight_token1] = ACTIONS(5035), - [aux_sym_edit_comment_token1] = ACTIONS(5035), - [anon_sym_CARET_LBRACK] = ACTIONS(5035), - [anon_sym_LBRACK_CARET] = ACTIONS(5035), - [sym_uri_autolink] = ACTIONS(5035), - [sym_email_autolink] = ACTIONS(5035), - [sym__whitespace_ge_2] = ACTIONS(5035), - [aux_sym__whitespace_token1] = ACTIONS(5037), - [sym__word_no_digit] = ACTIONS(5035), - [sym__digits] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5035), - [sym__code_span_start] = ACTIONS(5035), - [sym__emphasis_open_star] = ACTIONS(5035), - [sym__emphasis_open_underscore] = ACTIONS(5035), - [sym__emphasis_close_star] = ACTIONS(5035), - [sym__strikeout_open] = ACTIONS(5035), - [sym__latex_span_start] = ACTIONS(5035), - [sym__single_quote_open] = ACTIONS(5035), - [sym__double_quote_open] = ACTIONS(5035), - [sym__superscript_open] = ACTIONS(5035), - [sym__subscript_open] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5035), - [sym__cite_author_in_text] = ACTIONS(5035), - [sym__cite_suppress_author] = ACTIONS(5035), - [sym__shortcode_open_escaped] = ACTIONS(5035), - [sym__shortcode_open] = ACTIONS(5035), - [sym__unclosed_span] = ACTIONS(5035), - [sym__strong_emphasis_open_star] = ACTIONS(5035), - [sym__strong_emphasis_open_underscore] = ACTIONS(5035), - }, - [STATE(1344)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_insert_token2] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4799), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), - }, - [STATE(1345)] = { - [sym__backslash_escape] = ACTIONS(5039), - [sym_entity_reference] = ACTIONS(5039), - [sym_numeric_character_reference] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(5039), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_BSLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [sym__newline_token] = ACTIONS(5039), - [aux_sym_insert_token1] = ACTIONS(5039), - [aux_sym_delete_token1] = ACTIONS(5039), - [aux_sym_highlight_token1] = ACTIONS(5039), - [aux_sym_edit_comment_token1] = ACTIONS(5039), - [anon_sym_CARET_LBRACK] = ACTIONS(5039), - [anon_sym_LBRACK_CARET] = ACTIONS(5039), - [sym_uri_autolink] = ACTIONS(5039), - [sym_email_autolink] = ACTIONS(5039), - [sym__whitespace_ge_2] = ACTIONS(5039), - [aux_sym__whitespace_token1] = ACTIONS(5041), - [sym__word_no_digit] = ACTIONS(5039), - [sym__digits] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5039), - [sym__code_span_start] = ACTIONS(5039), - [sym__emphasis_open_star] = ACTIONS(5039), - [sym__emphasis_open_underscore] = ACTIONS(5039), - [sym__emphasis_close_star] = ACTIONS(5039), - [sym__strikeout_open] = ACTIONS(5039), - [sym__latex_span_start] = ACTIONS(5039), - [sym__single_quote_open] = ACTIONS(5039), - [sym__double_quote_open] = ACTIONS(5039), - [sym__superscript_open] = ACTIONS(5039), - [sym__subscript_open] = ACTIONS(5039), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5039), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5039), - [sym__cite_author_in_text] = ACTIONS(5039), - [sym__cite_suppress_author] = ACTIONS(5039), - [sym__shortcode_open_escaped] = ACTIONS(5039), - [sym__shortcode_open] = ACTIONS(5039), - [sym__unclosed_span] = ACTIONS(5039), - [sym__strong_emphasis_open_star] = ACTIONS(5039), - [sym__strong_emphasis_open_underscore] = ACTIONS(5039), - }, - [STATE(1346)] = { - [sym__backslash_escape] = ACTIONS(5091), - [sym_entity_reference] = ACTIONS(5091), - [sym_numeric_character_reference] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(5091), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_BSLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym_BQUOTE] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [sym__newline_token] = ACTIONS(5091), - [aux_sym_insert_token1] = ACTIONS(5091), - [aux_sym_insert_token2] = ACTIONS(5091), - [aux_sym_delete_token1] = ACTIONS(5091), - [aux_sym_highlight_token1] = ACTIONS(5091), - [aux_sym_edit_comment_token1] = ACTIONS(5091), - [anon_sym_CARET_LBRACK] = ACTIONS(5091), - [anon_sym_LBRACK_CARET] = ACTIONS(5091), - [sym_uri_autolink] = ACTIONS(5091), - [sym_email_autolink] = ACTIONS(5091), - [sym__whitespace_ge_2] = ACTIONS(5093), - [aux_sym__whitespace_token1] = ACTIONS(5093), - [sym__word_no_digit] = ACTIONS(5091), - [sym__digits] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), - [sym__code_span_start] = ACTIONS(5091), - [sym__emphasis_open_star] = ACTIONS(5091), - [sym__emphasis_open_underscore] = ACTIONS(5091), - [sym__strikeout_open] = ACTIONS(5091), - [sym__latex_span_start] = ACTIONS(5091), - [sym__single_quote_open] = ACTIONS(5091), - [sym__double_quote_open] = ACTIONS(5091), - [sym__superscript_open] = ACTIONS(5091), - [sym__subscript_open] = ACTIONS(5091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5091), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5091), - [sym__cite_author_in_text] = ACTIONS(5091), - [sym__cite_suppress_author] = ACTIONS(5091), - [sym__shortcode_open_escaped] = ACTIONS(5091), - [sym__shortcode_open] = ACTIONS(5091), - [sym__unclosed_span] = ACTIONS(5091), - [sym__strong_emphasis_open_star] = ACTIONS(5091), - [sym__strong_emphasis_open_underscore] = ACTIONS(5091), - }, - [STATE(1347)] = { - [sym__backslash_escape] = ACTIONS(5043), - [sym_entity_reference] = ACTIONS(5043), - [sym_numeric_character_reference] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_DQUOTE] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_QMARK] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_BSLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [sym__newline_token] = ACTIONS(5043), - [aux_sym_insert_token1] = ACTIONS(5043), - [aux_sym_delete_token1] = ACTIONS(5043), - [aux_sym_highlight_token1] = ACTIONS(5043), - [aux_sym_edit_comment_token1] = ACTIONS(5043), - [anon_sym_CARET_LBRACK] = ACTIONS(5043), - [anon_sym_LBRACK_CARET] = ACTIONS(5043), - [sym_uri_autolink] = ACTIONS(5043), - [sym_email_autolink] = ACTIONS(5043), - [sym__whitespace_ge_2] = ACTIONS(5043), - [aux_sym__whitespace_token1] = ACTIONS(5045), - [sym__word_no_digit] = ACTIONS(5043), - [sym__digits] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), - [sym__code_span_start] = ACTIONS(5043), - [sym__emphasis_open_star] = ACTIONS(5043), - [sym__emphasis_open_underscore] = ACTIONS(5043), - [sym__emphasis_close_star] = ACTIONS(5043), - [sym__strikeout_open] = ACTIONS(5043), - [sym__latex_span_start] = ACTIONS(5043), - [sym__single_quote_open] = ACTIONS(5043), - [sym__double_quote_open] = ACTIONS(5043), - [sym__superscript_open] = ACTIONS(5043), - [sym__subscript_open] = ACTIONS(5043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5043), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5043), - [sym__cite_author_in_text] = ACTIONS(5043), - [sym__cite_suppress_author] = ACTIONS(5043), - [sym__shortcode_open_escaped] = ACTIONS(5043), - [sym__shortcode_open] = ACTIONS(5043), - [sym__unclosed_span] = ACTIONS(5043), - [sym__strong_emphasis_open_star] = ACTIONS(5043), - [sym__strong_emphasis_open_underscore] = ACTIONS(5043), - }, - [STATE(1348)] = { - [sym__backslash_escape] = ACTIONS(5047), - [sym_entity_reference] = ACTIONS(5047), - [sym_numeric_character_reference] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(5047), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [sym__newline_token] = ACTIONS(5047), - [aux_sym_insert_token1] = ACTIONS(5047), - [aux_sym_delete_token1] = ACTIONS(5047), - [aux_sym_highlight_token1] = ACTIONS(5047), - [aux_sym_edit_comment_token1] = ACTIONS(5047), - [anon_sym_CARET_LBRACK] = ACTIONS(5047), - [anon_sym_LBRACK_CARET] = ACTIONS(5047), - [sym_uri_autolink] = ACTIONS(5047), - [sym_email_autolink] = ACTIONS(5047), - [sym__whitespace_ge_2] = ACTIONS(5047), - [aux_sym__whitespace_token1] = ACTIONS(5049), - [sym__word_no_digit] = ACTIONS(5047), - [sym__digits] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5047), - [sym__code_span_start] = ACTIONS(5047), - [sym__emphasis_open_star] = ACTIONS(5047), - [sym__emphasis_open_underscore] = ACTIONS(5047), - [sym__emphasis_close_star] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5047), - [sym__latex_span_start] = ACTIONS(5047), - [sym__single_quote_open] = ACTIONS(5047), - [sym__double_quote_open] = ACTIONS(5047), - [sym__superscript_open] = ACTIONS(5047), - [sym__subscript_open] = ACTIONS(5047), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5047), - [sym__cite_author_in_text] = ACTIONS(5047), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__shortcode_open_escaped] = ACTIONS(5047), - [sym__shortcode_open] = ACTIONS(5047), - [sym__unclosed_span] = ACTIONS(5047), - [sym__strong_emphasis_open_star] = ACTIONS(5047), - [sym__strong_emphasis_open_underscore] = ACTIONS(5047), - }, - [STATE(1349)] = { - [sym__backslash_escape] = ACTIONS(5095), - [sym_entity_reference] = ACTIONS(5095), - [sym_numeric_character_reference] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_BSLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym_BQUOTE] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [sym__newline_token] = ACTIONS(5095), - [aux_sym_insert_token1] = ACTIONS(5095), - [aux_sym_insert_token2] = ACTIONS(5095), - [aux_sym_delete_token1] = ACTIONS(5095), - [aux_sym_highlight_token1] = ACTIONS(5095), - [aux_sym_edit_comment_token1] = ACTIONS(5095), - [anon_sym_CARET_LBRACK] = ACTIONS(5095), - [anon_sym_LBRACK_CARET] = ACTIONS(5095), - [sym_uri_autolink] = ACTIONS(5095), - [sym_email_autolink] = ACTIONS(5095), - [sym__whitespace_ge_2] = ACTIONS(5097), - [aux_sym__whitespace_token1] = ACTIONS(5097), - [sym__word_no_digit] = ACTIONS(5095), - [sym__digits] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5095), - [sym__code_span_start] = ACTIONS(5095), - [sym__emphasis_open_star] = ACTIONS(5095), - [sym__emphasis_open_underscore] = ACTIONS(5095), - [sym__strikeout_open] = ACTIONS(5095), - [sym__latex_span_start] = ACTIONS(5095), - [sym__single_quote_open] = ACTIONS(5095), - [sym__double_quote_open] = ACTIONS(5095), - [sym__superscript_open] = ACTIONS(5095), - [sym__subscript_open] = ACTIONS(5095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5095), - [sym__cite_author_in_text] = ACTIONS(5095), - [sym__cite_suppress_author] = ACTIONS(5095), - [sym__shortcode_open_escaped] = ACTIONS(5095), - [sym__shortcode_open] = ACTIONS(5095), - [sym__unclosed_span] = ACTIONS(5095), - [sym__strong_emphasis_open_star] = ACTIONS(5095), - [sym__strong_emphasis_open_underscore] = ACTIONS(5095), - }, - [STATE(1350)] = { - [sym__backslash_escape] = ACTIONS(5099), - [sym_entity_reference] = ACTIONS(5099), - [sym_numeric_character_reference] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [sym__newline_token] = ACTIONS(5099), - [aux_sym_insert_token1] = ACTIONS(5099), - [aux_sym_insert_token2] = ACTIONS(5099), - [aux_sym_delete_token1] = ACTIONS(5099), - [aux_sym_highlight_token1] = ACTIONS(5099), - [aux_sym_edit_comment_token1] = ACTIONS(5099), - [anon_sym_CARET_LBRACK] = ACTIONS(5099), - [anon_sym_LBRACK_CARET] = ACTIONS(5099), - [sym_uri_autolink] = ACTIONS(5099), - [sym_email_autolink] = ACTIONS(5099), - [sym__whitespace_ge_2] = ACTIONS(5101), - [aux_sym__whitespace_token1] = ACTIONS(5101), - [sym__word_no_digit] = ACTIONS(5099), - [sym__digits] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5099), - [sym__code_span_start] = ACTIONS(5099), - [sym__emphasis_open_star] = ACTIONS(5099), - [sym__emphasis_open_underscore] = ACTIONS(5099), - [sym__strikeout_open] = ACTIONS(5099), - [sym__latex_span_start] = ACTIONS(5099), - [sym__single_quote_open] = ACTIONS(5099), - [sym__double_quote_open] = ACTIONS(5099), - [sym__superscript_open] = ACTIONS(5099), - [sym__subscript_open] = ACTIONS(5099), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5099), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5099), - [sym__cite_author_in_text] = ACTIONS(5099), - [sym__cite_suppress_author] = ACTIONS(5099), - [sym__shortcode_open_escaped] = ACTIONS(5099), - [sym__shortcode_open] = ACTIONS(5099), - [sym__unclosed_span] = ACTIONS(5099), - [sym__strong_emphasis_open_star] = ACTIONS(5099), - [sym__strong_emphasis_open_underscore] = ACTIONS(5099), - }, - [STATE(1351)] = { - [sym__backslash_escape] = ACTIONS(5103), - [sym_entity_reference] = ACTIONS(5103), - [sym_numeric_character_reference] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(5103), - [anon_sym_POUND] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_BSLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [sym__newline_token] = ACTIONS(5103), - [aux_sym_insert_token1] = ACTIONS(5103), - [aux_sym_insert_token2] = ACTIONS(5103), - [aux_sym_delete_token1] = ACTIONS(5103), - [aux_sym_highlight_token1] = ACTIONS(5103), - [aux_sym_edit_comment_token1] = ACTIONS(5103), - [anon_sym_CARET_LBRACK] = ACTIONS(5103), - [anon_sym_LBRACK_CARET] = ACTIONS(5103), - [sym_uri_autolink] = ACTIONS(5103), - [sym_email_autolink] = ACTIONS(5103), - [sym__whitespace_ge_2] = ACTIONS(5105), - [aux_sym__whitespace_token1] = ACTIONS(5105), - [sym__word_no_digit] = ACTIONS(5103), - [sym__digits] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5103), - [sym__code_span_start] = ACTIONS(5103), - [sym__emphasis_open_star] = ACTIONS(5103), - [sym__emphasis_open_underscore] = ACTIONS(5103), - [sym__strikeout_open] = ACTIONS(5103), - [sym__latex_span_start] = ACTIONS(5103), - [sym__single_quote_open] = ACTIONS(5103), - [sym__double_quote_open] = ACTIONS(5103), - [sym__superscript_open] = ACTIONS(5103), - [sym__subscript_open] = ACTIONS(5103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5103), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5103), - [sym__cite_author_in_text] = ACTIONS(5103), - [sym__cite_suppress_author] = ACTIONS(5103), - [sym__shortcode_open_escaped] = ACTIONS(5103), - [sym__shortcode_open] = ACTIONS(5103), - [sym__unclosed_span] = ACTIONS(5103), - [sym__strong_emphasis_open_star] = ACTIONS(5103), - [sym__strong_emphasis_open_underscore] = ACTIONS(5103), - }, - [STATE(1352)] = { - [sym__backslash_escape] = ACTIONS(5107), - [sym_entity_reference] = ACTIONS(5107), - [sym_numeric_character_reference] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_COLON] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_BSLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_BQUOTE] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_PIPE] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [sym__newline_token] = ACTIONS(5107), - [aux_sym_insert_token1] = ACTIONS(5107), - [aux_sym_insert_token2] = ACTIONS(5107), - [aux_sym_delete_token1] = ACTIONS(5107), - [aux_sym_highlight_token1] = ACTIONS(5107), - [aux_sym_edit_comment_token1] = ACTIONS(5107), - [anon_sym_CARET_LBRACK] = ACTIONS(5107), - [anon_sym_LBRACK_CARET] = ACTIONS(5107), - [sym_uri_autolink] = ACTIONS(5107), - [sym_email_autolink] = ACTIONS(5107), - [sym__whitespace_ge_2] = ACTIONS(5109), - [aux_sym__whitespace_token1] = ACTIONS(5109), - [sym__word_no_digit] = ACTIONS(5107), - [sym__digits] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5107), - [sym__code_span_start] = ACTIONS(5107), - [sym__emphasis_open_star] = ACTIONS(5107), - [sym__emphasis_open_underscore] = ACTIONS(5107), - [sym__strikeout_open] = ACTIONS(5107), - [sym__latex_span_start] = ACTIONS(5107), - [sym__single_quote_open] = ACTIONS(5107), - [sym__double_quote_open] = ACTIONS(5107), - [sym__superscript_open] = ACTIONS(5107), - [sym__subscript_open] = ACTIONS(5107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5107), - [sym__cite_author_in_text] = ACTIONS(5107), - [sym__cite_suppress_author] = ACTIONS(5107), - [sym__shortcode_open_escaped] = ACTIONS(5107), - [sym__shortcode_open] = ACTIONS(5107), - [sym__unclosed_span] = ACTIONS(5107), - [sym__strong_emphasis_open_star] = ACTIONS(5107), - [sym__strong_emphasis_open_underscore] = ACTIONS(5107), - }, - [STATE(1353)] = { - [sym__backslash_escape] = ACTIONS(5111), - [sym_entity_reference] = ACTIONS(5111), - [sym_numeric_character_reference] = ACTIONS(5111), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym_BQUOTE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [sym__newline_token] = ACTIONS(5111), - [aux_sym_insert_token1] = ACTIONS(5111), - [aux_sym_insert_token2] = ACTIONS(5111), - [aux_sym_delete_token1] = ACTIONS(5111), - [aux_sym_highlight_token1] = ACTIONS(5111), - [aux_sym_edit_comment_token1] = ACTIONS(5111), - [anon_sym_CARET_LBRACK] = ACTIONS(5111), - [anon_sym_LBRACK_CARET] = ACTIONS(5111), - [sym_uri_autolink] = ACTIONS(5111), - [sym_email_autolink] = ACTIONS(5111), - [sym__whitespace_ge_2] = ACTIONS(5113), - [aux_sym__whitespace_token1] = ACTIONS(5113), - [sym__word_no_digit] = ACTIONS(5111), - [sym__digits] = ACTIONS(5111), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [sym__code_span_start] = ACTIONS(5111), - [sym__emphasis_open_star] = ACTIONS(5111), - [sym__emphasis_open_underscore] = ACTIONS(5111), - [sym__strikeout_open] = ACTIONS(5111), - [sym__latex_span_start] = ACTIONS(5111), - [sym__single_quote_open] = ACTIONS(5111), - [sym__double_quote_open] = ACTIONS(5111), - [sym__superscript_open] = ACTIONS(5111), - [sym__subscript_open] = ACTIONS(5111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5111), - [sym__cite_author_in_text] = ACTIONS(5111), - [sym__cite_suppress_author] = ACTIONS(5111), - [sym__shortcode_open_escaped] = ACTIONS(5111), - [sym__shortcode_open] = ACTIONS(5111), - [sym__unclosed_span] = ACTIONS(5111), - [sym__strong_emphasis_open_star] = ACTIONS(5111), - [sym__strong_emphasis_open_underscore] = ACTIONS(5111), - }, - [STATE(1354)] = { - [sym__backslash_escape] = ACTIONS(5051), - [sym_entity_reference] = ACTIONS(5051), - [sym_numeric_character_reference] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_BSLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [sym__newline_token] = ACTIONS(5051), - [aux_sym_insert_token1] = ACTIONS(5051), - [aux_sym_delete_token1] = ACTIONS(5051), - [aux_sym_highlight_token1] = ACTIONS(5051), - [aux_sym_edit_comment_token1] = ACTIONS(5051), - [anon_sym_CARET_LBRACK] = ACTIONS(5051), - [anon_sym_LBRACK_CARET] = ACTIONS(5051), - [sym_uri_autolink] = ACTIONS(5051), - [sym_email_autolink] = ACTIONS(5051), - [sym__whitespace_ge_2] = ACTIONS(5051), - [aux_sym__whitespace_token1] = ACTIONS(5053), - [sym__word_no_digit] = ACTIONS(5051), - [sym__digits] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5051), - [sym__code_span_start] = ACTIONS(5051), - [sym__emphasis_open_star] = ACTIONS(5051), - [sym__emphasis_open_underscore] = ACTIONS(5051), - [sym__emphasis_close_star] = ACTIONS(5051), - [sym__strikeout_open] = ACTIONS(5051), - [sym__latex_span_start] = ACTIONS(5051), - [sym__single_quote_open] = ACTIONS(5051), - [sym__double_quote_open] = ACTIONS(5051), - [sym__superscript_open] = ACTIONS(5051), - [sym__subscript_open] = ACTIONS(5051), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5051), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5051), - [sym__cite_author_in_text] = ACTIONS(5051), - [sym__cite_suppress_author] = ACTIONS(5051), - [sym__shortcode_open_escaped] = ACTIONS(5051), - [sym__shortcode_open] = ACTIONS(5051), - [sym__unclosed_span] = ACTIONS(5051), - [sym__strong_emphasis_open_star] = ACTIONS(5051), - [sym__strong_emphasis_open_underscore] = ACTIONS(5051), - }, - [STATE(1355)] = { - [sym__backslash_escape] = ACTIONS(5115), - [sym_entity_reference] = ACTIONS(5115), - [sym_numeric_character_reference] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(5115), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_QMARK] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym_BQUOTE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [sym__newline_token] = ACTIONS(5115), - [aux_sym_insert_token1] = ACTIONS(5115), - [aux_sym_insert_token2] = ACTIONS(5115), - [aux_sym_delete_token1] = ACTIONS(5115), - [aux_sym_highlight_token1] = ACTIONS(5115), - [aux_sym_edit_comment_token1] = ACTIONS(5115), - [anon_sym_CARET_LBRACK] = ACTIONS(5115), - [anon_sym_LBRACK_CARET] = ACTIONS(5115), - [sym_uri_autolink] = ACTIONS(5115), - [sym_email_autolink] = ACTIONS(5115), - [sym__whitespace_ge_2] = ACTIONS(5117), - [aux_sym__whitespace_token1] = ACTIONS(5117), - [sym__word_no_digit] = ACTIONS(5115), - [sym__digits] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5115), - [sym__code_span_start] = ACTIONS(5115), - [sym__emphasis_open_star] = ACTIONS(5115), - [sym__emphasis_open_underscore] = ACTIONS(5115), - [sym__strikeout_open] = ACTIONS(5115), - [sym__latex_span_start] = ACTIONS(5115), - [sym__single_quote_open] = ACTIONS(5115), - [sym__double_quote_open] = ACTIONS(5115), - [sym__superscript_open] = ACTIONS(5115), - [sym__subscript_open] = ACTIONS(5115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5115), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5115), - [sym__cite_author_in_text] = ACTIONS(5115), - [sym__cite_suppress_author] = ACTIONS(5115), - [sym__shortcode_open_escaped] = ACTIONS(5115), - [sym__shortcode_open] = ACTIONS(5115), - [sym__unclosed_span] = ACTIONS(5115), - [sym__strong_emphasis_open_star] = ACTIONS(5115), - [sym__strong_emphasis_open_underscore] = ACTIONS(5115), - }, - [STATE(1356)] = { - [sym__backslash_escape] = ACTIONS(5119), - [sym_entity_reference] = ACTIONS(5119), - [sym_numeric_character_reference] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_AMP] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [sym__newline_token] = ACTIONS(5119), - [aux_sym_insert_token1] = ACTIONS(5119), - [aux_sym_insert_token2] = ACTIONS(5119), - [aux_sym_delete_token1] = ACTIONS(5119), - [aux_sym_highlight_token1] = ACTIONS(5119), - [aux_sym_edit_comment_token1] = ACTIONS(5119), - [anon_sym_CARET_LBRACK] = ACTIONS(5119), - [anon_sym_LBRACK_CARET] = ACTIONS(5119), - [sym_uri_autolink] = ACTIONS(5119), - [sym_email_autolink] = ACTIONS(5119), - [sym__whitespace_ge_2] = ACTIONS(5121), - [aux_sym__whitespace_token1] = ACTIONS(5121), - [sym__word_no_digit] = ACTIONS(5119), - [sym__digits] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5119), - [sym__code_span_start] = ACTIONS(5119), - [sym__emphasis_open_star] = ACTIONS(5119), - [sym__emphasis_open_underscore] = ACTIONS(5119), - [sym__strikeout_open] = ACTIONS(5119), - [sym__latex_span_start] = ACTIONS(5119), - [sym__single_quote_open] = ACTIONS(5119), - [sym__double_quote_open] = ACTIONS(5119), - [sym__superscript_open] = ACTIONS(5119), - [sym__subscript_open] = ACTIONS(5119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5119), - [sym__cite_author_in_text] = ACTIONS(5119), - [sym__cite_suppress_author] = ACTIONS(5119), - [sym__shortcode_open_escaped] = ACTIONS(5119), - [sym__shortcode_open] = ACTIONS(5119), - [sym__unclosed_span] = ACTIONS(5119), - [sym__strong_emphasis_open_star] = ACTIONS(5119), - [sym__strong_emphasis_open_underscore] = ACTIONS(5119), - }, - [STATE(1357)] = { - [sym__backslash_escape] = ACTIONS(5123), - [sym_entity_reference] = ACTIONS(5123), - [sym_numeric_character_reference] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_DQUOTE] = ACTIONS(5123), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym_BQUOTE] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [sym__newline_token] = ACTIONS(5123), - [aux_sym_insert_token1] = ACTIONS(5123), - [aux_sym_insert_token2] = ACTIONS(5123), - [aux_sym_delete_token1] = ACTIONS(5123), - [aux_sym_highlight_token1] = ACTIONS(5123), - [aux_sym_edit_comment_token1] = ACTIONS(5123), - [anon_sym_CARET_LBRACK] = ACTIONS(5123), - [anon_sym_LBRACK_CARET] = ACTIONS(5123), - [sym_uri_autolink] = ACTIONS(5123), - [sym_email_autolink] = ACTIONS(5123), - [sym__whitespace_ge_2] = ACTIONS(5125), - [aux_sym__whitespace_token1] = ACTIONS(5125), - [sym__word_no_digit] = ACTIONS(5123), - [sym__digits] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), - [sym__code_span_start] = ACTIONS(5123), - [sym__emphasis_open_star] = ACTIONS(5123), - [sym__emphasis_open_underscore] = ACTIONS(5123), - [sym__strikeout_open] = ACTIONS(5123), - [sym__latex_span_start] = ACTIONS(5123), - [sym__single_quote_open] = ACTIONS(5123), - [sym__double_quote_open] = ACTIONS(5123), - [sym__superscript_open] = ACTIONS(5123), - [sym__subscript_open] = ACTIONS(5123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5123), - [sym__cite_author_in_text] = ACTIONS(5123), - [sym__cite_suppress_author] = ACTIONS(5123), - [sym__shortcode_open_escaped] = ACTIONS(5123), - [sym__shortcode_open] = ACTIONS(5123), - [sym__unclosed_span] = ACTIONS(5123), - [sym__strong_emphasis_open_star] = ACTIONS(5123), - [sym__strong_emphasis_open_underscore] = ACTIONS(5123), - }, - [STATE(1358)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -140321,7 +137197,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(4631), [anon_sym_AMP] = ACTIONS(4633), [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_STAR] = ACTIONS(4631), [anon_sym_PLUS] = ACTIONS(4631), [anon_sym_COMMA] = ACTIONS(4631), [anon_sym_DASH] = ACTIONS(4633), @@ -140342,7 +137217,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(4631), [sym__newline_token] = ACTIONS(4631), [aux_sym_insert_token1] = ACTIONS(4631), - [aux_sym_insert_token2] = ACTIONS(4631), [aux_sym_delete_token1] = ACTIONS(4631), [aux_sym_highlight_token1] = ACTIONS(4631), [aux_sym_edit_comment_token1] = ACTIONS(4631), @@ -140350,7 +137224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_CARET] = ACTIONS(4631), [sym_uri_autolink] = ACTIONS(4631), [sym_email_autolink] = ACTIONS(4631), - [sym__whitespace_ge_2] = ACTIONS(4633), + [sym__whitespace_ge_2] = ACTIONS(4631), [aux_sym__whitespace_token1] = ACTIONS(4633), [sym__word_no_digit] = ACTIONS(4631), [sym__digits] = ACTIONS(4631), @@ -140365,6 +137239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__single_quote_open] = ACTIONS(4631), [sym__double_quote_open] = ACTIONS(4631), [sym__superscript_open] = ACTIONS(4631), + [sym__superscript_close] = 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), @@ -140376,3135 +137251,3156 @@ 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(1359)] = { - [sym__backslash_escape] = ACTIONS(5055), - [sym_entity_reference] = ACTIONS(5055), - [sym_numeric_character_reference] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(5055), - [anon_sym_POUND] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_BSLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_BQUOTE] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [sym__newline_token] = ACTIONS(5055), - [aux_sym_insert_token1] = ACTIONS(5055), - [aux_sym_delete_token1] = ACTIONS(5055), - [aux_sym_highlight_token1] = ACTIONS(5055), - [aux_sym_edit_comment_token1] = ACTIONS(5055), - [anon_sym_CARET_LBRACK] = ACTIONS(5055), - [anon_sym_LBRACK_CARET] = ACTIONS(5055), - [sym_uri_autolink] = ACTIONS(5055), - [sym_email_autolink] = ACTIONS(5055), - [sym__whitespace_ge_2] = ACTIONS(5055), - [aux_sym__whitespace_token1] = ACTIONS(5057), - [sym__word_no_digit] = ACTIONS(5055), - [sym__digits] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5055), - [sym__code_span_start] = ACTIONS(5055), - [sym__emphasis_open_star] = ACTIONS(5055), - [sym__emphasis_open_underscore] = ACTIONS(5055), - [sym__emphasis_close_star] = ACTIONS(5055), - [sym__strikeout_open] = ACTIONS(5055), - [sym__latex_span_start] = ACTIONS(5055), - [sym__single_quote_open] = ACTIONS(5055), - [sym__double_quote_open] = ACTIONS(5055), - [sym__superscript_open] = ACTIONS(5055), - [sym__subscript_open] = ACTIONS(5055), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5055), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5055), - [sym__cite_author_in_text] = ACTIONS(5055), - [sym__cite_suppress_author] = ACTIONS(5055), - [sym__shortcode_open_escaped] = ACTIONS(5055), - [sym__shortcode_open] = ACTIONS(5055), - [sym__unclosed_span] = ACTIONS(5055), - [sym__strong_emphasis_open_star] = ACTIONS(5055), - [sym__strong_emphasis_open_underscore] = ACTIONS(5055), + [STATE(1333)] = { + [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_RBRACK] = ACTIONS(4619), + [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(1360)] = { - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_insert_token2] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4659), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [STATE(1334)] = { + [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_RBRACK] = ACTIONS(4627), + [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(1361)] = { - [sym__backslash_escape] = ACTIONS(5059), - [sym_entity_reference] = ACTIONS(5059), - [sym_numeric_character_reference] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_DQUOTE] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_BSLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [sym__newline_token] = ACTIONS(5059), - [aux_sym_insert_token1] = ACTIONS(5059), - [aux_sym_delete_token1] = ACTIONS(5059), - [aux_sym_highlight_token1] = ACTIONS(5059), - [aux_sym_edit_comment_token1] = ACTIONS(5059), - [anon_sym_CARET_LBRACK] = ACTIONS(5059), - [anon_sym_LBRACK_CARET] = ACTIONS(5059), - [sym_uri_autolink] = ACTIONS(5059), - [sym_email_autolink] = ACTIONS(5059), - [sym__whitespace_ge_2] = ACTIONS(5059), - [aux_sym__whitespace_token1] = ACTIONS(5061), - [sym__word_no_digit] = ACTIONS(5059), - [sym__digits] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5059), - [sym__code_span_start] = ACTIONS(5059), - [sym__emphasis_open_star] = ACTIONS(5059), - [sym__emphasis_open_underscore] = ACTIONS(5059), - [sym__emphasis_close_star] = ACTIONS(5059), - [sym__strikeout_open] = ACTIONS(5059), - [sym__latex_span_start] = ACTIONS(5059), - [sym__single_quote_open] = ACTIONS(5059), - [sym__double_quote_open] = ACTIONS(5059), - [sym__superscript_open] = ACTIONS(5059), - [sym__subscript_open] = ACTIONS(5059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5059), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5059), - [sym__cite_author_in_text] = ACTIONS(5059), - [sym__cite_suppress_author] = ACTIONS(5059), - [sym__shortcode_open_escaped] = ACTIONS(5059), - [sym__shortcode_open] = ACTIONS(5059), - [sym__unclosed_span] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5059), - [sym__strong_emphasis_open_underscore] = ACTIONS(5059), + [STATE(1335)] = { + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__superscript_close] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), }, - [STATE(1362)] = { - [sym__backslash_escape] = ACTIONS(5127), - [sym_entity_reference] = ACTIONS(5127), - [sym_numeric_character_reference] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_DQUOTE] = ACTIONS(5127), - [anon_sym_POUND] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_PERCENT] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_QMARK] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym_BQUOTE] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym__newline_token] = ACTIONS(5127), - [aux_sym_insert_token1] = ACTIONS(5127), - [aux_sym_insert_token2] = ACTIONS(5127), - [aux_sym_delete_token1] = ACTIONS(5127), - [aux_sym_highlight_token1] = ACTIONS(5127), - [aux_sym_edit_comment_token1] = ACTIONS(5127), - [anon_sym_CARET_LBRACK] = ACTIONS(5127), - [anon_sym_LBRACK_CARET] = ACTIONS(5127), - [sym_uri_autolink] = ACTIONS(5127), - [sym_email_autolink] = ACTIONS(5127), - [sym__whitespace_ge_2] = ACTIONS(5129), - [aux_sym__whitespace_token1] = ACTIONS(5129), - [sym__word_no_digit] = ACTIONS(5127), - [sym__digits] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5127), - [sym__code_span_start] = ACTIONS(5127), - [sym__emphasis_open_star] = ACTIONS(5127), - [sym__emphasis_open_underscore] = ACTIONS(5127), - [sym__strikeout_open] = ACTIONS(5127), - [sym__latex_span_start] = ACTIONS(5127), - [sym__single_quote_open] = ACTIONS(5127), - [sym__double_quote_open] = ACTIONS(5127), - [sym__superscript_open] = ACTIONS(5127), - [sym__subscript_open] = ACTIONS(5127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5127), - [sym__cite_author_in_text] = ACTIONS(5127), - [sym__cite_suppress_author] = ACTIONS(5127), - [sym__shortcode_open_escaped] = ACTIONS(5127), - [sym__shortcode_open] = ACTIONS(5127), - [sym__unclosed_span] = ACTIONS(5127), - [sym__strong_emphasis_open_star] = ACTIONS(5127), - [sym__strong_emphasis_open_underscore] = ACTIONS(5127), + [STATE(1336)] = { + [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(1363)] = { - [sym__backslash_escape] = ACTIONS(5131), - [sym_entity_reference] = ACTIONS(5131), - [sym_numeric_character_reference] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(5131), - [anon_sym_POUND] = ACTIONS(5131), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(5133), - [anon_sym_SQUOTE] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_QMARK] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(5133), - [anon_sym_BQUOTE] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_PIPE] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [sym__newline_token] = ACTIONS(5131), - [aux_sym_insert_token1] = ACTIONS(5131), - [aux_sym_insert_token2] = ACTIONS(5131), - [aux_sym_delete_token1] = ACTIONS(5131), - [aux_sym_highlight_token1] = ACTIONS(5131), - [aux_sym_edit_comment_token1] = ACTIONS(5131), - [anon_sym_CARET_LBRACK] = ACTIONS(5131), - [anon_sym_LBRACK_CARET] = ACTIONS(5131), - [sym_uri_autolink] = ACTIONS(5131), - [sym_email_autolink] = ACTIONS(5131), - [sym__whitespace_ge_2] = ACTIONS(5133), - [aux_sym__whitespace_token1] = ACTIONS(5133), - [sym__word_no_digit] = ACTIONS(5131), - [sym__digits] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), - [sym__code_span_start] = ACTIONS(5131), - [sym__emphasis_open_star] = ACTIONS(5131), - [sym__emphasis_open_underscore] = ACTIONS(5131), - [sym__strikeout_open] = ACTIONS(5131), - [sym__latex_span_start] = ACTIONS(5131), - [sym__single_quote_open] = ACTIONS(5131), - [sym__double_quote_open] = ACTIONS(5131), - [sym__superscript_open] = ACTIONS(5131), - [sym__subscript_open] = ACTIONS(5131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5131), - [sym__cite_author_in_text] = ACTIONS(5131), - [sym__cite_suppress_author] = ACTIONS(5131), - [sym__shortcode_open_escaped] = ACTIONS(5131), - [sym__shortcode_open] = ACTIONS(5131), - [sym__unclosed_span] = ACTIONS(5131), - [sym__strong_emphasis_open_star] = ACTIONS(5131), - [sym__strong_emphasis_open_underscore] = ACTIONS(5131), + [STATE(1337)] = { + [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), + [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(1364)] = { - [sym__backslash_escape] = ACTIONS(5135), - [sym_entity_reference] = ACTIONS(5135), - [sym_numeric_character_reference] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_AMP] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_QMARK] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH] = ACTIONS(5137), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [sym__newline_token] = ACTIONS(5135), - [aux_sym_insert_token1] = ACTIONS(5135), - [aux_sym_insert_token2] = ACTIONS(5135), - [aux_sym_delete_token1] = ACTIONS(5135), - [aux_sym_highlight_token1] = ACTIONS(5135), - [aux_sym_edit_comment_token1] = ACTIONS(5135), - [anon_sym_CARET_LBRACK] = ACTIONS(5135), - [anon_sym_LBRACK_CARET] = ACTIONS(5135), - [sym_uri_autolink] = ACTIONS(5135), - [sym_email_autolink] = ACTIONS(5135), - [sym__whitespace_ge_2] = ACTIONS(5137), - [aux_sym__whitespace_token1] = ACTIONS(5137), - [sym__word_no_digit] = ACTIONS(5135), - [sym__digits] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5135), - [sym__code_span_start] = ACTIONS(5135), - [sym__emphasis_open_star] = ACTIONS(5135), - [sym__emphasis_open_underscore] = ACTIONS(5135), - [sym__strikeout_open] = ACTIONS(5135), - [sym__latex_span_start] = ACTIONS(5135), - [sym__single_quote_open] = ACTIONS(5135), - [sym__double_quote_open] = ACTIONS(5135), - [sym__superscript_open] = ACTIONS(5135), - [sym__subscript_open] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5135), - [sym__cite_author_in_text] = ACTIONS(5135), - [sym__cite_suppress_author] = ACTIONS(5135), - [sym__shortcode_open_escaped] = ACTIONS(5135), - [sym__shortcode_open] = ACTIONS(5135), - [sym__unclosed_span] = ACTIONS(5135), - [sym__strong_emphasis_open_star] = ACTIONS(5135), - [sym__strong_emphasis_open_underscore] = ACTIONS(5135), + [STATE(1338)] = { + [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_insert_token2] = 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(4629), + [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(1365)] = { - [sym__backslash_escape] = ACTIONS(5139), - [sym_entity_reference] = ACTIONS(5139), - [sym_numeric_character_reference] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_DQUOTE] = ACTIONS(5139), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH] = ACTIONS(5141), - [anon_sym_CARET] = ACTIONS(5141), - [anon_sym_BQUOTE] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_RPAREN] = ACTIONS(5139), - [sym__newline_token] = ACTIONS(5139), - [aux_sym_insert_token1] = ACTIONS(5139), - [aux_sym_insert_token2] = ACTIONS(5139), - [aux_sym_delete_token1] = ACTIONS(5139), - [aux_sym_highlight_token1] = ACTIONS(5139), - [aux_sym_edit_comment_token1] = ACTIONS(5139), - [anon_sym_CARET_LBRACK] = ACTIONS(5139), - [anon_sym_LBRACK_CARET] = ACTIONS(5139), - [sym_uri_autolink] = ACTIONS(5139), - [sym_email_autolink] = ACTIONS(5139), - [sym__whitespace_ge_2] = ACTIONS(5141), - [aux_sym__whitespace_token1] = ACTIONS(5141), - [sym__word_no_digit] = ACTIONS(5139), - [sym__digits] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5141), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5139), - [sym__code_span_start] = ACTIONS(5139), - [sym__emphasis_open_star] = ACTIONS(5139), - [sym__emphasis_open_underscore] = ACTIONS(5139), - [sym__strikeout_open] = ACTIONS(5139), - [sym__latex_span_start] = ACTIONS(5139), - [sym__single_quote_open] = ACTIONS(5139), - [sym__double_quote_open] = ACTIONS(5139), - [sym__superscript_open] = ACTIONS(5139), - [sym__subscript_open] = ACTIONS(5139), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5139), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5139), - [sym__cite_author_in_text] = ACTIONS(5139), - [sym__cite_suppress_author] = ACTIONS(5139), - [sym__shortcode_open_escaped] = ACTIONS(5139), - [sym__shortcode_open] = ACTIONS(5139), - [sym__unclosed_span] = ACTIONS(5139), - [sym__strong_emphasis_open_star] = ACTIONS(5139), - [sym__strong_emphasis_open_underscore] = ACTIONS(5139), + [STATE(1339)] = { + [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(1366)] = { - [sym__backslash_escape] = ACTIONS(5143), - [sym_entity_reference] = ACTIONS(5143), - [sym_numeric_character_reference] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_DQUOTE] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_PERCENT] = ACTIONS(5143), - [anon_sym_AMP] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH] = ACTIONS(5145), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym_BQUOTE] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [sym__newline_token] = ACTIONS(5143), - [aux_sym_insert_token1] = ACTIONS(5143), - [aux_sym_insert_token2] = ACTIONS(5143), - [aux_sym_delete_token1] = ACTIONS(5143), - [aux_sym_highlight_token1] = ACTIONS(5143), - [aux_sym_edit_comment_token1] = ACTIONS(5143), - [anon_sym_CARET_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_CARET] = ACTIONS(5143), - [sym_uri_autolink] = ACTIONS(5143), - [sym_email_autolink] = ACTIONS(5143), - [sym__whitespace_ge_2] = ACTIONS(5145), - [aux_sym__whitespace_token1] = ACTIONS(5145), - [sym__word_no_digit] = ACTIONS(5143), - [sym__digits] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5143), - [sym__code_span_start] = ACTIONS(5143), - [sym__emphasis_open_star] = ACTIONS(5143), - [sym__emphasis_open_underscore] = ACTIONS(5143), - [sym__strikeout_open] = ACTIONS(5143), - [sym__latex_span_start] = ACTIONS(5143), - [sym__single_quote_open] = ACTIONS(5143), - [sym__double_quote_open] = ACTIONS(5143), - [sym__superscript_open] = ACTIONS(5143), - [sym__subscript_open] = ACTIONS(5143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5143), - [sym__cite_author_in_text] = ACTIONS(5143), - [sym__cite_suppress_author] = ACTIONS(5143), - [sym__shortcode_open_escaped] = ACTIONS(5143), - [sym__shortcode_open] = ACTIONS(5143), - [sym__unclosed_span] = ACTIONS(5143), - [sym__strong_emphasis_open_star] = ACTIONS(5143), - [sym__strong_emphasis_open_underscore] = ACTIONS(5143), + [STATE(1340)] = { + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__emphasis_close_star] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, - [STATE(1367)] = { - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_insert_token2] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4663), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [STATE(1341)] = { + [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(1368)] = { - [sym__backslash_escape] = ACTIONS(5063), - [sym_entity_reference] = ACTIONS(5063), - [sym_numeric_character_reference] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_BSLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_BQUOTE] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [sym__newline_token] = ACTIONS(5063), - [aux_sym_insert_token1] = ACTIONS(5063), - [aux_sym_delete_token1] = ACTIONS(5063), - [aux_sym_highlight_token1] = ACTIONS(5063), - [aux_sym_edit_comment_token1] = ACTIONS(5063), - [anon_sym_CARET_LBRACK] = ACTIONS(5063), - [anon_sym_LBRACK_CARET] = ACTIONS(5063), - [sym_uri_autolink] = ACTIONS(5063), - [sym_email_autolink] = ACTIONS(5063), - [sym__whitespace_ge_2] = ACTIONS(5063), - [aux_sym__whitespace_token1] = ACTIONS(5065), - [sym__word_no_digit] = ACTIONS(5063), - [sym__digits] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5063), - [sym__code_span_start] = ACTIONS(5063), - [sym__emphasis_open_star] = ACTIONS(5063), - [sym__emphasis_open_underscore] = ACTIONS(5063), - [sym__emphasis_close_star] = ACTIONS(5063), - [sym__strikeout_open] = ACTIONS(5063), - [sym__latex_span_start] = ACTIONS(5063), - [sym__single_quote_open] = ACTIONS(5063), - [sym__double_quote_open] = ACTIONS(5063), - [sym__superscript_open] = ACTIONS(5063), - [sym__subscript_open] = ACTIONS(5063), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5063), - [sym__cite_author_in_text] = ACTIONS(5063), - [sym__cite_suppress_author] = ACTIONS(5063), - [sym__shortcode_open_escaped] = ACTIONS(5063), - [sym__shortcode_open] = ACTIONS(5063), - [sym__unclosed_span] = ACTIONS(5063), - [sym__strong_emphasis_open_star] = ACTIONS(5063), - [sym__strong_emphasis_open_underscore] = ACTIONS(5063), + [STATE(1342)] = { + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__emphasis_close_star] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, - [STATE(1369)] = { - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_insert_token2] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4639), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [STATE(1343)] = { + [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(1370)] = { - [sym__backslash_escape] = ACTIONS(5067), - [sym_entity_reference] = ACTIONS(5067), - [sym_numeric_character_reference] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DQUOTE] = ACTIONS(5067), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_COLON] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [sym__newline_token] = ACTIONS(5067), - [aux_sym_insert_token1] = ACTIONS(5067), - [aux_sym_delete_token1] = ACTIONS(5067), - [aux_sym_highlight_token1] = ACTIONS(5067), - [aux_sym_edit_comment_token1] = ACTIONS(5067), - [anon_sym_CARET_LBRACK] = ACTIONS(5067), - [anon_sym_LBRACK_CARET] = ACTIONS(5067), - [sym_uri_autolink] = ACTIONS(5067), - [sym_email_autolink] = ACTIONS(5067), - [sym__whitespace_ge_2] = ACTIONS(5067), - [aux_sym__whitespace_token1] = ACTIONS(5069), - [sym__word_no_digit] = ACTIONS(5067), - [sym__digits] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5067), - [sym__code_span_start] = ACTIONS(5067), - [sym__emphasis_open_star] = ACTIONS(5067), - [sym__emphasis_open_underscore] = ACTIONS(5067), - [sym__emphasis_close_star] = ACTIONS(5067), - [sym__strikeout_open] = ACTIONS(5067), - [sym__latex_span_start] = ACTIONS(5067), - [sym__single_quote_open] = ACTIONS(5067), - [sym__double_quote_open] = ACTIONS(5067), - [sym__superscript_open] = ACTIONS(5067), - [sym__subscript_open] = ACTIONS(5067), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5067), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5067), - [sym__cite_author_in_text] = ACTIONS(5067), - [sym__cite_suppress_author] = ACTIONS(5067), - [sym__shortcode_open_escaped] = ACTIONS(5067), - [sym__shortcode_open] = ACTIONS(5067), - [sym__unclosed_span] = ACTIONS(5067), - [sym__strong_emphasis_open_star] = ACTIONS(5067), - [sym__strong_emphasis_open_underscore] = ACTIONS(5067), + [STATE(1344)] = { + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__emphasis_close_star] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, - [STATE(1371)] = { - [sym__backslash_escape] = ACTIONS(5147), - [sym_entity_reference] = ACTIONS(5147), - [sym_numeric_character_reference] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_DQUOTE] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [sym__newline_token] = ACTIONS(5147), - [aux_sym_insert_token1] = ACTIONS(5147), - [aux_sym_insert_token2] = ACTIONS(5147), - [aux_sym_delete_token1] = ACTIONS(5147), - [aux_sym_highlight_token1] = ACTIONS(5147), - [aux_sym_edit_comment_token1] = ACTIONS(5147), - [anon_sym_CARET_LBRACK] = ACTIONS(5147), - [anon_sym_LBRACK_CARET] = ACTIONS(5147), - [sym_uri_autolink] = ACTIONS(5147), - [sym_email_autolink] = ACTIONS(5147), - [sym__whitespace_ge_2] = ACTIONS(5149), - [aux_sym__whitespace_token1] = ACTIONS(5149), - [sym__word_no_digit] = ACTIONS(5147), - [sym__digits] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5147), - [sym__code_span_start] = ACTIONS(5147), - [sym__emphasis_open_star] = ACTIONS(5147), - [sym__emphasis_open_underscore] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5147), - [sym__latex_span_start] = ACTIONS(5147), - [sym__single_quote_open] = ACTIONS(5147), - [sym__double_quote_open] = ACTIONS(5147), - [sym__superscript_open] = ACTIONS(5147), - [sym__subscript_open] = ACTIONS(5147), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5147), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5147), - [sym__cite_author_in_text] = ACTIONS(5147), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__shortcode_open_escaped] = ACTIONS(5147), - [sym__shortcode_open] = ACTIONS(5147), - [sym__unclosed_span] = ACTIONS(5147), - [sym__strong_emphasis_open_star] = ACTIONS(5147), - [sym__strong_emphasis_open_underscore] = ACTIONS(5147), + [STATE(1345)] = { + [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), + [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__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(1372)] = { - [sym__backslash_escape] = ACTIONS(5151), - [sym_entity_reference] = ACTIONS(5151), - [sym_numeric_character_reference] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_DQUOTE] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_PERCENT] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_QMARK] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [sym__newline_token] = ACTIONS(5151), - [aux_sym_insert_token1] = ACTIONS(5151), - [aux_sym_insert_token2] = ACTIONS(5151), - [aux_sym_delete_token1] = ACTIONS(5151), - [aux_sym_highlight_token1] = ACTIONS(5151), - [aux_sym_edit_comment_token1] = ACTIONS(5151), - [anon_sym_CARET_LBRACK] = ACTIONS(5151), - [anon_sym_LBRACK_CARET] = ACTIONS(5151), - [sym_uri_autolink] = ACTIONS(5151), - [sym_email_autolink] = ACTIONS(5151), - [sym__whitespace_ge_2] = ACTIONS(5153), - [aux_sym__whitespace_token1] = ACTIONS(5153), - [sym__word_no_digit] = ACTIONS(5151), - [sym__digits] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5151), - [sym__code_span_start] = ACTIONS(5151), - [sym__emphasis_open_star] = ACTIONS(5151), - [sym__emphasis_open_underscore] = ACTIONS(5151), - [sym__strikeout_open] = ACTIONS(5151), - [sym__latex_span_start] = ACTIONS(5151), - [sym__single_quote_open] = ACTIONS(5151), - [sym__double_quote_open] = ACTIONS(5151), - [sym__superscript_open] = ACTIONS(5151), - [sym__subscript_open] = ACTIONS(5151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5151), - [sym__cite_author_in_text] = ACTIONS(5151), - [sym__cite_suppress_author] = ACTIONS(5151), - [sym__shortcode_open_escaped] = ACTIONS(5151), - [sym__shortcode_open] = ACTIONS(5151), - [sym__unclosed_span] = ACTIONS(5151), - [sym__strong_emphasis_open_star] = ACTIONS(5151), - [sym__strong_emphasis_open_underscore] = ACTIONS(5151), + [STATE(1346)] = { + [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(1373)] = { - [sym__backslash_escape] = ACTIONS(5155), - [sym_entity_reference] = ACTIONS(5155), - [sym_numeric_character_reference] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_QMARK] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [sym__newline_token] = ACTIONS(5155), - [aux_sym_insert_token1] = ACTIONS(5155), - [aux_sym_insert_token2] = ACTIONS(5155), - [aux_sym_delete_token1] = ACTIONS(5155), - [aux_sym_highlight_token1] = ACTIONS(5155), - [aux_sym_edit_comment_token1] = ACTIONS(5155), - [anon_sym_CARET_LBRACK] = ACTIONS(5155), - [anon_sym_LBRACK_CARET] = ACTIONS(5155), - [sym_uri_autolink] = ACTIONS(5155), - [sym_email_autolink] = ACTIONS(5155), - [sym__whitespace_ge_2] = ACTIONS(5157), - [aux_sym__whitespace_token1] = ACTIONS(5157), - [sym__word_no_digit] = ACTIONS(5155), - [sym__digits] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5155), - [sym__code_span_start] = ACTIONS(5155), - [sym__emphasis_open_star] = ACTIONS(5155), - [sym__emphasis_open_underscore] = ACTIONS(5155), - [sym__strikeout_open] = ACTIONS(5155), - [sym__latex_span_start] = ACTIONS(5155), - [sym__single_quote_open] = ACTIONS(5155), - [sym__double_quote_open] = ACTIONS(5155), - [sym__superscript_open] = ACTIONS(5155), - [sym__subscript_open] = ACTIONS(5155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5155), - [sym__cite_author_in_text] = ACTIONS(5155), - [sym__cite_suppress_author] = ACTIONS(5155), - [sym__shortcode_open_escaped] = ACTIONS(5155), - [sym__shortcode_open] = ACTIONS(5155), - [sym__unclosed_span] = ACTIONS(5155), - [sym__strong_emphasis_open_star] = ACTIONS(5155), - [sym__strong_emphasis_open_underscore] = ACTIONS(5155), + [STATE(1347)] = { + [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(1374)] = { - [sym__backslash_escape] = ACTIONS(5159), - [sym_entity_reference] = ACTIONS(5159), - [sym_numeric_character_reference] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_DQUOTE] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_QMARK] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym__newline_token] = ACTIONS(5159), - [aux_sym_insert_token1] = ACTIONS(5159), - [aux_sym_insert_token2] = ACTIONS(5159), - [aux_sym_delete_token1] = ACTIONS(5159), - [aux_sym_highlight_token1] = ACTIONS(5159), - [aux_sym_edit_comment_token1] = ACTIONS(5159), - [anon_sym_CARET_LBRACK] = ACTIONS(5159), - [anon_sym_LBRACK_CARET] = ACTIONS(5159), - [sym_uri_autolink] = ACTIONS(5159), - [sym_email_autolink] = ACTIONS(5159), - [sym__whitespace_ge_2] = ACTIONS(5161), - [aux_sym__whitespace_token1] = ACTIONS(5161), - [sym__word_no_digit] = ACTIONS(5159), - [sym__digits] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5159), - [sym__code_span_start] = ACTIONS(5159), - [sym__emphasis_open_star] = ACTIONS(5159), - [sym__emphasis_open_underscore] = ACTIONS(5159), - [sym__strikeout_open] = ACTIONS(5159), - [sym__latex_span_start] = ACTIONS(5159), - [sym__single_quote_open] = ACTIONS(5159), - [sym__double_quote_open] = ACTIONS(5159), - [sym__superscript_open] = ACTIONS(5159), - [sym__subscript_open] = ACTIONS(5159), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5159), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5159), - [sym__cite_author_in_text] = ACTIONS(5159), - [sym__cite_suppress_author] = ACTIONS(5159), - [sym__shortcode_open_escaped] = ACTIONS(5159), - [sym__shortcode_open] = ACTIONS(5159), - [sym__unclosed_span] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5159), - [sym__strong_emphasis_open_underscore] = ACTIONS(5159), + [STATE(1348)] = { + [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_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(1375)] = { - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_insert_token2] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4667), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [STATE(1349)] = { + [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__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), + [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(1376)] = { - [sym__backslash_escape] = ACTIONS(5071), - [sym_entity_reference] = ACTIONS(5071), - [sym_numeric_character_reference] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_POUND] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [sym__newline_token] = ACTIONS(5071), - [aux_sym_insert_token1] = ACTIONS(5071), - [aux_sym_delete_token1] = ACTIONS(5071), - [aux_sym_highlight_token1] = ACTIONS(5071), - [aux_sym_edit_comment_token1] = ACTIONS(5071), - [anon_sym_CARET_LBRACK] = ACTIONS(5071), - [anon_sym_LBRACK_CARET] = ACTIONS(5071), - [sym_uri_autolink] = ACTIONS(5071), - [sym_email_autolink] = ACTIONS(5071), - [sym__whitespace_ge_2] = ACTIONS(5071), - [aux_sym__whitespace_token1] = ACTIONS(5073), - [sym__word_no_digit] = ACTIONS(5071), - [sym__digits] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5071), - [sym__code_span_start] = ACTIONS(5071), - [sym__emphasis_open_star] = ACTIONS(5071), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym__emphasis_close_star] = ACTIONS(5071), - [sym__strikeout_open] = ACTIONS(5071), - [sym__latex_span_start] = ACTIONS(5071), - [sym__single_quote_open] = ACTIONS(5071), - [sym__double_quote_open] = ACTIONS(5071), - [sym__superscript_open] = ACTIONS(5071), - [sym__subscript_open] = ACTIONS(5071), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5071), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5071), - [sym__cite_author_in_text] = ACTIONS(5071), - [sym__cite_suppress_author] = ACTIONS(5071), - [sym__shortcode_open_escaped] = ACTIONS(5071), - [sym__shortcode_open] = ACTIONS(5071), - [sym__unclosed_span] = ACTIONS(5071), - [sym__strong_emphasis_open_star] = ACTIONS(5071), - [sym__strong_emphasis_open_underscore] = ACTIONS(5071), + [STATE(1350)] = { + [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(1377)] = { - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_insert_token2] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), + [STATE(1351)] = { + [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(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), - }, - [STATE(1378)] = { - [sym__backslash_escape] = ACTIONS(5075), - [sym_entity_reference] = ACTIONS(5075), - [sym_numeric_character_reference] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_QMARK] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_BSLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [sym__newline_token] = ACTIONS(5075), - [aux_sym_insert_token1] = ACTIONS(5075), - [aux_sym_delete_token1] = ACTIONS(5075), - [aux_sym_highlight_token1] = ACTIONS(5075), - [aux_sym_edit_comment_token1] = ACTIONS(5075), - [anon_sym_CARET_LBRACK] = ACTIONS(5075), - [anon_sym_LBRACK_CARET] = ACTIONS(5075), - [sym_uri_autolink] = ACTIONS(5075), - [sym_email_autolink] = ACTIONS(5075), - [sym__whitespace_ge_2] = ACTIONS(5075), - [aux_sym__whitespace_token1] = ACTIONS(5077), - [sym__word_no_digit] = ACTIONS(5075), - [sym__digits] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5075), - [sym__code_span_start] = ACTIONS(5075), - [sym__emphasis_open_star] = ACTIONS(5075), - [sym__emphasis_open_underscore] = ACTIONS(5075), - [sym__emphasis_close_star] = ACTIONS(5075), - [sym__strikeout_open] = ACTIONS(5075), - [sym__latex_span_start] = ACTIONS(5075), - [sym__single_quote_open] = ACTIONS(5075), - [sym__double_quote_open] = ACTIONS(5075), - [sym__superscript_open] = ACTIONS(5075), - [sym__subscript_open] = ACTIONS(5075), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5075), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5075), - [sym__cite_author_in_text] = ACTIONS(5075), - [sym__cite_suppress_author] = ACTIONS(5075), - [sym__shortcode_open_escaped] = ACTIONS(5075), - [sym__shortcode_open] = ACTIONS(5075), - [sym__unclosed_span] = ACTIONS(5075), - [sym__strong_emphasis_open_star] = ACTIONS(5075), - [sym__strong_emphasis_open_underscore] = ACTIONS(5075), - }, - [STATE(1379)] = { - [sym__backslash_escape] = ACTIONS(5163), - [sym_entity_reference] = ACTIONS(5163), - [sym_numeric_character_reference] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_PERCENT] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym_BQUOTE] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [sym__newline_token] = ACTIONS(5163), - [aux_sym_insert_token1] = ACTIONS(5163), - [aux_sym_insert_token2] = ACTIONS(5163), - [aux_sym_delete_token1] = ACTIONS(5163), - [aux_sym_highlight_token1] = ACTIONS(5163), - [aux_sym_edit_comment_token1] = ACTIONS(5163), - [anon_sym_CARET_LBRACK] = ACTIONS(5163), - [anon_sym_LBRACK_CARET] = ACTIONS(5163), - [sym_uri_autolink] = ACTIONS(5163), - [sym_email_autolink] = ACTIONS(5163), - [sym__whitespace_ge_2] = ACTIONS(5165), - [aux_sym__whitespace_token1] = ACTIONS(5165), - [sym__word_no_digit] = ACTIONS(5163), - [sym__digits] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5163), - [sym__code_span_start] = ACTIONS(5163), - [sym__emphasis_open_star] = ACTIONS(5163), - [sym__emphasis_open_underscore] = ACTIONS(5163), - [sym__strikeout_open] = ACTIONS(5163), - [sym__latex_span_start] = ACTIONS(5163), - [sym__single_quote_open] = ACTIONS(5163), - [sym__double_quote_open] = ACTIONS(5163), - [sym__superscript_open] = ACTIONS(5163), - [sym__subscript_open] = ACTIONS(5163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5163), - [sym__cite_author_in_text] = ACTIONS(5163), - [sym__cite_suppress_author] = ACTIONS(5163), - [sym__shortcode_open_escaped] = ACTIONS(5163), - [sym__shortcode_open] = ACTIONS(5163), - [sym__unclosed_span] = ACTIONS(5163), - [sym__strong_emphasis_open_star] = ACTIONS(5163), - [sym__strong_emphasis_open_underscore] = ACTIONS(5163), + [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(1380)] = { - [sym__backslash_escape] = ACTIONS(5167), - [sym_entity_reference] = ACTIONS(5167), - [sym_numeric_character_reference] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_POUND] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_PERCENT] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_QMARK] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [sym__newline_token] = ACTIONS(5167), - [aux_sym_insert_token1] = ACTIONS(5167), - [aux_sym_insert_token2] = ACTIONS(5167), - [aux_sym_delete_token1] = ACTIONS(5167), - [aux_sym_highlight_token1] = ACTIONS(5167), - [aux_sym_edit_comment_token1] = ACTIONS(5167), - [anon_sym_CARET_LBRACK] = ACTIONS(5167), - [anon_sym_LBRACK_CARET] = ACTIONS(5167), - [sym_uri_autolink] = ACTIONS(5167), - [sym_email_autolink] = ACTIONS(5167), - [sym__whitespace_ge_2] = ACTIONS(5169), - [aux_sym__whitespace_token1] = ACTIONS(5169), - [sym__word_no_digit] = ACTIONS(5167), - [sym__digits] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5169), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), - [sym__code_span_start] = ACTIONS(5167), - [sym__emphasis_open_star] = ACTIONS(5167), - [sym__emphasis_open_underscore] = ACTIONS(5167), - [sym__strikeout_open] = ACTIONS(5167), - [sym__latex_span_start] = ACTIONS(5167), - [sym__single_quote_open] = ACTIONS(5167), - [sym__double_quote_open] = ACTIONS(5167), - [sym__superscript_open] = ACTIONS(5167), - [sym__subscript_open] = ACTIONS(5167), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5167), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5167), - [sym__cite_author_in_text] = ACTIONS(5167), - [sym__cite_suppress_author] = ACTIONS(5167), - [sym__shortcode_open_escaped] = ACTIONS(5167), - [sym__shortcode_open] = ACTIONS(5167), - [sym__unclosed_span] = ACTIONS(5167), - [sym__strong_emphasis_open_star] = ACTIONS(5167), - [sym__strong_emphasis_open_underscore] = ACTIONS(5167), + [STATE(1352)] = { + [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(1381)] = { - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_insert_token2] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), + [STATE(1353)] = { + [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(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [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(1382)] = { - [sym__backslash_escape] = ACTIONS(5079), - [sym_entity_reference] = ACTIONS(5079), - [sym_numeric_character_reference] = ACTIONS(5079), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_DQUOTE] = ACTIONS(5079), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_QMARK] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BSLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5079), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [sym__newline_token] = ACTIONS(5079), - [aux_sym_insert_token1] = ACTIONS(5079), - [aux_sym_delete_token1] = ACTIONS(5079), - [aux_sym_highlight_token1] = ACTIONS(5079), - [aux_sym_edit_comment_token1] = ACTIONS(5079), - [anon_sym_CARET_LBRACK] = ACTIONS(5079), - [anon_sym_LBRACK_CARET] = ACTIONS(5079), - [sym_uri_autolink] = ACTIONS(5079), - [sym_email_autolink] = ACTIONS(5079), - [sym__whitespace_ge_2] = ACTIONS(5079), - [aux_sym__whitespace_token1] = ACTIONS(5081), - [sym__word_no_digit] = ACTIONS(5079), - [sym__digits] = ACTIONS(5079), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5079), - [sym__code_span_start] = ACTIONS(5079), - [sym__emphasis_open_star] = ACTIONS(5079), - [sym__emphasis_open_underscore] = ACTIONS(5079), - [sym__emphasis_close_star] = ACTIONS(5079), - [sym__strikeout_open] = ACTIONS(5079), - [sym__latex_span_start] = ACTIONS(5079), - [sym__single_quote_open] = ACTIONS(5079), - [sym__double_quote_open] = ACTIONS(5079), - [sym__superscript_open] = ACTIONS(5079), - [sym__subscript_open] = ACTIONS(5079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5079), - [sym__cite_author_in_text] = ACTIONS(5079), - [sym__cite_suppress_author] = ACTIONS(5079), - [sym__shortcode_open_escaped] = ACTIONS(5079), - [sym__shortcode_open] = ACTIONS(5079), - [sym__unclosed_span] = ACTIONS(5079), - [sym__strong_emphasis_open_star] = ACTIONS(5079), - [sym__strong_emphasis_open_underscore] = ACTIONS(5079), + [STATE(1354)] = { + [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__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), + [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(1383)] = { - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_insert_token2] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), + [STATE(1355)] = { + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__emphasis_close_underscore] = ACTIONS(4303), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), + }, + [STATE(1356)] = { + [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(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [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(1384)] = { - [sym__backslash_escape] = ACTIONS(5083), - [sym_entity_reference] = ACTIONS(5083), - [sym_numeric_character_reference] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOT] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_QMARK] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_BSLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym_BQUOTE] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [sym__newline_token] = ACTIONS(5083), - [aux_sym_insert_token1] = ACTIONS(5083), - [aux_sym_delete_token1] = ACTIONS(5083), - [aux_sym_highlight_token1] = ACTIONS(5083), - [aux_sym_edit_comment_token1] = ACTIONS(5083), - [anon_sym_CARET_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_CARET] = ACTIONS(5083), - [sym_uri_autolink] = ACTIONS(5083), - [sym_email_autolink] = ACTIONS(5083), - [sym__whitespace_ge_2] = ACTIONS(5083), - [aux_sym__whitespace_token1] = ACTIONS(5085), - [sym__word_no_digit] = ACTIONS(5083), - [sym__digits] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5083), - [sym__code_span_start] = ACTIONS(5083), - [sym__emphasis_open_star] = ACTIONS(5083), - [sym__emphasis_open_underscore] = ACTIONS(5083), - [sym__emphasis_close_star] = ACTIONS(5083), - [sym__strikeout_open] = ACTIONS(5083), - [sym__latex_span_start] = ACTIONS(5083), - [sym__single_quote_open] = ACTIONS(5083), - [sym__double_quote_open] = ACTIONS(5083), - [sym__superscript_open] = ACTIONS(5083), - [sym__subscript_open] = ACTIONS(5083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5083), - [sym__cite_author_in_text] = ACTIONS(5083), - [sym__cite_suppress_author] = ACTIONS(5083), - [sym__shortcode_open_escaped] = ACTIONS(5083), - [sym__shortcode_open] = ACTIONS(5083), - [sym__unclosed_span] = ACTIONS(5083), - [sym__strong_emphasis_open_star] = ACTIONS(5083), - [sym__strong_emphasis_open_underscore] = ACTIONS(5083), + [STATE(1357)] = { + [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(1385)] = { - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_insert_token2] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), + [STATE(1358)] = { + [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(1359)] = { + [sym__backslash_escape] = ACTIONS(4519), + [sym_entity_reference] = ACTIONS(4519), + [sym_numeric_character_reference] = ACTIONS(4519), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4519), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_BSLASH] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_BQUOTE] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [sym__newline_token] = ACTIONS(4519), + [aux_sym_insert_token1] = ACTIONS(4519), + [aux_sym_delete_token1] = ACTIONS(4519), + [aux_sym_highlight_token1] = ACTIONS(4519), + [aux_sym_edit_comment_token1] = ACTIONS(4519), + [anon_sym_CARET_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_CARET] = ACTIONS(4519), + [sym_uri_autolink] = ACTIONS(4519), + [sym_email_autolink] = ACTIONS(4519), + [sym__whitespace_ge_2] = ACTIONS(4519), + [aux_sym__whitespace_token1] = ACTIONS(4521), + [sym__word_no_digit] = ACTIONS(4519), + [sym__digits] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [sym__code_span_start] = ACTIONS(4519), + [sym__emphasis_open_star] = ACTIONS(4519), + [sym__emphasis_open_underscore] = ACTIONS(4519), + [sym__strikeout_open] = ACTIONS(4519), + [sym__latex_span_start] = ACTIONS(4519), + [sym__single_quote_open] = ACTIONS(4519), + [sym__double_quote_open] = ACTIONS(4519), + [sym__double_quote_close] = ACTIONS(4519), + [sym__superscript_open] = ACTIONS(4519), + [sym__subscript_open] = ACTIONS(4519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4519), + [sym__cite_suppress_author] = ACTIONS(4519), + [sym__shortcode_open_escaped] = ACTIONS(4519), + [sym__shortcode_open] = ACTIONS(4519), + [sym__unclosed_span] = ACTIONS(4519), + [sym__strong_emphasis_open_star] = ACTIONS(4519), + [sym__strong_emphasis_open_underscore] = ACTIONS(4519), + }, + [STATE(1360)] = { + [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(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [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(1386)] = { - [sym__backslash_escape] = ACTIONS(5087), - [sym_entity_reference] = ACTIONS(5087), - [sym_numeric_character_reference] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_DQUOTE] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_AMP] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_QMARK] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym_BQUOTE] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_PIPE] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [sym__newline_token] = ACTIONS(5087), - [aux_sym_insert_token1] = ACTIONS(5087), - [aux_sym_delete_token1] = ACTIONS(5087), - [aux_sym_highlight_token1] = ACTIONS(5087), - [aux_sym_edit_comment_token1] = ACTIONS(5087), - [anon_sym_CARET_LBRACK] = ACTIONS(5087), - [anon_sym_LBRACK_CARET] = ACTIONS(5087), - [sym_uri_autolink] = ACTIONS(5087), - [sym_email_autolink] = ACTIONS(5087), - [sym__whitespace_ge_2] = ACTIONS(5087), - [aux_sym__whitespace_token1] = ACTIONS(5089), - [sym__word_no_digit] = ACTIONS(5087), - [sym__digits] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5087), - [sym__code_span_start] = ACTIONS(5087), - [sym__emphasis_open_star] = ACTIONS(5087), - [sym__emphasis_open_underscore] = ACTIONS(5087), - [sym__emphasis_close_star] = ACTIONS(5087), - [sym__strikeout_open] = ACTIONS(5087), - [sym__latex_span_start] = ACTIONS(5087), - [sym__single_quote_open] = ACTIONS(5087), - [sym__double_quote_open] = ACTIONS(5087), - [sym__superscript_open] = ACTIONS(5087), - [sym__subscript_open] = ACTIONS(5087), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5087), - [sym__cite_author_in_text] = ACTIONS(5087), - [sym__cite_suppress_author] = ACTIONS(5087), - [sym__shortcode_open_escaped] = ACTIONS(5087), - [sym__shortcode_open] = ACTIONS(5087), - [sym__unclosed_span] = ACTIONS(5087), - [sym__strong_emphasis_open_star] = ACTIONS(5087), - [sym__strong_emphasis_open_underscore] = ACTIONS(5087), + [STATE(1361)] = { + [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(1387)] = { - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_insert_token2] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4627), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [STATE(1362)] = { + [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(1388)] = { - [sym__backslash_escape] = ACTIONS(5171), - [sym_entity_reference] = ACTIONS(5171), - [sym_numeric_character_reference] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [anon_sym_POUND] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_QMARK] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH] = ACTIONS(5173), - [anon_sym_CARET] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [sym__newline_token] = ACTIONS(5171), - [aux_sym_insert_token1] = ACTIONS(5171), - [aux_sym_insert_token2] = ACTIONS(5171), - [aux_sym_delete_token1] = ACTIONS(5171), - [aux_sym_highlight_token1] = ACTIONS(5171), - [aux_sym_edit_comment_token1] = ACTIONS(5171), - [anon_sym_CARET_LBRACK] = ACTIONS(5171), - [anon_sym_LBRACK_CARET] = ACTIONS(5171), - [sym_uri_autolink] = ACTIONS(5171), - [sym_email_autolink] = ACTIONS(5171), - [sym__whitespace_ge_2] = ACTIONS(5173), - [aux_sym__whitespace_token1] = ACTIONS(5173), - [sym__word_no_digit] = ACTIONS(5171), - [sym__digits] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5171), - [sym__code_span_start] = ACTIONS(5171), - [sym__emphasis_open_star] = ACTIONS(5171), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym__strikeout_open] = ACTIONS(5171), - [sym__latex_span_start] = ACTIONS(5171), - [sym__single_quote_open] = ACTIONS(5171), - [sym__double_quote_open] = ACTIONS(5171), - [sym__superscript_open] = ACTIONS(5171), - [sym__subscript_open] = ACTIONS(5171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5171), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5171), - [sym__cite_author_in_text] = ACTIONS(5171), - [sym__cite_suppress_author] = ACTIONS(5171), - [sym__shortcode_open_escaped] = ACTIONS(5171), - [sym__shortcode_open] = ACTIONS(5171), - [sym__unclosed_span] = ACTIONS(5171), - [sym__strong_emphasis_open_star] = ACTIONS(5171), - [sym__strong_emphasis_open_underscore] = ACTIONS(5171), + [STATE(1363)] = { + [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__emphasis_close_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(1389)] = { - [sym__backslash_escape] = ACTIONS(5175), - [sym_entity_reference] = ACTIONS(5175), - [sym_numeric_character_reference] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_QMARK] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [sym__newline_token] = ACTIONS(5175), - [aux_sym_insert_token1] = ACTIONS(5175), - [aux_sym_insert_token2] = ACTIONS(5175), - [aux_sym_delete_token1] = ACTIONS(5175), - [aux_sym_highlight_token1] = ACTIONS(5175), - [aux_sym_edit_comment_token1] = ACTIONS(5175), - [anon_sym_CARET_LBRACK] = ACTIONS(5175), - [anon_sym_LBRACK_CARET] = ACTIONS(5175), - [sym_uri_autolink] = ACTIONS(5175), - [sym_email_autolink] = ACTIONS(5175), - [sym__whitespace_ge_2] = ACTIONS(5177), - [aux_sym__whitespace_token1] = ACTIONS(5177), - [sym__word_no_digit] = ACTIONS(5175), - [sym__digits] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5177), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5175), - [sym__code_span_start] = ACTIONS(5175), - [sym__emphasis_open_star] = ACTIONS(5175), - [sym__emphasis_open_underscore] = ACTIONS(5175), - [sym__strikeout_open] = ACTIONS(5175), - [sym__latex_span_start] = ACTIONS(5175), - [sym__single_quote_open] = ACTIONS(5175), - [sym__double_quote_open] = ACTIONS(5175), - [sym__superscript_open] = ACTIONS(5175), - [sym__subscript_open] = ACTIONS(5175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5175), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5175), - [sym__cite_author_in_text] = ACTIONS(5175), - [sym__cite_suppress_author] = ACTIONS(5175), - [sym__shortcode_open_escaped] = ACTIONS(5175), - [sym__shortcode_open] = ACTIONS(5175), - [sym__unclosed_span] = ACTIONS(5175), - [sym__strong_emphasis_open_star] = ACTIONS(5175), - [sym__strong_emphasis_open_underscore] = ACTIONS(5175), + [STATE(1364)] = { + [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(1390)] = { - [sym__backslash_escape] = ACTIONS(4939), - [sym_entity_reference] = ACTIONS(4939), - [sym_numeric_character_reference] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_POUND] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [sym__newline_token] = ACTIONS(4939), - [aux_sym_insert_token1] = ACTIONS(4939), - [aux_sym_insert_token2] = ACTIONS(4939), - [aux_sym_delete_token1] = ACTIONS(4939), - [aux_sym_highlight_token1] = ACTIONS(4939), - [aux_sym_edit_comment_token1] = ACTIONS(4939), - [anon_sym_CARET_LBRACK] = ACTIONS(4939), - [anon_sym_LBRACK_CARET] = ACTIONS(4939), - [sym_uri_autolink] = ACTIONS(4939), - [sym_email_autolink] = ACTIONS(4939), - [sym__whitespace_ge_2] = ACTIONS(4941), - [aux_sym__whitespace_token1] = ACTIONS(4941), - [sym__word_no_digit] = ACTIONS(4939), - [sym__digits] = ACTIONS(4939), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4939), - [sym__code_span_start] = ACTIONS(4939), - [sym__emphasis_open_star] = ACTIONS(4939), - [sym__emphasis_open_underscore] = ACTIONS(4939), - [sym__strikeout_open] = ACTIONS(4939), - [sym__latex_span_start] = ACTIONS(4939), - [sym__single_quote_open] = ACTIONS(4939), - [sym__double_quote_open] = ACTIONS(4939), - [sym__superscript_open] = ACTIONS(4939), - [sym__subscript_open] = ACTIONS(4939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4939), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4939), - [sym__cite_author_in_text] = ACTIONS(4939), - [sym__cite_suppress_author] = ACTIONS(4939), - [sym__shortcode_open_escaped] = ACTIONS(4939), - [sym__shortcode_open] = ACTIONS(4939), - [sym__unclosed_span] = ACTIONS(4939), - [sym__strong_emphasis_open_star] = ACTIONS(4939), - [sym__strong_emphasis_open_underscore] = ACTIONS(4939), + [STATE(1365)] = { + [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(1391)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__emphasis_close_star] = ACTIONS(4797), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [STATE(1366)] = { + [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(1392)] = { - [sym__backslash_escape] = ACTIONS(5179), - [sym_entity_reference] = ACTIONS(5179), - [sym_numeric_character_reference] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_QMARK] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_BSLASH] = ACTIONS(5181), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [sym__newline_token] = ACTIONS(5179), - [aux_sym_insert_token1] = ACTIONS(5179), - [aux_sym_delete_token1] = ACTIONS(5179), - [aux_sym_highlight_token1] = ACTIONS(5179), - [aux_sym_edit_comment_token1] = ACTIONS(5179), - [anon_sym_CARET_LBRACK] = ACTIONS(5179), - [anon_sym_LBRACK_CARET] = ACTIONS(5179), - [sym_uri_autolink] = ACTIONS(5179), - [sym_email_autolink] = ACTIONS(5179), - [sym__whitespace_ge_2] = ACTIONS(5179), - [aux_sym__whitespace_token1] = ACTIONS(5181), - [sym__word_no_digit] = ACTIONS(5179), - [sym__digits] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5181), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5179), - [sym__code_span_start] = ACTIONS(5179), - [sym__emphasis_open_star] = ACTIONS(5179), - [sym__emphasis_open_underscore] = ACTIONS(5179), - [sym__strikeout_open] = ACTIONS(5179), - [sym__latex_span_start] = ACTIONS(5179), - [sym__single_quote_open] = ACTIONS(5179), - [sym__double_quote_open] = ACTIONS(5179), - [sym__superscript_open] = ACTIONS(5179), - [sym__subscript_open] = ACTIONS(5179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5179), - [sym__cite_author_in_text] = ACTIONS(5179), - [sym__cite_suppress_author] = ACTIONS(5179), - [sym__shortcode_open_escaped] = ACTIONS(5179), - [sym__shortcode_open] = ACTIONS(5179), - [sym__unclosed_span] = ACTIONS(5179), - [sym__strong_emphasis_open_star] = ACTIONS(5179), - [sym__strong_emphasis_open_underscore] = ACTIONS(5179), + [STATE(1367)] = { + [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(1393)] = { - [sym__backslash_escape] = ACTIONS(5007), - [sym_entity_reference] = ACTIONS(5007), - [sym_numeric_character_reference] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym__newline_token] = ACTIONS(5007), - [aux_sym_insert_token1] = ACTIONS(5007), - [aux_sym_delete_token1] = ACTIONS(5007), - [aux_sym_highlight_token1] = ACTIONS(5007), - [aux_sym_edit_comment_token1] = ACTIONS(5007), - [anon_sym_CARET_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_CARET] = ACTIONS(5007), - [sym_uri_autolink] = ACTIONS(5007), - [sym_email_autolink] = ACTIONS(5007), - [sym__whitespace_ge_2] = ACTIONS(5007), - [aux_sym__whitespace_token1] = ACTIONS(5009), - [sym__word_no_digit] = ACTIONS(5007), - [sym__digits] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), - [sym__code_span_start] = ACTIONS(5007), - [sym__emphasis_open_star] = ACTIONS(5007), - [sym__emphasis_open_underscore] = ACTIONS(5007), - [sym__strikeout_open] = ACTIONS(5007), - [sym__latex_span_start] = ACTIONS(5007), - [sym__single_quote_open] = ACTIONS(5007), - [sym__double_quote_open] = ACTIONS(5007), - [sym__superscript_open] = ACTIONS(5007), - [sym__subscript_open] = ACTIONS(5007), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5007), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5007), - [sym__cite_author_in_text] = ACTIONS(5007), - [sym__cite_suppress_author] = ACTIONS(5007), - [sym__shortcode_open_escaped] = ACTIONS(5007), - [sym__shortcode_open] = ACTIONS(5007), - [sym__unclosed_span] = ACTIONS(5007), - [sym__strong_emphasis_open_star] = ACTIONS(5007), - [sym__strong_emphasis_open_underscore] = ACTIONS(5007), + [STATE(1368)] = { + [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(1394)] = { - [sym__backslash_escape] = ACTIONS(5091), - [sym_entity_reference] = ACTIONS(5091), - [sym_numeric_character_reference] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(5091), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_BSLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym_BQUOTE] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [sym__newline_token] = ACTIONS(5091), - [aux_sym_insert_token1] = ACTIONS(5091), - [aux_sym_delete_token1] = ACTIONS(5091), - [aux_sym_highlight_token1] = ACTIONS(5091), - [aux_sym_edit_comment_token1] = ACTIONS(5091), - [anon_sym_CARET_LBRACK] = ACTIONS(5091), - [anon_sym_LBRACK_CARET] = ACTIONS(5091), - [sym_uri_autolink] = ACTIONS(5091), - [sym_email_autolink] = ACTIONS(5091), - [sym__whitespace_ge_2] = ACTIONS(5091), - [aux_sym__whitespace_token1] = ACTIONS(5093), - [sym__word_no_digit] = ACTIONS(5091), - [sym__digits] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), - [sym__code_span_start] = ACTIONS(5091), - [sym__emphasis_open_star] = ACTIONS(5091), - [sym__emphasis_open_underscore] = ACTIONS(5091), - [sym__emphasis_close_star] = ACTIONS(5091), - [sym__strikeout_open] = ACTIONS(5091), - [sym__latex_span_start] = ACTIONS(5091), - [sym__single_quote_open] = ACTIONS(5091), - [sym__double_quote_open] = ACTIONS(5091), - [sym__superscript_open] = ACTIONS(5091), - [sym__subscript_open] = ACTIONS(5091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5091), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5091), - [sym__cite_author_in_text] = ACTIONS(5091), - [sym__cite_suppress_author] = ACTIONS(5091), - [sym__shortcode_open_escaped] = ACTIONS(5091), - [sym__shortcode_open] = ACTIONS(5091), - [sym__unclosed_span] = ACTIONS(5091), - [sym__strong_emphasis_open_star] = ACTIONS(5091), - [sym__strong_emphasis_open_underscore] = ACTIONS(5091), + [STATE(1369)] = { + [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(1395)] = { - [sym__backslash_escape] = ACTIONS(5179), - [sym_entity_reference] = ACTIONS(5179), - [sym_numeric_character_reference] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_QMARK] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_BSLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [sym__newline_token] = ACTIONS(5179), - [aux_sym_insert_token1] = ACTIONS(5179), - [aux_sym_insert_token2] = ACTIONS(5179), - [aux_sym_delete_token1] = ACTIONS(5179), - [aux_sym_highlight_token1] = ACTIONS(5179), - [aux_sym_edit_comment_token1] = ACTIONS(5179), - [anon_sym_CARET_LBRACK] = ACTIONS(5179), - [anon_sym_LBRACK_CARET] = ACTIONS(5179), - [sym_uri_autolink] = ACTIONS(5179), - [sym_email_autolink] = ACTIONS(5179), - [sym__whitespace_ge_2] = ACTIONS(5181), - [aux_sym__whitespace_token1] = ACTIONS(5181), - [sym__word_no_digit] = ACTIONS(5179), - [sym__digits] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5181), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5179), - [sym__code_span_start] = ACTIONS(5179), - [sym__emphasis_open_star] = ACTIONS(5179), - [sym__emphasis_open_underscore] = ACTIONS(5179), - [sym__strikeout_open] = ACTIONS(5179), - [sym__latex_span_start] = ACTIONS(5179), - [sym__single_quote_open] = ACTIONS(5179), - [sym__double_quote_open] = ACTIONS(5179), - [sym__superscript_open] = ACTIONS(5179), - [sym__subscript_open] = ACTIONS(5179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5179), - [sym__cite_author_in_text] = ACTIONS(5179), - [sym__cite_suppress_author] = ACTIONS(5179), - [sym__shortcode_open_escaped] = ACTIONS(5179), - [sym__shortcode_open] = ACTIONS(5179), - [sym__unclosed_span] = ACTIONS(5179), - [sym__strong_emphasis_open_star] = ACTIONS(5179), - [sym__strong_emphasis_open_underscore] = ACTIONS(5179), + [STATE(1370)] = { + [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(1396)] = { - [sym__backslash_escape] = ACTIONS(5007), - [sym_entity_reference] = ACTIONS(5007), - [sym_numeric_character_reference] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH] = ACTIONS(5009), - [anon_sym_CARET] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym__newline_token] = ACTIONS(5007), - [aux_sym_insert_token1] = ACTIONS(5007), - [aux_sym_insert_token2] = ACTIONS(5007), - [aux_sym_delete_token1] = ACTIONS(5007), - [aux_sym_highlight_token1] = ACTIONS(5007), - [aux_sym_edit_comment_token1] = ACTIONS(5007), - [anon_sym_CARET_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_CARET] = ACTIONS(5007), - [sym_uri_autolink] = ACTIONS(5007), - [sym_email_autolink] = ACTIONS(5007), - [sym__whitespace_ge_2] = ACTIONS(5009), - [aux_sym__whitespace_token1] = ACTIONS(5009), - [sym__word_no_digit] = ACTIONS(5007), - [sym__digits] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), - [sym__code_span_start] = ACTIONS(5007), - [sym__emphasis_open_star] = ACTIONS(5007), - [sym__emphasis_open_underscore] = ACTIONS(5007), - [sym__strikeout_open] = ACTIONS(5007), - [sym__latex_span_start] = ACTIONS(5007), - [sym__single_quote_open] = ACTIONS(5007), - [sym__double_quote_open] = ACTIONS(5007), - [sym__superscript_open] = ACTIONS(5007), - [sym__subscript_open] = ACTIONS(5007), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5007), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5007), - [sym__cite_author_in_text] = ACTIONS(5007), - [sym__cite_suppress_author] = ACTIONS(5007), - [sym__shortcode_open_escaped] = ACTIONS(5007), - [sym__shortcode_open] = ACTIONS(5007), - [sym__unclosed_span] = ACTIONS(5007), - [sym__strong_emphasis_open_star] = ACTIONS(5007), - [sym__strong_emphasis_open_underscore] = ACTIONS(5007), + [STATE(1371)] = { + [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(1397)] = { - [sym__backslash_escape] = ACTIONS(5095), - [sym_entity_reference] = ACTIONS(5095), - [sym_numeric_character_reference] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_BSLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym_BQUOTE] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [sym__newline_token] = ACTIONS(5095), - [aux_sym_insert_token1] = ACTIONS(5095), - [aux_sym_delete_token1] = ACTIONS(5095), - [aux_sym_highlight_token1] = ACTIONS(5095), - [aux_sym_edit_comment_token1] = ACTIONS(5095), - [anon_sym_CARET_LBRACK] = ACTIONS(5095), - [anon_sym_LBRACK_CARET] = ACTIONS(5095), - [sym_uri_autolink] = ACTIONS(5095), - [sym_email_autolink] = ACTIONS(5095), - [sym__whitespace_ge_2] = ACTIONS(5095), - [aux_sym__whitespace_token1] = ACTIONS(5097), - [sym__word_no_digit] = ACTIONS(5095), - [sym__digits] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5095), - [sym__code_span_start] = ACTIONS(5095), - [sym__emphasis_open_star] = ACTIONS(5095), - [sym__emphasis_open_underscore] = ACTIONS(5095), - [sym__emphasis_close_star] = ACTIONS(5095), - [sym__strikeout_open] = ACTIONS(5095), - [sym__latex_span_start] = ACTIONS(5095), - [sym__single_quote_open] = ACTIONS(5095), - [sym__double_quote_open] = ACTIONS(5095), - [sym__superscript_open] = ACTIONS(5095), - [sym__subscript_open] = ACTIONS(5095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5095), - [sym__cite_author_in_text] = ACTIONS(5095), - [sym__cite_suppress_author] = ACTIONS(5095), - [sym__shortcode_open_escaped] = ACTIONS(5095), - [sym__shortcode_open] = ACTIONS(5095), - [sym__unclosed_span] = ACTIONS(5095), - [sym__strong_emphasis_open_star] = ACTIONS(5095), - [sym__strong_emphasis_open_underscore] = ACTIONS(5095), + [STATE(1372)] = { + [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(1398)] = { - [sym__backslash_escape] = ACTIONS(5099), - [sym_entity_reference] = ACTIONS(5099), - [sym_numeric_character_reference] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [sym__newline_token] = ACTIONS(5099), - [aux_sym_insert_token1] = ACTIONS(5099), - [aux_sym_delete_token1] = ACTIONS(5099), - [aux_sym_highlight_token1] = ACTIONS(5099), - [aux_sym_edit_comment_token1] = ACTIONS(5099), - [anon_sym_CARET_LBRACK] = ACTIONS(5099), - [anon_sym_LBRACK_CARET] = ACTIONS(5099), - [sym_uri_autolink] = ACTIONS(5099), - [sym_email_autolink] = ACTIONS(5099), - [sym__whitespace_ge_2] = ACTIONS(5099), - [aux_sym__whitespace_token1] = ACTIONS(5101), - [sym__word_no_digit] = ACTIONS(5099), - [sym__digits] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5099), - [sym__code_span_start] = ACTIONS(5099), - [sym__emphasis_open_star] = ACTIONS(5099), - [sym__emphasis_open_underscore] = ACTIONS(5099), - [sym__emphasis_close_star] = ACTIONS(5099), - [sym__strikeout_open] = ACTIONS(5099), - [sym__latex_span_start] = ACTIONS(5099), - [sym__single_quote_open] = ACTIONS(5099), - [sym__double_quote_open] = ACTIONS(5099), - [sym__superscript_open] = ACTIONS(5099), - [sym__subscript_open] = ACTIONS(5099), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5099), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5099), - [sym__cite_author_in_text] = ACTIONS(5099), - [sym__cite_suppress_author] = ACTIONS(5099), - [sym__shortcode_open_escaped] = ACTIONS(5099), - [sym__shortcode_open] = ACTIONS(5099), - [sym__unclosed_span] = ACTIONS(5099), - [sym__strong_emphasis_open_star] = ACTIONS(5099), - [sym__strong_emphasis_open_underscore] = ACTIONS(5099), + [STATE(1373)] = { + [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(1399)] = { - [sym__backslash_escape] = ACTIONS(5103), - [sym_entity_reference] = ACTIONS(5103), - [sym_numeric_character_reference] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(5103), - [anon_sym_POUND] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_BSLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [sym__newline_token] = ACTIONS(5103), - [aux_sym_insert_token1] = ACTIONS(5103), - [aux_sym_delete_token1] = ACTIONS(5103), - [aux_sym_highlight_token1] = ACTIONS(5103), - [aux_sym_edit_comment_token1] = ACTIONS(5103), - [anon_sym_CARET_LBRACK] = ACTIONS(5103), - [anon_sym_LBRACK_CARET] = ACTIONS(5103), - [sym_uri_autolink] = ACTIONS(5103), - [sym_email_autolink] = ACTIONS(5103), - [sym__whitespace_ge_2] = ACTIONS(5103), - [aux_sym__whitespace_token1] = ACTIONS(5105), - [sym__word_no_digit] = ACTIONS(5103), - [sym__digits] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5103), - [sym__code_span_start] = ACTIONS(5103), - [sym__emphasis_open_star] = ACTIONS(5103), - [sym__emphasis_open_underscore] = ACTIONS(5103), - [sym__emphasis_close_star] = ACTIONS(5103), - [sym__strikeout_open] = ACTIONS(5103), - [sym__latex_span_start] = ACTIONS(5103), - [sym__single_quote_open] = ACTIONS(5103), - [sym__double_quote_open] = ACTIONS(5103), - [sym__superscript_open] = ACTIONS(5103), - [sym__subscript_open] = ACTIONS(5103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5103), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5103), - [sym__cite_author_in_text] = ACTIONS(5103), - [sym__cite_suppress_author] = ACTIONS(5103), - [sym__shortcode_open_escaped] = ACTIONS(5103), - [sym__shortcode_open] = ACTIONS(5103), - [sym__unclosed_span] = ACTIONS(5103), - [sym__strong_emphasis_open_star] = ACTIONS(5103), - [sym__strong_emphasis_open_underscore] = ACTIONS(5103), + [STATE(1374)] = { + [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(1400)] = { - [sym__backslash_escape] = ACTIONS(5107), - [sym_entity_reference] = ACTIONS(5107), - [sym_numeric_character_reference] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_COLON] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_BSLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_BQUOTE] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_PIPE] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [sym__newline_token] = ACTIONS(5107), - [aux_sym_insert_token1] = ACTIONS(5107), - [aux_sym_delete_token1] = ACTIONS(5107), - [aux_sym_highlight_token1] = ACTIONS(5107), - [aux_sym_edit_comment_token1] = ACTIONS(5107), - [anon_sym_CARET_LBRACK] = ACTIONS(5107), - [anon_sym_LBRACK_CARET] = ACTIONS(5107), - [sym_uri_autolink] = ACTIONS(5107), - [sym_email_autolink] = ACTIONS(5107), - [sym__whitespace_ge_2] = ACTIONS(5107), - [aux_sym__whitespace_token1] = ACTIONS(5109), - [sym__word_no_digit] = ACTIONS(5107), - [sym__digits] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5107), - [sym__code_span_start] = ACTIONS(5107), - [sym__emphasis_open_star] = ACTIONS(5107), - [sym__emphasis_open_underscore] = ACTIONS(5107), - [sym__emphasis_close_star] = ACTIONS(5107), - [sym__strikeout_open] = ACTIONS(5107), - [sym__latex_span_start] = ACTIONS(5107), - [sym__single_quote_open] = ACTIONS(5107), - [sym__double_quote_open] = ACTIONS(5107), - [sym__superscript_open] = ACTIONS(5107), - [sym__subscript_open] = ACTIONS(5107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5107), - [sym__cite_author_in_text] = ACTIONS(5107), - [sym__cite_suppress_author] = ACTIONS(5107), - [sym__shortcode_open_escaped] = ACTIONS(5107), - [sym__shortcode_open] = ACTIONS(5107), - [sym__unclosed_span] = ACTIONS(5107), - [sym__strong_emphasis_open_star] = ACTIONS(5107), - [sym__strong_emphasis_open_underscore] = ACTIONS(5107), + [STATE(1375)] = { + [sym__backslash_escape] = ACTIONS(4495), + [sym_entity_reference] = ACTIONS(4495), + [sym_numeric_character_reference] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_QMARK] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_BSLASH] = ACTIONS(4497), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_BQUOTE] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [sym__newline_token] = ACTIONS(4495), + [aux_sym_insert_token1] = ACTIONS(4495), + [aux_sym_delete_token1] = ACTIONS(4495), + [aux_sym_highlight_token1] = ACTIONS(4495), + [aux_sym_edit_comment_token1] = ACTIONS(4495), + [anon_sym_CARET_LBRACK] = ACTIONS(4495), + [anon_sym_LBRACK_CARET] = ACTIONS(4495), + [sym_uri_autolink] = ACTIONS(4495), + [sym_email_autolink] = ACTIONS(4495), + [sym__whitespace_ge_2] = ACTIONS(4495), + [aux_sym__whitespace_token1] = ACTIONS(4497), + [sym__word_no_digit] = ACTIONS(4495), + [sym__digits] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4495), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(4495), + [sym__emphasis_open_underscore] = ACTIONS(4495), + [sym__emphasis_close_underscore] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4495), + [sym__latex_span_start] = ACTIONS(4495), + [sym__single_quote_open] = ACTIONS(4495), + [sym__double_quote_open] = ACTIONS(4495), + [sym__superscript_open] = ACTIONS(4495), + [sym__subscript_open] = ACTIONS(4495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4495), + [sym__cite_author_in_text] = ACTIONS(4495), + [sym__cite_suppress_author] = ACTIONS(4495), + [sym__shortcode_open_escaped] = ACTIONS(4495), + [sym__shortcode_open] = ACTIONS(4495), + [sym__unclosed_span] = ACTIONS(4495), + [sym__strong_emphasis_open_star] = ACTIONS(4495), + [sym__strong_emphasis_open_underscore] = ACTIONS(4495), }, - [STATE(1401)] = { - [sym__backslash_escape] = ACTIONS(5111), - [sym_entity_reference] = ACTIONS(5111), - [sym_numeric_character_reference] = ACTIONS(5111), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym_BQUOTE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [sym__newline_token] = ACTIONS(5111), - [aux_sym_insert_token1] = ACTIONS(5111), - [aux_sym_delete_token1] = ACTIONS(5111), - [aux_sym_highlight_token1] = ACTIONS(5111), - [aux_sym_edit_comment_token1] = ACTIONS(5111), - [anon_sym_CARET_LBRACK] = ACTIONS(5111), - [anon_sym_LBRACK_CARET] = ACTIONS(5111), - [sym_uri_autolink] = ACTIONS(5111), - [sym_email_autolink] = ACTIONS(5111), - [sym__whitespace_ge_2] = ACTIONS(5111), - [aux_sym__whitespace_token1] = ACTIONS(5113), - [sym__word_no_digit] = ACTIONS(5111), - [sym__digits] = ACTIONS(5111), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [sym__code_span_start] = ACTIONS(5111), - [sym__emphasis_open_star] = ACTIONS(5111), - [sym__emphasis_open_underscore] = ACTIONS(5111), - [sym__emphasis_close_star] = ACTIONS(5111), - [sym__strikeout_open] = ACTIONS(5111), - [sym__latex_span_start] = ACTIONS(5111), - [sym__single_quote_open] = ACTIONS(5111), - [sym__double_quote_open] = ACTIONS(5111), - [sym__superscript_open] = ACTIONS(5111), - [sym__subscript_open] = ACTIONS(5111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5111), - [sym__cite_author_in_text] = ACTIONS(5111), - [sym__cite_suppress_author] = ACTIONS(5111), - [sym__shortcode_open_escaped] = ACTIONS(5111), - [sym__shortcode_open] = ACTIONS(5111), - [sym__unclosed_span] = ACTIONS(5111), - [sym__strong_emphasis_open_star] = ACTIONS(5111), - [sym__strong_emphasis_open_underscore] = ACTIONS(5111), + [STATE(1376)] = { + [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(1402)] = { - [sym__backslash_escape] = ACTIONS(5115), - [sym_entity_reference] = ACTIONS(5115), - [sym_numeric_character_reference] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(5115), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_QMARK] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym_BQUOTE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [sym__newline_token] = ACTIONS(5115), - [aux_sym_insert_token1] = ACTIONS(5115), - [aux_sym_delete_token1] = ACTIONS(5115), - [aux_sym_highlight_token1] = ACTIONS(5115), - [aux_sym_edit_comment_token1] = ACTIONS(5115), - [anon_sym_CARET_LBRACK] = ACTIONS(5115), - [anon_sym_LBRACK_CARET] = ACTIONS(5115), - [sym_uri_autolink] = ACTIONS(5115), - [sym_email_autolink] = ACTIONS(5115), - [sym__whitespace_ge_2] = ACTIONS(5115), - [aux_sym__whitespace_token1] = ACTIONS(5117), - [sym__word_no_digit] = ACTIONS(5115), - [sym__digits] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5115), - [sym__code_span_start] = ACTIONS(5115), - [sym__emphasis_open_star] = ACTIONS(5115), - [sym__emphasis_open_underscore] = ACTIONS(5115), - [sym__emphasis_close_star] = ACTIONS(5115), - [sym__strikeout_open] = ACTIONS(5115), - [sym__latex_span_start] = ACTIONS(5115), - [sym__single_quote_open] = ACTIONS(5115), - [sym__double_quote_open] = ACTIONS(5115), - [sym__superscript_open] = ACTIONS(5115), - [sym__subscript_open] = ACTIONS(5115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5115), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5115), - [sym__cite_author_in_text] = ACTIONS(5115), - [sym__cite_suppress_author] = ACTIONS(5115), - [sym__shortcode_open_escaped] = ACTIONS(5115), - [sym__shortcode_open] = ACTIONS(5115), - [sym__unclosed_span] = ACTIONS(5115), - [sym__strong_emphasis_open_star] = ACTIONS(5115), - [sym__strong_emphasis_open_underscore] = ACTIONS(5115), + [STATE(1377)] = { + [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(1403)] = { - [sym__backslash_escape] = ACTIONS(5119), - [sym_entity_reference] = ACTIONS(5119), - [sym_numeric_character_reference] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_AMP] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [sym__newline_token] = ACTIONS(5119), - [aux_sym_insert_token1] = ACTIONS(5119), - [aux_sym_delete_token1] = ACTIONS(5119), - [aux_sym_highlight_token1] = ACTIONS(5119), - [aux_sym_edit_comment_token1] = ACTIONS(5119), - [anon_sym_CARET_LBRACK] = ACTIONS(5119), - [anon_sym_LBRACK_CARET] = ACTIONS(5119), - [sym_uri_autolink] = ACTIONS(5119), - [sym_email_autolink] = ACTIONS(5119), - [sym__whitespace_ge_2] = ACTIONS(5119), - [aux_sym__whitespace_token1] = ACTIONS(5121), - [sym__word_no_digit] = ACTIONS(5119), - [sym__digits] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5119), - [sym__code_span_start] = ACTIONS(5119), - [sym__emphasis_open_star] = ACTIONS(5119), - [sym__emphasis_open_underscore] = ACTIONS(5119), - [sym__emphasis_close_star] = ACTIONS(5119), - [sym__strikeout_open] = ACTIONS(5119), - [sym__latex_span_start] = ACTIONS(5119), - [sym__single_quote_open] = ACTIONS(5119), - [sym__double_quote_open] = ACTIONS(5119), - [sym__superscript_open] = ACTIONS(5119), - [sym__subscript_open] = ACTIONS(5119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5119), - [sym__cite_author_in_text] = ACTIONS(5119), - [sym__cite_suppress_author] = ACTIONS(5119), - [sym__shortcode_open_escaped] = ACTIONS(5119), - [sym__shortcode_open] = ACTIONS(5119), - [sym__unclosed_span] = ACTIONS(5119), - [sym__strong_emphasis_open_star] = ACTIONS(5119), - [sym__strong_emphasis_open_underscore] = ACTIONS(5119), + [STATE(1378)] = { + [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(1404)] = { - [sym__backslash_escape] = ACTIONS(5123), - [sym_entity_reference] = ACTIONS(5123), - [sym_numeric_character_reference] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_DQUOTE] = ACTIONS(5123), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym_BQUOTE] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [sym__newline_token] = ACTIONS(5123), - [aux_sym_insert_token1] = ACTIONS(5123), - [aux_sym_delete_token1] = ACTIONS(5123), - [aux_sym_highlight_token1] = ACTIONS(5123), - [aux_sym_edit_comment_token1] = ACTIONS(5123), - [anon_sym_CARET_LBRACK] = ACTIONS(5123), - [anon_sym_LBRACK_CARET] = ACTIONS(5123), - [sym_uri_autolink] = ACTIONS(5123), - [sym_email_autolink] = ACTIONS(5123), - [sym__whitespace_ge_2] = ACTIONS(5123), - [aux_sym__whitespace_token1] = ACTIONS(5125), - [sym__word_no_digit] = ACTIONS(5123), - [sym__digits] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), - [sym__code_span_start] = ACTIONS(5123), - [sym__emphasis_open_star] = ACTIONS(5123), - [sym__emphasis_open_underscore] = ACTIONS(5123), - [sym__emphasis_close_star] = ACTIONS(5123), - [sym__strikeout_open] = ACTIONS(5123), - [sym__latex_span_start] = ACTIONS(5123), - [sym__single_quote_open] = ACTIONS(5123), - [sym__double_quote_open] = ACTIONS(5123), - [sym__superscript_open] = ACTIONS(5123), - [sym__subscript_open] = ACTIONS(5123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5123), - [sym__cite_author_in_text] = ACTIONS(5123), - [sym__cite_suppress_author] = ACTIONS(5123), - [sym__shortcode_open_escaped] = ACTIONS(5123), - [sym__shortcode_open] = ACTIONS(5123), - [sym__unclosed_span] = ACTIONS(5123), - [sym__strong_emphasis_open_star] = ACTIONS(5123), - [sym__strong_emphasis_open_underscore] = ACTIONS(5123), + [STATE(1379)] = { + [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(1405)] = { + [STATE(1380)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -143517,7 +140413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(4631), [anon_sym_AMP] = ACTIONS(4633), [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_STAR] = ACTIONS(4631), [anon_sym_PLUS] = ACTIONS(4631), [anon_sym_COMMA] = ACTIONS(4631), [anon_sym_DASH] = ACTIONS(4633), @@ -143555,7 +140450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__emphasis_close_underscore] = ACTIONS(4631), [sym__strikeout_open] = ACTIONS(4631), [sym__latex_span_start] = ACTIONS(4631), [sym__single_quote_open] = ACTIONS(4631), @@ -143572,6263 +140467,6372 @@ 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(1381)] = { + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__emphasis_close_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), + }, + [STATE(1382)] = { + [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(1383)] = { + [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(1384)] = { + [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(1385)] = { + [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__emphasis_close_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(1386)] = { + [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_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(1387)] = { + [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(1388)] = { + [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(1389)] = { + [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_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(1390)] = { + [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_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(1391)] = { + [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_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(1392)] = { + [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_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(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_underscore] = 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(1394)] = { + [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_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(1395)] = { + [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_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(1396)] = { + [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_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(1397)] = { + [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_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(1398)] = { + [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_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(1399)] = { + [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_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(1400)] = { + [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_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(1401)] = { + [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_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(1402)] = { + [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_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(1403)] = { + [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), + [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(1404)] = { + [ts_builtin_sym_end] = ACTIONS(4539), + [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__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(1405)] = { + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__emphasis_close_underscore] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), + }, [STATE(1406)] = { - [ts_builtin_sym_end] = ACTIONS(5007), - [sym__backslash_escape] = ACTIONS(5007), - [sym_entity_reference] = ACTIONS(5007), - [sym_numeric_character_reference] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH] = ACTIONS(5009), - [anon_sym_CARET] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym__newline_token] = ACTIONS(5007), - [aux_sym_insert_token1] = ACTIONS(5007), - [aux_sym_delete_token1] = ACTIONS(5007), - [aux_sym_highlight_token1] = ACTIONS(5007), - [aux_sym_edit_comment_token1] = ACTIONS(5007), - [anon_sym_CARET_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_CARET] = ACTIONS(5007), - [sym_uri_autolink] = ACTIONS(5007), - [sym_email_autolink] = ACTIONS(5007), - [sym__whitespace_ge_2] = ACTIONS(5007), - [aux_sym__whitespace_token1] = ACTIONS(5009), - [sym__word_no_digit] = ACTIONS(5007), - [sym__digits] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), - [sym__code_span_start] = ACTIONS(5007), - [sym__emphasis_open_star] = ACTIONS(5007), - [sym__emphasis_open_underscore] = ACTIONS(5007), - [sym__strikeout_open] = ACTIONS(5007), - [sym__latex_span_start] = ACTIONS(5007), - [sym__single_quote_open] = ACTIONS(5007), - [sym__double_quote_open] = ACTIONS(5007), - [sym__superscript_open] = ACTIONS(5007), - [sym__subscript_open] = ACTIONS(5007), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5007), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5007), - [sym__cite_author_in_text] = ACTIONS(5007), - [sym__cite_suppress_author] = ACTIONS(5007), - [sym__shortcode_open_escaped] = ACTIONS(5007), - [sym__shortcode_open] = ACTIONS(5007), - [sym__unclosed_span] = ACTIONS(5007), - [sym__strong_emphasis_open_star] = ACTIONS(5007), - [sym__strong_emphasis_open_underscore] = ACTIONS(5007), + [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__superscript_close] = 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(1407)] = { - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__emphasis_close_star] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [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_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(1408)] = { - [sym__backslash_escape] = ACTIONS(5127), - [sym_entity_reference] = ACTIONS(5127), - [sym_numeric_character_reference] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_DQUOTE] = ACTIONS(5127), - [anon_sym_POUND] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_PERCENT] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_QMARK] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym_BQUOTE] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym__newline_token] = ACTIONS(5127), - [aux_sym_insert_token1] = ACTIONS(5127), - [aux_sym_delete_token1] = ACTIONS(5127), - [aux_sym_highlight_token1] = ACTIONS(5127), - [aux_sym_edit_comment_token1] = ACTIONS(5127), - [anon_sym_CARET_LBRACK] = ACTIONS(5127), - [anon_sym_LBRACK_CARET] = ACTIONS(5127), - [sym_uri_autolink] = ACTIONS(5127), - [sym_email_autolink] = ACTIONS(5127), - [sym__whitespace_ge_2] = ACTIONS(5127), - [aux_sym__whitespace_token1] = ACTIONS(5129), - [sym__word_no_digit] = ACTIONS(5127), - [sym__digits] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5127), - [sym__code_span_start] = ACTIONS(5127), - [sym__emphasis_open_star] = ACTIONS(5127), - [sym__emphasis_open_underscore] = ACTIONS(5127), - [sym__emphasis_close_star] = ACTIONS(5127), - [sym__strikeout_open] = ACTIONS(5127), - [sym__latex_span_start] = ACTIONS(5127), - [sym__single_quote_open] = ACTIONS(5127), - [sym__double_quote_open] = ACTIONS(5127), - [sym__superscript_open] = ACTIONS(5127), - [sym__subscript_open] = ACTIONS(5127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5127), - [sym__cite_author_in_text] = ACTIONS(5127), - [sym__cite_suppress_author] = ACTIONS(5127), - [sym__shortcode_open_escaped] = ACTIONS(5127), - [sym__shortcode_open] = ACTIONS(5127), - [sym__unclosed_span] = ACTIONS(5127), - [sym__strong_emphasis_open_star] = ACTIONS(5127), - [sym__strong_emphasis_open_underscore] = ACTIONS(5127), + [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(1409)] = { - [sym__backslash_escape] = ACTIONS(5131), - [sym_entity_reference] = ACTIONS(5131), - [sym_numeric_character_reference] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(5131), - [anon_sym_POUND] = ACTIONS(5131), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(5133), - [anon_sym_SQUOTE] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_QMARK] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(5133), - [anon_sym_BQUOTE] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_PIPE] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [sym__newline_token] = ACTIONS(5131), - [aux_sym_insert_token1] = ACTIONS(5131), - [aux_sym_delete_token1] = ACTIONS(5131), - [aux_sym_highlight_token1] = ACTIONS(5131), - [aux_sym_edit_comment_token1] = ACTIONS(5131), - [anon_sym_CARET_LBRACK] = ACTIONS(5131), - [anon_sym_LBRACK_CARET] = ACTIONS(5131), - [sym_uri_autolink] = ACTIONS(5131), - [sym_email_autolink] = ACTIONS(5131), - [sym__whitespace_ge_2] = ACTIONS(5131), - [aux_sym__whitespace_token1] = ACTIONS(5133), - [sym__word_no_digit] = ACTIONS(5131), - [sym__digits] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), - [sym__code_span_start] = ACTIONS(5131), - [sym__emphasis_open_star] = ACTIONS(5131), - [sym__emphasis_open_underscore] = ACTIONS(5131), - [sym__emphasis_close_star] = ACTIONS(5131), - [sym__strikeout_open] = ACTIONS(5131), - [sym__latex_span_start] = ACTIONS(5131), - [sym__single_quote_open] = ACTIONS(5131), - [sym__double_quote_open] = ACTIONS(5131), - [sym__superscript_open] = ACTIONS(5131), - [sym__subscript_open] = ACTIONS(5131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5131), - [sym__cite_author_in_text] = ACTIONS(5131), - [sym__cite_suppress_author] = ACTIONS(5131), - [sym__shortcode_open_escaped] = ACTIONS(5131), - [sym__shortcode_open] = ACTIONS(5131), - [sym__unclosed_span] = ACTIONS(5131), - [sym__strong_emphasis_open_star] = ACTIONS(5131), - [sym__strong_emphasis_open_underscore] = ACTIONS(5131), + [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__superscript_close] = 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(1410)] = { - [sym__backslash_escape] = ACTIONS(5135), - [sym_entity_reference] = ACTIONS(5135), - [sym_numeric_character_reference] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_AMP] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_QMARK] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH] = ACTIONS(5137), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [sym__newline_token] = ACTIONS(5135), - [aux_sym_insert_token1] = ACTIONS(5135), - [aux_sym_delete_token1] = ACTIONS(5135), - [aux_sym_highlight_token1] = ACTIONS(5135), - [aux_sym_edit_comment_token1] = ACTIONS(5135), - [anon_sym_CARET_LBRACK] = ACTIONS(5135), - [anon_sym_LBRACK_CARET] = ACTIONS(5135), - [sym_uri_autolink] = ACTIONS(5135), - [sym_email_autolink] = ACTIONS(5135), - [sym__whitespace_ge_2] = ACTIONS(5135), - [aux_sym__whitespace_token1] = ACTIONS(5137), - [sym__word_no_digit] = ACTIONS(5135), - [sym__digits] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5135), - [sym__code_span_start] = ACTIONS(5135), - [sym__emphasis_open_star] = ACTIONS(5135), - [sym__emphasis_open_underscore] = ACTIONS(5135), - [sym__emphasis_close_star] = ACTIONS(5135), - [sym__strikeout_open] = ACTIONS(5135), - [sym__latex_span_start] = ACTIONS(5135), - [sym__single_quote_open] = ACTIONS(5135), - [sym__double_quote_open] = ACTIONS(5135), - [sym__superscript_open] = ACTIONS(5135), - [sym__subscript_open] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5135), - [sym__cite_author_in_text] = ACTIONS(5135), - [sym__cite_suppress_author] = ACTIONS(5135), - [sym__shortcode_open_escaped] = ACTIONS(5135), - [sym__shortcode_open] = ACTIONS(5135), - [sym__unclosed_span] = ACTIONS(5135), - [sym__strong_emphasis_open_star] = ACTIONS(5135), - [sym__strong_emphasis_open_underscore] = ACTIONS(5135), + [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_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(1411)] = { - [sym__backslash_escape] = ACTIONS(5139), - [sym_entity_reference] = ACTIONS(5139), - [sym_numeric_character_reference] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_DQUOTE] = ACTIONS(5139), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH] = ACTIONS(5141), - [anon_sym_CARET] = ACTIONS(5141), - [anon_sym_BQUOTE] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_RPAREN] = ACTIONS(5139), - [sym__newline_token] = ACTIONS(5139), - [aux_sym_insert_token1] = ACTIONS(5139), - [aux_sym_delete_token1] = ACTIONS(5139), - [aux_sym_highlight_token1] = ACTIONS(5139), - [aux_sym_edit_comment_token1] = ACTIONS(5139), - [anon_sym_CARET_LBRACK] = ACTIONS(5139), - [anon_sym_LBRACK_CARET] = ACTIONS(5139), - [sym_uri_autolink] = ACTIONS(5139), - [sym_email_autolink] = ACTIONS(5139), - [sym__whitespace_ge_2] = ACTIONS(5139), - [aux_sym__whitespace_token1] = ACTIONS(5141), - [sym__word_no_digit] = ACTIONS(5139), - [sym__digits] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5141), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5139), - [sym__code_span_start] = ACTIONS(5139), - [sym__emphasis_open_star] = ACTIONS(5139), - [sym__emphasis_open_underscore] = ACTIONS(5139), - [sym__emphasis_close_star] = ACTIONS(5139), - [sym__strikeout_open] = ACTIONS(5139), - [sym__latex_span_start] = ACTIONS(5139), - [sym__single_quote_open] = ACTIONS(5139), - [sym__double_quote_open] = ACTIONS(5139), - [sym__superscript_open] = ACTIONS(5139), - [sym__subscript_open] = ACTIONS(5139), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5139), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5139), - [sym__cite_author_in_text] = ACTIONS(5139), - [sym__cite_suppress_author] = ACTIONS(5139), - [sym__shortcode_open_escaped] = ACTIONS(5139), - [sym__shortcode_open] = ACTIONS(5139), - [sym__unclosed_span] = ACTIONS(5139), - [sym__strong_emphasis_open_star] = ACTIONS(5139), - [sym__strong_emphasis_open_underscore] = ACTIONS(5139), + [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_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(1412)] = { - [sym__backslash_escape] = ACTIONS(5143), - [sym_entity_reference] = ACTIONS(5143), - [sym_numeric_character_reference] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_DQUOTE] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_PERCENT] = ACTIONS(5143), - [anon_sym_AMP] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH] = ACTIONS(5145), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym_BQUOTE] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [sym__newline_token] = ACTIONS(5143), - [aux_sym_insert_token1] = ACTIONS(5143), - [aux_sym_delete_token1] = ACTIONS(5143), - [aux_sym_highlight_token1] = ACTIONS(5143), - [aux_sym_edit_comment_token1] = ACTIONS(5143), - [anon_sym_CARET_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_CARET] = ACTIONS(5143), - [sym_uri_autolink] = ACTIONS(5143), - [sym_email_autolink] = ACTIONS(5143), - [sym__whitespace_ge_2] = ACTIONS(5143), - [aux_sym__whitespace_token1] = ACTIONS(5145), - [sym__word_no_digit] = ACTIONS(5143), - [sym__digits] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5143), - [sym__code_span_start] = ACTIONS(5143), - [sym__emphasis_open_star] = ACTIONS(5143), - [sym__emphasis_open_underscore] = ACTIONS(5143), - [sym__emphasis_close_star] = ACTIONS(5143), - [sym__strikeout_open] = ACTIONS(5143), - [sym__latex_span_start] = ACTIONS(5143), - [sym__single_quote_open] = ACTIONS(5143), - [sym__double_quote_open] = ACTIONS(5143), - [sym__superscript_open] = ACTIONS(5143), - [sym__subscript_open] = ACTIONS(5143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5143), - [sym__cite_author_in_text] = ACTIONS(5143), - [sym__cite_suppress_author] = ACTIONS(5143), - [sym__shortcode_open_escaped] = ACTIONS(5143), - [sym__shortcode_open] = ACTIONS(5143), - [sym__unclosed_span] = ACTIONS(5143), - [sym__strong_emphasis_open_star] = ACTIONS(5143), - [sym__strong_emphasis_open_underscore] = ACTIONS(5143), + [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__emphasis_close_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(1413)] = { - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__emphasis_close_star] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [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__emphasis_close_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(1414)] = { - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__emphasis_close_star] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [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__emphasis_close_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(1415)] = { - [ts_builtin_sym_end] = ACTIONS(5011), - [sym__backslash_escape] = ACTIONS(5011), - [sym_entity_reference] = ACTIONS(5011), - [sym_numeric_character_reference] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_AMP] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym_BQUOTE] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym__newline_token] = ACTIONS(5011), - [aux_sym_insert_token1] = ACTIONS(5011), - [aux_sym_delete_token1] = ACTIONS(5011), - [aux_sym_highlight_token1] = ACTIONS(5011), - [aux_sym_edit_comment_token1] = ACTIONS(5011), - [anon_sym_CARET_LBRACK] = ACTIONS(5011), - [anon_sym_LBRACK_CARET] = ACTIONS(5011), - [sym_uri_autolink] = ACTIONS(5011), - [sym_email_autolink] = ACTIONS(5011), - [sym__whitespace_ge_2] = ACTIONS(5011), - [aux_sym__whitespace_token1] = ACTIONS(5013), - [sym__word_no_digit] = ACTIONS(5011), - [sym__digits] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5011), - [sym__code_span_start] = ACTIONS(5011), - [sym__emphasis_open_star] = ACTIONS(5011), - [sym__emphasis_open_underscore] = ACTIONS(5011), - [sym__strikeout_open] = ACTIONS(5011), - [sym__latex_span_start] = ACTIONS(5011), - [sym__single_quote_open] = ACTIONS(5011), - [sym__double_quote_open] = ACTIONS(5011), - [sym__superscript_open] = ACTIONS(5011), - [sym__subscript_open] = ACTIONS(5011), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5011), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5011), - [sym__cite_author_in_text] = ACTIONS(5011), - [sym__cite_suppress_author] = ACTIONS(5011), - [sym__shortcode_open_escaped] = ACTIONS(5011), - [sym__shortcode_open] = ACTIONS(5011), - [sym__unclosed_span] = ACTIONS(5011), - [sym__strong_emphasis_open_star] = ACTIONS(5011), - [sym__strong_emphasis_open_underscore] = ACTIONS(5011), + [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__superscript_close] = 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(1416)] = { - [sym__backslash_escape] = ACTIONS(5147), - [sym_entity_reference] = ACTIONS(5147), - [sym_numeric_character_reference] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_DQUOTE] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [sym__newline_token] = ACTIONS(5147), - [aux_sym_insert_token1] = ACTIONS(5147), - [aux_sym_delete_token1] = ACTIONS(5147), - [aux_sym_highlight_token1] = ACTIONS(5147), - [aux_sym_edit_comment_token1] = ACTIONS(5147), - [anon_sym_CARET_LBRACK] = ACTIONS(5147), - [anon_sym_LBRACK_CARET] = ACTIONS(5147), - [sym_uri_autolink] = ACTIONS(5147), - [sym_email_autolink] = ACTIONS(5147), - [sym__whitespace_ge_2] = ACTIONS(5147), - [aux_sym__whitespace_token1] = ACTIONS(5149), - [sym__word_no_digit] = ACTIONS(5147), - [sym__digits] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5147), - [sym__code_span_start] = ACTIONS(5147), - [sym__emphasis_open_star] = ACTIONS(5147), - [sym__emphasis_open_underscore] = ACTIONS(5147), - [sym__emphasis_close_star] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5147), - [sym__latex_span_start] = ACTIONS(5147), - [sym__single_quote_open] = ACTIONS(5147), - [sym__double_quote_open] = ACTIONS(5147), - [sym__superscript_open] = ACTIONS(5147), - [sym__subscript_open] = ACTIONS(5147), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5147), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5147), - [sym__cite_author_in_text] = ACTIONS(5147), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__shortcode_open_escaped] = ACTIONS(5147), - [sym__shortcode_open] = ACTIONS(5147), - [sym__unclosed_span] = ACTIONS(5147), - [sym__strong_emphasis_open_star] = ACTIONS(5147), - [sym__strong_emphasis_open_underscore] = ACTIONS(5147), + [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_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(1417)] = { - [sym__backslash_escape] = ACTIONS(5151), - [sym_entity_reference] = ACTIONS(5151), - [sym_numeric_character_reference] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_DQUOTE] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_PERCENT] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_QMARK] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [sym__newline_token] = ACTIONS(5151), - [aux_sym_insert_token1] = ACTIONS(5151), - [aux_sym_delete_token1] = ACTIONS(5151), - [aux_sym_highlight_token1] = ACTIONS(5151), - [aux_sym_edit_comment_token1] = ACTIONS(5151), - [anon_sym_CARET_LBRACK] = ACTIONS(5151), - [anon_sym_LBRACK_CARET] = ACTIONS(5151), - [sym_uri_autolink] = ACTIONS(5151), - [sym_email_autolink] = ACTIONS(5151), - [sym__whitespace_ge_2] = ACTIONS(5151), - [aux_sym__whitespace_token1] = ACTIONS(5153), - [sym__word_no_digit] = ACTIONS(5151), - [sym__digits] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5151), - [sym__code_span_start] = ACTIONS(5151), - [sym__emphasis_open_star] = ACTIONS(5151), - [sym__emphasis_open_underscore] = ACTIONS(5151), - [sym__emphasis_close_star] = ACTIONS(5151), - [sym__strikeout_open] = ACTIONS(5151), - [sym__latex_span_start] = ACTIONS(5151), - [sym__single_quote_open] = ACTIONS(5151), - [sym__double_quote_open] = ACTIONS(5151), - [sym__superscript_open] = ACTIONS(5151), - [sym__subscript_open] = ACTIONS(5151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5151), - [sym__cite_author_in_text] = ACTIONS(5151), - [sym__cite_suppress_author] = ACTIONS(5151), - [sym__shortcode_open_escaped] = ACTIONS(5151), - [sym__shortcode_open] = ACTIONS(5151), - [sym__unclosed_span] = ACTIONS(5151), - [sym__strong_emphasis_open_star] = ACTIONS(5151), - [sym__strong_emphasis_open_underscore] = ACTIONS(5151), + [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_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(1418)] = { - [sym__backslash_escape] = ACTIONS(5155), - [sym_entity_reference] = ACTIONS(5155), - [sym_numeric_character_reference] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_QMARK] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [sym__newline_token] = ACTIONS(5155), - [aux_sym_insert_token1] = ACTIONS(5155), - [aux_sym_delete_token1] = ACTIONS(5155), - [aux_sym_highlight_token1] = ACTIONS(5155), - [aux_sym_edit_comment_token1] = ACTIONS(5155), - [anon_sym_CARET_LBRACK] = ACTIONS(5155), - [anon_sym_LBRACK_CARET] = ACTIONS(5155), - [sym_uri_autolink] = ACTIONS(5155), - [sym_email_autolink] = ACTIONS(5155), - [sym__whitespace_ge_2] = ACTIONS(5155), - [aux_sym__whitespace_token1] = ACTIONS(5157), - [sym__word_no_digit] = ACTIONS(5155), - [sym__digits] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5155), - [sym__code_span_start] = ACTIONS(5155), - [sym__emphasis_open_star] = ACTIONS(5155), - [sym__emphasis_open_underscore] = ACTIONS(5155), - [sym__emphasis_close_star] = ACTIONS(5155), - [sym__strikeout_open] = ACTIONS(5155), - [sym__latex_span_start] = ACTIONS(5155), - [sym__single_quote_open] = ACTIONS(5155), - [sym__double_quote_open] = ACTIONS(5155), - [sym__superscript_open] = ACTIONS(5155), - [sym__subscript_open] = ACTIONS(5155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5155), - [sym__cite_author_in_text] = ACTIONS(5155), - [sym__cite_suppress_author] = ACTIONS(5155), - [sym__shortcode_open_escaped] = ACTIONS(5155), - [sym__shortcode_open] = ACTIONS(5155), - [sym__unclosed_span] = ACTIONS(5155), - [sym__strong_emphasis_open_star] = ACTIONS(5155), - [sym__strong_emphasis_open_underscore] = ACTIONS(5155), + [sym__backslash_escape] = ACTIONS(4499), + [sym_entity_reference] = ACTIONS(4499), + [sym_numeric_character_reference] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4501), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_BSLASH] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_PIPE] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [sym__newline_token] = ACTIONS(4499), + [aux_sym_insert_token1] = ACTIONS(4499), + [aux_sym_delete_token1] = ACTIONS(4499), + [aux_sym_highlight_token1] = ACTIONS(4499), + [aux_sym_edit_comment_token1] = ACTIONS(4499), + [anon_sym_CARET_LBRACK] = ACTIONS(4499), + [anon_sym_LBRACK_CARET] = ACTIONS(4499), + [sym_uri_autolink] = ACTIONS(4499), + [sym_email_autolink] = ACTIONS(4499), + [sym__whitespace_ge_2] = ACTIONS(4499), + [aux_sym__whitespace_token1] = ACTIONS(4501), + [sym__word_no_digit] = ACTIONS(4499), + [sym__digits] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4499), + [sym__code_span_start] = ACTIONS(4499), + [sym__emphasis_open_star] = ACTIONS(4499), + [sym__emphasis_open_underscore] = ACTIONS(4499), + [sym__emphasis_close_underscore] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4499), + [sym__latex_span_start] = ACTIONS(4499), + [sym__single_quote_open] = ACTIONS(4499), + [sym__double_quote_open] = ACTIONS(4499), + [sym__superscript_open] = ACTIONS(4499), + [sym__subscript_open] = ACTIONS(4499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4499), + [sym__cite_author_in_text] = ACTIONS(4499), + [sym__cite_suppress_author] = ACTIONS(4499), + [sym__shortcode_open_escaped] = ACTIONS(4499), + [sym__shortcode_open] = ACTIONS(4499), + [sym__unclosed_span] = ACTIONS(4499), + [sym__strong_emphasis_open_star] = ACTIONS(4499), + [sym__strong_emphasis_open_underscore] = ACTIONS(4499), }, [STATE(1419)] = { - [sym__backslash_escape] = ACTIONS(5159), - [sym_entity_reference] = ACTIONS(5159), - [sym_numeric_character_reference] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_DQUOTE] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_QMARK] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym__newline_token] = ACTIONS(5159), - [aux_sym_insert_token1] = ACTIONS(5159), - [aux_sym_delete_token1] = ACTIONS(5159), - [aux_sym_highlight_token1] = ACTIONS(5159), - [aux_sym_edit_comment_token1] = ACTIONS(5159), - [anon_sym_CARET_LBRACK] = ACTIONS(5159), - [anon_sym_LBRACK_CARET] = ACTIONS(5159), - [sym_uri_autolink] = ACTIONS(5159), - [sym_email_autolink] = ACTIONS(5159), - [sym__whitespace_ge_2] = ACTIONS(5159), - [aux_sym__whitespace_token1] = ACTIONS(5161), - [sym__word_no_digit] = ACTIONS(5159), - [sym__digits] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5159), - [sym__code_span_start] = ACTIONS(5159), - [sym__emphasis_open_star] = ACTIONS(5159), - [sym__emphasis_open_underscore] = ACTIONS(5159), - [sym__emphasis_close_star] = ACTIONS(5159), - [sym__strikeout_open] = ACTIONS(5159), - [sym__latex_span_start] = ACTIONS(5159), - [sym__single_quote_open] = ACTIONS(5159), - [sym__double_quote_open] = ACTIONS(5159), - [sym__superscript_open] = ACTIONS(5159), - [sym__subscript_open] = ACTIONS(5159), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5159), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5159), - [sym__cite_author_in_text] = ACTIONS(5159), - [sym__cite_suppress_author] = ACTIONS(5159), - [sym__shortcode_open_escaped] = ACTIONS(5159), - [sym__shortcode_open] = ACTIONS(5159), - [sym__unclosed_span] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5159), - [sym__strong_emphasis_open_underscore] = ACTIONS(5159), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__emphasis_close_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(1420)] = { - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__emphasis_close_star] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [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__superscript_close] = 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(1421)] = { - [ts_builtin_sym_end] = ACTIONS(4701), - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__emphasis_close_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(1422)] = { - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__emphasis_close_star] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [ts_builtin_sym_end] = ACTIONS(4367), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(1423)] = { - [sym__backslash_escape] = ACTIONS(5163), - [sym_entity_reference] = ACTIONS(5163), - [sym_numeric_character_reference] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_PERCENT] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym_BQUOTE] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [sym__newline_token] = ACTIONS(5163), - [aux_sym_insert_token1] = ACTIONS(5163), - [aux_sym_delete_token1] = ACTIONS(5163), - [aux_sym_highlight_token1] = ACTIONS(5163), - [aux_sym_edit_comment_token1] = ACTIONS(5163), - [anon_sym_CARET_LBRACK] = ACTIONS(5163), - [anon_sym_LBRACK_CARET] = ACTIONS(5163), - [sym_uri_autolink] = ACTIONS(5163), - [sym_email_autolink] = ACTIONS(5163), - [sym__whitespace_ge_2] = ACTIONS(5163), - [aux_sym__whitespace_token1] = ACTIONS(5165), - [sym__word_no_digit] = ACTIONS(5163), - [sym__digits] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5163), - [sym__code_span_start] = ACTIONS(5163), - [sym__emphasis_open_star] = ACTIONS(5163), - [sym__emphasis_open_underscore] = ACTIONS(5163), - [sym__emphasis_close_star] = ACTIONS(5163), - [sym__strikeout_open] = ACTIONS(5163), - [sym__latex_span_start] = ACTIONS(5163), - [sym__single_quote_open] = ACTIONS(5163), - [sym__double_quote_open] = ACTIONS(5163), - [sym__superscript_open] = ACTIONS(5163), - [sym__subscript_open] = ACTIONS(5163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5163), - [sym__cite_author_in_text] = ACTIONS(5163), - [sym__cite_suppress_author] = ACTIONS(5163), - [sym__shortcode_open_escaped] = ACTIONS(5163), - [sym__shortcode_open] = ACTIONS(5163), - [sym__unclosed_span] = ACTIONS(5163), - [sym__strong_emphasis_open_star] = ACTIONS(5163), - [sym__strong_emphasis_open_underscore] = ACTIONS(5163), + [sym__backslash_escape] = ACTIONS(4507), + [sym_entity_reference] = ACTIONS(4507), + [sym_numeric_character_reference] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(4507), + [anon_sym_DOLLAR] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_QMARK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_BSLASH] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [sym__newline_token] = ACTIONS(4507), + [aux_sym_insert_token1] = ACTIONS(4507), + [aux_sym_delete_token1] = ACTIONS(4507), + [aux_sym_highlight_token1] = ACTIONS(4507), + [aux_sym_edit_comment_token1] = ACTIONS(4507), + [anon_sym_CARET_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK_CARET] = ACTIONS(4507), + [sym_uri_autolink] = ACTIONS(4507), + [sym_email_autolink] = ACTIONS(4507), + [sym__whitespace_ge_2] = ACTIONS(4507), + [aux_sym__whitespace_token1] = ACTIONS(4509), + [sym__word_no_digit] = ACTIONS(4507), + [sym__digits] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4507), + [sym__code_span_start] = ACTIONS(4507), + [sym__emphasis_open_star] = ACTIONS(4507), + [sym__emphasis_open_underscore] = ACTIONS(4507), + [sym__emphasis_close_underscore] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4507), + [sym__latex_span_start] = ACTIONS(4507), + [sym__single_quote_open] = ACTIONS(4507), + [sym__double_quote_open] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4507), + [sym__subscript_open] = ACTIONS(4507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4507), + [sym__cite_author_in_text] = ACTIONS(4507), + [sym__cite_suppress_author] = ACTIONS(4507), + [sym__shortcode_open_escaped] = ACTIONS(4507), + [sym__shortcode_open] = ACTIONS(4507), + [sym__unclosed_span] = ACTIONS(4507), + [sym__strong_emphasis_open_star] = ACTIONS(4507), + [sym__strong_emphasis_open_underscore] = ACTIONS(4507), }, [STATE(1424)] = { - [sym__backslash_escape] = ACTIONS(5167), - [sym_entity_reference] = ACTIONS(5167), - [sym_numeric_character_reference] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_POUND] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_PERCENT] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_QMARK] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [sym__newline_token] = ACTIONS(5167), - [aux_sym_insert_token1] = ACTIONS(5167), - [aux_sym_delete_token1] = ACTIONS(5167), - [aux_sym_highlight_token1] = ACTIONS(5167), - [aux_sym_edit_comment_token1] = ACTIONS(5167), - [anon_sym_CARET_LBRACK] = ACTIONS(5167), - [anon_sym_LBRACK_CARET] = ACTIONS(5167), - [sym_uri_autolink] = ACTIONS(5167), - [sym_email_autolink] = ACTIONS(5167), - [sym__whitespace_ge_2] = ACTIONS(5167), - [aux_sym__whitespace_token1] = ACTIONS(5169), - [sym__word_no_digit] = ACTIONS(5167), - [sym__digits] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5169), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), - [sym__code_span_start] = ACTIONS(5167), - [sym__emphasis_open_star] = ACTIONS(5167), - [sym__emphasis_open_underscore] = ACTIONS(5167), - [sym__emphasis_close_star] = ACTIONS(5167), - [sym__strikeout_open] = ACTIONS(5167), - [sym__latex_span_start] = ACTIONS(5167), - [sym__single_quote_open] = ACTIONS(5167), - [sym__double_quote_open] = ACTIONS(5167), - [sym__superscript_open] = ACTIONS(5167), - [sym__subscript_open] = ACTIONS(5167), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5167), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5167), - [sym__cite_author_in_text] = ACTIONS(5167), - [sym__cite_suppress_author] = ACTIONS(5167), - [sym__shortcode_open_escaped] = ACTIONS(5167), - [sym__shortcode_open] = ACTIONS(5167), - [sym__unclosed_span] = ACTIONS(5167), - [sym__strong_emphasis_open_star] = ACTIONS(5167), - [sym__strong_emphasis_open_underscore] = ACTIONS(5167), + [sym__backslash_escape] = ACTIONS(4511), + [sym_entity_reference] = ACTIONS(4511), + [sym_numeric_character_reference] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4511), + [anon_sym_POUND] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_COMMA] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_QMARK] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_BQUOTE] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(4511), + [sym__newline_token] = ACTIONS(4511), + [aux_sym_insert_token1] = ACTIONS(4511), + [aux_sym_delete_token1] = ACTIONS(4511), + [aux_sym_highlight_token1] = ACTIONS(4511), + [aux_sym_edit_comment_token1] = ACTIONS(4511), + [anon_sym_CARET_LBRACK] = ACTIONS(4511), + [anon_sym_LBRACK_CARET] = ACTIONS(4511), + [sym_uri_autolink] = ACTIONS(4511), + [sym_email_autolink] = ACTIONS(4511), + [sym__whitespace_ge_2] = ACTIONS(4511), + [aux_sym__whitespace_token1] = ACTIONS(4513), + [sym__word_no_digit] = ACTIONS(4511), + [sym__digits] = ACTIONS(4511), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), + [sym__code_span_start] = ACTIONS(4511), + [sym__emphasis_open_star] = ACTIONS(4511), + [sym__emphasis_open_underscore] = ACTIONS(4511), + [sym__emphasis_close_underscore] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4511), + [sym__latex_span_start] = ACTIONS(4511), + [sym__single_quote_open] = ACTIONS(4511), + [sym__double_quote_open] = ACTIONS(4511), + [sym__superscript_open] = ACTIONS(4511), + [sym__subscript_open] = ACTIONS(4511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), + [sym__cite_author_in_text] = ACTIONS(4511), + [sym__cite_suppress_author] = ACTIONS(4511), + [sym__shortcode_open_escaped] = ACTIONS(4511), + [sym__shortcode_open] = ACTIONS(4511), + [sym__unclosed_span] = ACTIONS(4511), + [sym__strong_emphasis_open_star] = ACTIONS(4511), + [sym__strong_emphasis_open_underscore] = ACTIONS(4511), }, [STATE(1425)] = { - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__emphasis_close_star] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__backslash_escape] = ACTIONS(4515), + [sym_entity_reference] = ACTIONS(4515), + [sym_numeric_character_reference] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4515), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_BSLASH] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_RPAREN] = ACTIONS(4515), + [sym__newline_token] = ACTIONS(4515), + [aux_sym_insert_token1] = ACTIONS(4515), + [aux_sym_delete_token1] = ACTIONS(4515), + [aux_sym_highlight_token1] = ACTIONS(4515), + [aux_sym_edit_comment_token1] = ACTIONS(4515), + [anon_sym_CARET_LBRACK] = ACTIONS(4515), + [anon_sym_LBRACK_CARET] = ACTIONS(4515), + [sym_uri_autolink] = ACTIONS(4515), + [sym_email_autolink] = ACTIONS(4515), + [sym__whitespace_ge_2] = ACTIONS(4515), + [aux_sym__whitespace_token1] = ACTIONS(4517), + [sym__word_no_digit] = ACTIONS(4515), + [sym__digits] = ACTIONS(4515), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4515), + [sym__code_span_start] = ACTIONS(4515), + [sym__emphasis_open_star] = ACTIONS(4515), + [sym__emphasis_open_underscore] = ACTIONS(4515), + [sym__emphasis_close_underscore] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4515), + [sym__latex_span_start] = ACTIONS(4515), + [sym__single_quote_open] = ACTIONS(4515), + [sym__double_quote_open] = ACTIONS(4515), + [sym__superscript_open] = ACTIONS(4515), + [sym__subscript_open] = ACTIONS(4515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4515), + [sym__cite_author_in_text] = ACTIONS(4515), + [sym__cite_suppress_author] = ACTIONS(4515), + [sym__shortcode_open_escaped] = ACTIONS(4515), + [sym__shortcode_open] = ACTIONS(4515), + [sym__unclosed_span] = ACTIONS(4515), + [sym__strong_emphasis_open_star] = ACTIONS(4515), + [sym__strong_emphasis_open_underscore] = ACTIONS(4515), }, [STATE(1426)] = { - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__emphasis_close_star] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__backslash_escape] = ACTIONS(4519), + [sym_entity_reference] = ACTIONS(4519), + [sym_numeric_character_reference] = ACTIONS(4519), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4519), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_BSLASH] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_BQUOTE] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [sym__newline_token] = ACTIONS(4519), + [aux_sym_insert_token1] = ACTIONS(4519), + [aux_sym_delete_token1] = ACTIONS(4519), + [aux_sym_highlight_token1] = ACTIONS(4519), + [aux_sym_edit_comment_token1] = ACTIONS(4519), + [anon_sym_CARET_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_CARET] = ACTIONS(4519), + [sym_uri_autolink] = ACTIONS(4519), + [sym_email_autolink] = ACTIONS(4519), + [sym__whitespace_ge_2] = ACTIONS(4519), + [aux_sym__whitespace_token1] = ACTIONS(4521), + [sym__word_no_digit] = ACTIONS(4519), + [sym__digits] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [sym__code_span_start] = ACTIONS(4519), + [sym__emphasis_open_star] = ACTIONS(4519), + [sym__emphasis_open_underscore] = ACTIONS(4519), + [sym__emphasis_close_underscore] = ACTIONS(4519), + [sym__strikeout_open] = ACTIONS(4519), + [sym__latex_span_start] = ACTIONS(4519), + [sym__single_quote_open] = ACTIONS(4519), + [sym__double_quote_open] = ACTIONS(4519), + [sym__superscript_open] = ACTIONS(4519), + [sym__subscript_open] = ACTIONS(4519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4519), + [sym__cite_suppress_author] = ACTIONS(4519), + [sym__shortcode_open_escaped] = ACTIONS(4519), + [sym__shortcode_open] = ACTIONS(4519), + [sym__unclosed_span] = ACTIONS(4519), + [sym__strong_emphasis_open_star] = ACTIONS(4519), + [sym__strong_emphasis_open_underscore] = ACTIONS(4519), }, [STATE(1427)] = { - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__emphasis_close_star] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [sym__backslash_escape] = ACTIONS(4523), + [sym_entity_reference] = ACTIONS(4523), + [sym_numeric_character_reference] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_BSLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [sym__newline_token] = ACTIONS(4523), + [aux_sym_insert_token1] = ACTIONS(4523), + [aux_sym_delete_token1] = ACTIONS(4523), + [aux_sym_highlight_token1] = ACTIONS(4523), + [aux_sym_edit_comment_token1] = ACTIONS(4523), + [anon_sym_CARET_LBRACK] = ACTIONS(4523), + [anon_sym_LBRACK_CARET] = ACTIONS(4523), + [sym_uri_autolink] = ACTIONS(4523), + [sym_email_autolink] = ACTIONS(4523), + [sym__whitespace_ge_2] = ACTIONS(4523), + [aux_sym__whitespace_token1] = ACTIONS(4525), + [sym__word_no_digit] = ACTIONS(4523), + [sym__digits] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4523), + [sym__code_span_start] = ACTIONS(4523), + [sym__emphasis_open_star] = ACTIONS(4523), + [sym__emphasis_open_underscore] = ACTIONS(4523), + [sym__emphasis_close_underscore] = ACTIONS(4523), + [sym__strikeout_open] = ACTIONS(4523), + [sym__latex_span_start] = ACTIONS(4523), + [sym__single_quote_open] = ACTIONS(4523), + [sym__double_quote_open] = ACTIONS(4523), + [sym__superscript_open] = ACTIONS(4523), + [sym__subscript_open] = ACTIONS(4523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4523), + [sym__cite_author_in_text] = ACTIONS(4523), + [sym__cite_suppress_author] = ACTIONS(4523), + [sym__shortcode_open_escaped] = ACTIONS(4523), + [sym__shortcode_open] = ACTIONS(4523), + [sym__unclosed_span] = ACTIONS(4523), + [sym__strong_emphasis_open_star] = ACTIONS(4523), + [sym__strong_emphasis_open_underscore] = ACTIONS(4523), }, [STATE(1428)] = { - [ts_builtin_sym_end] = ACTIONS(5015), - [sym__backslash_escape] = ACTIONS(5015), - [sym_entity_reference] = ACTIONS(5015), - [sym_numeric_character_reference] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym_BQUOTE] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__newline_token] = ACTIONS(5015), - [aux_sym_insert_token1] = ACTIONS(5015), - [aux_sym_delete_token1] = ACTIONS(5015), - [aux_sym_highlight_token1] = ACTIONS(5015), - [aux_sym_edit_comment_token1] = ACTIONS(5015), - [anon_sym_CARET_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_CARET] = ACTIONS(5015), - [sym_uri_autolink] = ACTIONS(5015), - [sym_email_autolink] = ACTIONS(5015), - [sym__whitespace_ge_2] = ACTIONS(5015), - [aux_sym__whitespace_token1] = ACTIONS(5017), - [sym__word_no_digit] = ACTIONS(5015), - [sym__digits] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5015), - [sym__code_span_start] = ACTIONS(5015), - [sym__emphasis_open_star] = ACTIONS(5015), - [sym__emphasis_open_underscore] = ACTIONS(5015), - [sym__strikeout_open] = ACTIONS(5015), - [sym__latex_span_start] = ACTIONS(5015), - [sym__single_quote_open] = ACTIONS(5015), - [sym__double_quote_open] = ACTIONS(5015), - [sym__superscript_open] = ACTIONS(5015), - [sym__subscript_open] = ACTIONS(5015), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5015), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5015), - [sym__cite_author_in_text] = ACTIONS(5015), - [sym__cite_suppress_author] = ACTIONS(5015), - [sym__shortcode_open_escaped] = ACTIONS(5015), - [sym__shortcode_open] = ACTIONS(5015), - [sym__unclosed_span] = ACTIONS(5015), - [sym__strong_emphasis_open_star] = ACTIONS(5015), - [sym__strong_emphasis_open_underscore] = ACTIONS(5015), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__emphasis_close_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(1429)] = { - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__emphasis_close_star] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [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__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__superscript_close] = 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(1430)] = { - [sym__backslash_escape] = ACTIONS(5171), - [sym_entity_reference] = ACTIONS(5171), - [sym_numeric_character_reference] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [anon_sym_POUND] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_QMARK] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH] = ACTIONS(5173), - [anon_sym_CARET] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [sym__newline_token] = ACTIONS(5171), - [aux_sym_insert_token1] = ACTIONS(5171), - [aux_sym_delete_token1] = ACTIONS(5171), - [aux_sym_highlight_token1] = ACTIONS(5171), - [aux_sym_edit_comment_token1] = ACTIONS(5171), - [anon_sym_CARET_LBRACK] = ACTIONS(5171), - [anon_sym_LBRACK_CARET] = ACTIONS(5171), - [sym_uri_autolink] = ACTIONS(5171), - [sym_email_autolink] = ACTIONS(5171), - [sym__whitespace_ge_2] = ACTIONS(5171), - [aux_sym__whitespace_token1] = ACTIONS(5173), - [sym__word_no_digit] = ACTIONS(5171), - [sym__digits] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5171), - [sym__code_span_start] = ACTIONS(5171), - [sym__emphasis_open_star] = ACTIONS(5171), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym__emphasis_close_star] = ACTIONS(5171), - [sym__strikeout_open] = ACTIONS(5171), - [sym__latex_span_start] = ACTIONS(5171), - [sym__single_quote_open] = ACTIONS(5171), - [sym__double_quote_open] = ACTIONS(5171), - [sym__superscript_open] = ACTIONS(5171), - [sym__subscript_open] = ACTIONS(5171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5171), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5171), - [sym__cite_author_in_text] = ACTIONS(5171), - [sym__cite_suppress_author] = ACTIONS(5171), - [sym__shortcode_open_escaped] = ACTIONS(5171), - [sym__shortcode_open] = ACTIONS(5171), - [sym__unclosed_span] = ACTIONS(5171), - [sym__strong_emphasis_open_star] = ACTIONS(5171), - [sym__strong_emphasis_open_underscore] = ACTIONS(5171), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__emphasis_close_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(1431)] = { - [sym__backslash_escape] = ACTIONS(5175), - [sym_entity_reference] = ACTIONS(5175), - [sym_numeric_character_reference] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_QMARK] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [sym__newline_token] = ACTIONS(5175), - [aux_sym_insert_token1] = ACTIONS(5175), - [aux_sym_delete_token1] = ACTIONS(5175), - [aux_sym_highlight_token1] = ACTIONS(5175), - [aux_sym_edit_comment_token1] = ACTIONS(5175), - [anon_sym_CARET_LBRACK] = ACTIONS(5175), - [anon_sym_LBRACK_CARET] = ACTIONS(5175), - [sym_uri_autolink] = ACTIONS(5175), - [sym_email_autolink] = ACTIONS(5175), - [sym__whitespace_ge_2] = ACTIONS(5175), - [aux_sym__whitespace_token1] = ACTIONS(5177), - [sym__word_no_digit] = ACTIONS(5175), - [sym__digits] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5177), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5175), - [sym__code_span_start] = ACTIONS(5175), - [sym__emphasis_open_star] = ACTIONS(5175), - [sym__emphasis_open_underscore] = ACTIONS(5175), - [sym__emphasis_close_star] = ACTIONS(5175), - [sym__strikeout_open] = ACTIONS(5175), - [sym__latex_span_start] = ACTIONS(5175), - [sym__single_quote_open] = ACTIONS(5175), - [sym__double_quote_open] = ACTIONS(5175), - [sym__superscript_open] = ACTIONS(5175), - [sym__subscript_open] = ACTIONS(5175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5175), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5175), - [sym__cite_author_in_text] = ACTIONS(5175), - [sym__cite_suppress_author] = ACTIONS(5175), - [sym__shortcode_open_escaped] = ACTIONS(5175), - [sym__shortcode_open] = ACTIONS(5175), - [sym__unclosed_span] = ACTIONS(5175), - [sym__strong_emphasis_open_star] = ACTIONS(5175), - [sym__strong_emphasis_open_underscore] = ACTIONS(5175), + [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(1432)] = { - [ts_builtin_sym_end] = ACTIONS(4951), - [sym__backslash_escape] = ACTIONS(4951), - [sym_entity_reference] = ACTIONS(4951), - [sym_numeric_character_reference] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [sym__newline_token] = ACTIONS(4951), - [aux_sym_insert_token1] = ACTIONS(4951), - [aux_sym_delete_token1] = ACTIONS(4951), - [aux_sym_highlight_token1] = ACTIONS(4951), - [aux_sym_edit_comment_token1] = ACTIONS(4951), - [anon_sym_CARET_LBRACK] = ACTIONS(4951), - [anon_sym_LBRACK_CARET] = ACTIONS(4951), - [sym_uri_autolink] = ACTIONS(4951), - [sym_email_autolink] = ACTIONS(4951), - [sym__whitespace_ge_2] = ACTIONS(4951), - [aux_sym__whitespace_token1] = ACTIONS(4953), - [sym__word_no_digit] = ACTIONS(4951), - [sym__digits] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4951), - [sym__code_span_start] = ACTIONS(4951), - [sym__emphasis_open_star] = ACTIONS(4951), - [sym__emphasis_open_underscore] = ACTIONS(4951), - [sym__strikeout_open] = ACTIONS(4951), - [sym__latex_span_start] = ACTIONS(4951), - [sym__single_quote_open] = ACTIONS(4951), - [sym__double_quote_open] = ACTIONS(4951), - [sym__superscript_open] = ACTIONS(4951), - [sym__subscript_open] = ACTIONS(4951), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4951), - [sym__cite_author_in_text] = ACTIONS(4951), - [sym__cite_suppress_author] = ACTIONS(4951), - [sym__shortcode_open_escaped] = ACTIONS(4951), - [sym__shortcode_open] = ACTIONS(4951), - [sym__unclosed_span] = ACTIONS(4951), - [sym__strong_emphasis_open_star] = ACTIONS(4951), - [sym__strong_emphasis_open_underscore] = ACTIONS(4951), + [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(1433)] = { - [sym__backslash_escape] = ACTIONS(4939), - [sym_entity_reference] = ACTIONS(4939), - [sym_numeric_character_reference] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_POUND] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [sym__newline_token] = ACTIONS(4939), - [aux_sym_insert_token1] = ACTIONS(4939), - [aux_sym_delete_token1] = ACTIONS(4939), - [aux_sym_highlight_token1] = ACTIONS(4939), - [aux_sym_edit_comment_token1] = ACTIONS(4939), - [anon_sym_CARET_LBRACK] = ACTIONS(4939), - [anon_sym_LBRACK_CARET] = ACTIONS(4939), - [sym_uri_autolink] = ACTIONS(4939), - [sym_email_autolink] = ACTIONS(4939), - [sym__whitespace_ge_2] = ACTIONS(4939), - [aux_sym__whitespace_token1] = ACTIONS(4941), - [sym__word_no_digit] = ACTIONS(4939), - [sym__digits] = ACTIONS(4939), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4939), - [sym__code_span_start] = ACTIONS(4939), - [sym__emphasis_open_star] = ACTIONS(4939), - [sym__emphasis_open_underscore] = ACTIONS(4939), - [sym__emphasis_close_underscore] = ACTIONS(4939), - [sym__strikeout_open] = ACTIONS(4939), - [sym__latex_span_start] = ACTIONS(4939), - [sym__single_quote_open] = ACTIONS(4939), - [sym__double_quote_open] = ACTIONS(4939), - [sym__superscript_open] = ACTIONS(4939), - [sym__subscript_open] = ACTIONS(4939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4939), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4939), - [sym__cite_author_in_text] = ACTIONS(4939), - [sym__cite_suppress_author] = ACTIONS(4939), - [sym__shortcode_open_escaped] = ACTIONS(4939), - [sym__shortcode_open] = ACTIONS(4939), - [sym__unclosed_span] = ACTIONS(4939), - [sym__strong_emphasis_open_star] = ACTIONS(4939), - [sym__strong_emphasis_open_underscore] = ACTIONS(4939), + [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_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(1434)] = { - [ts_builtin_sym_end] = ACTIONS(4943), - [sym__backslash_escape] = ACTIONS(4943), - [sym_entity_reference] = ACTIONS(4943), - [sym_numeric_character_reference] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [sym__newline_token] = ACTIONS(4943), - [aux_sym_insert_token1] = ACTIONS(4943), - [aux_sym_delete_token1] = ACTIONS(4943), - [aux_sym_highlight_token1] = ACTIONS(4943), - [aux_sym_edit_comment_token1] = ACTIONS(4943), - [anon_sym_CARET_LBRACK] = ACTIONS(4943), - [anon_sym_LBRACK_CARET] = ACTIONS(4943), - [sym_uri_autolink] = ACTIONS(4943), - [sym_email_autolink] = ACTIONS(4943), - [sym__whitespace_ge_2] = ACTIONS(4943), - [aux_sym__whitespace_token1] = ACTIONS(4945), - [sym__word_no_digit] = ACTIONS(4943), - [sym__digits] = ACTIONS(4943), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4943), - [sym__code_span_start] = ACTIONS(4943), - [sym__emphasis_open_star] = ACTIONS(4943), - [sym__emphasis_open_underscore] = ACTIONS(4943), - [sym__strikeout_open] = ACTIONS(4943), - [sym__latex_span_start] = ACTIONS(4943), - [sym__single_quote_open] = ACTIONS(4943), - [sym__double_quote_open] = ACTIONS(4943), - [sym__superscript_open] = ACTIONS(4943), - [sym__subscript_open] = ACTIONS(4943), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4943), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4943), - [sym__cite_author_in_text] = ACTIONS(4943), - [sym__cite_suppress_author] = ACTIONS(4943), - [sym__shortcode_open_escaped] = ACTIONS(4943), - [sym__shortcode_open] = ACTIONS(4943), - [sym__unclosed_span] = ACTIONS(4943), - [sym__strong_emphasis_open_star] = ACTIONS(4943), - [sym__strong_emphasis_open_underscore] = ACTIONS(4943), + [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_underscore] = 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(1435)] = { - [ts_builtin_sym_end] = ACTIONS(5019), - [sym__backslash_escape] = ACTIONS(5019), - [sym_entity_reference] = ACTIONS(5019), - [sym_numeric_character_reference] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_DQUOTE] = ACTIONS(5019), - [anon_sym_POUND] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym__newline_token] = ACTIONS(5019), - [aux_sym_insert_token1] = ACTIONS(5019), - [aux_sym_delete_token1] = ACTIONS(5019), - [aux_sym_highlight_token1] = ACTIONS(5019), - [aux_sym_edit_comment_token1] = ACTIONS(5019), - [anon_sym_CARET_LBRACK] = ACTIONS(5019), - [anon_sym_LBRACK_CARET] = ACTIONS(5019), - [sym_uri_autolink] = ACTIONS(5019), - [sym_email_autolink] = ACTIONS(5019), - [sym__whitespace_ge_2] = ACTIONS(5019), - [aux_sym__whitespace_token1] = ACTIONS(5021), - [sym__word_no_digit] = ACTIONS(5019), - [sym__digits] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [sym__code_span_start] = ACTIONS(5019), - [sym__emphasis_open_star] = ACTIONS(5019), - [sym__emphasis_open_underscore] = ACTIONS(5019), - [sym__strikeout_open] = ACTIONS(5019), - [sym__latex_span_start] = ACTIONS(5019), - [sym__single_quote_open] = ACTIONS(5019), - [sym__double_quote_open] = ACTIONS(5019), - [sym__superscript_open] = ACTIONS(5019), - [sym__subscript_open] = ACTIONS(5019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5019), - [sym__cite_author_in_text] = ACTIONS(5019), - [sym__cite_suppress_author] = ACTIONS(5019), - [sym__shortcode_open_escaped] = ACTIONS(5019), - [sym__shortcode_open] = ACTIONS(5019), - [sym__unclosed_span] = ACTIONS(5019), - [sym__strong_emphasis_open_star] = ACTIONS(5019), - [sym__strong_emphasis_open_underscore] = ACTIONS(5019), + [sym__backslash_escape] = ACTIONS(4503), + [sym_entity_reference] = ACTIONS(4503), + [sym_numeric_character_reference] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_BQUOTE] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_PIPE] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [sym__newline_token] = ACTIONS(4503), + [aux_sym_insert_token1] = ACTIONS(4503), + [aux_sym_delete_token1] = ACTIONS(4503), + [aux_sym_highlight_token1] = ACTIONS(4503), + [aux_sym_edit_comment_token1] = ACTIONS(4503), + [anon_sym_CARET_LBRACK] = ACTIONS(4503), + [anon_sym_LBRACK_CARET] = ACTIONS(4503), + [sym_uri_autolink] = ACTIONS(4503), + [sym_email_autolink] = ACTIONS(4503), + [sym__whitespace_ge_2] = ACTIONS(4503), + [aux_sym__whitespace_token1] = ACTIONS(4505), + [sym__word_no_digit] = ACTIONS(4503), + [sym__digits] = ACTIONS(4503), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4503), + [sym__code_span_start] = ACTIONS(4503), + [sym__emphasis_open_star] = ACTIONS(4503), + [sym__emphasis_open_underscore] = ACTIONS(4503), + [sym__emphasis_close_underscore] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4503), + [sym__latex_span_start] = ACTIONS(4503), + [sym__single_quote_open] = ACTIONS(4503), + [sym__double_quote_open] = ACTIONS(4503), + [sym__superscript_open] = ACTIONS(4503), + [sym__subscript_open] = ACTIONS(4503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4503), + [sym__cite_author_in_text] = ACTIONS(4503), + [sym__cite_suppress_author] = ACTIONS(4503), + [sym__shortcode_open_escaped] = ACTIONS(4503), + [sym__shortcode_open] = ACTIONS(4503), + [sym__unclosed_span] = ACTIONS(4503), + [sym__strong_emphasis_open_star] = ACTIONS(4503), + [sym__strong_emphasis_open_underscore] = ACTIONS(4503), }, [STATE(1436)] = { - [ts_builtin_sym_end] = ACTIONS(4955), - [sym__backslash_escape] = ACTIONS(4955), - [sym_entity_reference] = ACTIONS(4955), - [sym_numeric_character_reference] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_DQUOTE] = ACTIONS(4955), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4957), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [sym__newline_token] = ACTIONS(4955), - [aux_sym_insert_token1] = ACTIONS(4955), - [aux_sym_delete_token1] = ACTIONS(4955), - [aux_sym_highlight_token1] = ACTIONS(4955), - [aux_sym_edit_comment_token1] = ACTIONS(4955), - [anon_sym_CARET_LBRACK] = ACTIONS(4955), - [anon_sym_LBRACK_CARET] = ACTIONS(4955), - [sym_uri_autolink] = ACTIONS(4955), - [sym_email_autolink] = ACTIONS(4955), - [sym__whitespace_ge_2] = ACTIONS(4955), - [aux_sym__whitespace_token1] = ACTIONS(4957), - [sym__word_no_digit] = ACTIONS(4955), - [sym__digits] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4955), - [sym__code_span_start] = ACTIONS(4955), - [sym__emphasis_open_star] = ACTIONS(4955), - [sym__emphasis_open_underscore] = ACTIONS(4955), - [sym__strikeout_open] = ACTIONS(4955), - [sym__latex_span_start] = ACTIONS(4955), - [sym__single_quote_open] = ACTIONS(4955), - [sym__double_quote_open] = ACTIONS(4955), - [sym__superscript_open] = ACTIONS(4955), - [sym__subscript_open] = ACTIONS(4955), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4955), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4955), - [sym__cite_author_in_text] = ACTIONS(4955), - [sym__cite_suppress_author] = ACTIONS(4955), - [sym__shortcode_open_escaped] = ACTIONS(4955), - [sym__shortcode_open] = ACTIONS(4955), - [sym__unclosed_span] = ACTIONS(4955), - [sym__strong_emphasis_open_star] = ACTIONS(4955), - [sym__strong_emphasis_open_underscore] = ACTIONS(4955), + [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(4251), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(1437)] = { - [ts_builtin_sym_end] = ACTIONS(5023), - [sym__backslash_escape] = ACTIONS(5023), - [sym_entity_reference] = ACTIONS(5023), - [sym_numeric_character_reference] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [sym__newline_token] = ACTIONS(5023), - [aux_sym_insert_token1] = ACTIONS(5023), - [aux_sym_delete_token1] = ACTIONS(5023), - [aux_sym_highlight_token1] = ACTIONS(5023), - [aux_sym_edit_comment_token1] = ACTIONS(5023), - [anon_sym_CARET_LBRACK] = ACTIONS(5023), - [anon_sym_LBRACK_CARET] = ACTIONS(5023), - [sym_uri_autolink] = ACTIONS(5023), - [sym_email_autolink] = ACTIONS(5023), - [sym__whitespace_ge_2] = ACTIONS(5023), - [aux_sym__whitespace_token1] = ACTIONS(5025), - [sym__word_no_digit] = ACTIONS(5023), - [sym__digits] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5023), - [sym__code_span_start] = ACTIONS(5023), - [sym__emphasis_open_star] = ACTIONS(5023), - [sym__emphasis_open_underscore] = ACTIONS(5023), - [sym__strikeout_open] = ACTIONS(5023), - [sym__latex_span_start] = ACTIONS(5023), - [sym__single_quote_open] = ACTIONS(5023), - [sym__double_quote_open] = ACTIONS(5023), - [sym__superscript_open] = ACTIONS(5023), - [sym__subscript_open] = ACTIONS(5023), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5023), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5023), - [sym__cite_author_in_text] = ACTIONS(5023), - [sym__cite_suppress_author] = ACTIONS(5023), - [sym__shortcode_open_escaped] = ACTIONS(5023), - [sym__shortcode_open] = ACTIONS(5023), - [sym__unclosed_span] = ACTIONS(5023), - [sym__strong_emphasis_open_star] = ACTIONS(5023), - [sym__strong_emphasis_open_underscore] = ACTIONS(5023), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__emphasis_close_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(1438)] = { - [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_STAR] = 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_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), + [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_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(1439)] = { - [ts_builtin_sym_end] = ACTIONS(5027), - [sym__backslash_escape] = ACTIONS(5027), - [sym_entity_reference] = ACTIONS(5027), - [sym_numeric_character_reference] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [sym__newline_token] = ACTIONS(5027), - [aux_sym_insert_token1] = ACTIONS(5027), - [aux_sym_delete_token1] = ACTIONS(5027), - [aux_sym_highlight_token1] = ACTIONS(5027), - [aux_sym_edit_comment_token1] = ACTIONS(5027), - [anon_sym_CARET_LBRACK] = ACTIONS(5027), - [anon_sym_LBRACK_CARET] = ACTIONS(5027), - [sym_uri_autolink] = ACTIONS(5027), - [sym_email_autolink] = ACTIONS(5027), - [sym__whitespace_ge_2] = ACTIONS(5027), - [aux_sym__whitespace_token1] = ACTIONS(5029), - [sym__word_no_digit] = ACTIONS(5027), - [sym__digits] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5027), - [sym__code_span_start] = ACTIONS(5027), - [sym__emphasis_open_star] = ACTIONS(5027), - [sym__emphasis_open_underscore] = ACTIONS(5027), - [sym__strikeout_open] = ACTIONS(5027), - [sym__latex_span_start] = ACTIONS(5027), - [sym__single_quote_open] = ACTIONS(5027), - [sym__double_quote_open] = ACTIONS(5027), - [sym__superscript_open] = ACTIONS(5027), - [sym__subscript_open] = ACTIONS(5027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5027), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5027), - [sym__cite_author_in_text] = ACTIONS(5027), - [sym__cite_suppress_author] = ACTIONS(5027), - [sym__shortcode_open_escaped] = ACTIONS(5027), - [sym__shortcode_open] = ACTIONS(5027), - [sym__unclosed_span] = ACTIONS(5027), - [sym__strong_emphasis_open_star] = ACTIONS(5027), - [sym__strong_emphasis_open_underscore] = ACTIONS(5027), + [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_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(1440)] = { - [ts_builtin_sym_end] = ACTIONS(4959), - [sym__backslash_escape] = ACTIONS(4959), - [sym_entity_reference] = ACTIONS(4959), - [sym_numeric_character_reference] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_DQUOTE] = ACTIONS(4959), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4961), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_TILDE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4959), - [sym__newline_token] = ACTIONS(4959), - [aux_sym_insert_token1] = ACTIONS(4959), - [aux_sym_delete_token1] = ACTIONS(4959), - [aux_sym_highlight_token1] = ACTIONS(4959), - [aux_sym_edit_comment_token1] = ACTIONS(4959), - [anon_sym_CARET_LBRACK] = ACTIONS(4959), - [anon_sym_LBRACK_CARET] = ACTIONS(4959), - [sym_uri_autolink] = ACTIONS(4959), - [sym_email_autolink] = ACTIONS(4959), - [sym__whitespace_ge_2] = ACTIONS(4959), - [aux_sym__whitespace_token1] = ACTIONS(4961), - [sym__word_no_digit] = ACTIONS(4959), - [sym__digits] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4959), - [sym__code_span_start] = ACTIONS(4959), - [sym__emphasis_open_star] = ACTIONS(4959), - [sym__emphasis_open_underscore] = ACTIONS(4959), - [sym__strikeout_open] = ACTIONS(4959), - [sym__latex_span_start] = ACTIONS(4959), - [sym__single_quote_open] = ACTIONS(4959), - [sym__double_quote_open] = ACTIONS(4959), - [sym__superscript_open] = ACTIONS(4959), - [sym__subscript_open] = ACTIONS(4959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4959), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4959), - [sym__cite_author_in_text] = ACTIONS(4959), - [sym__cite_suppress_author] = ACTIONS(4959), - [sym__shortcode_open_escaped] = ACTIONS(4959), - [sym__shortcode_open] = ACTIONS(4959), - [sym__unclosed_span] = ACTIONS(4959), - [sym__strong_emphasis_open_star] = ACTIONS(4959), - [sym__strong_emphasis_open_underscore] = ACTIONS(4959), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__emphasis_close_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(1441)] = { - [sym__backslash_escape] = ACTIONS(4943), - [sym_entity_reference] = ACTIONS(4943), - [sym_numeric_character_reference] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [sym__newline_token] = ACTIONS(4943), - [aux_sym_insert_token1] = ACTIONS(4943), - [aux_sym_delete_token1] = ACTIONS(4943), - [aux_sym_highlight_token1] = ACTIONS(4943), - [aux_sym_edit_comment_token1] = ACTIONS(4943), - [anon_sym_CARET_LBRACK] = ACTIONS(4943), - [anon_sym_LBRACK_CARET] = ACTIONS(4943), - [sym_uri_autolink] = ACTIONS(4943), - [sym_email_autolink] = ACTIONS(4943), - [sym__whitespace_ge_2] = ACTIONS(4943), - [aux_sym__whitespace_token1] = ACTIONS(4945), - [sym__word_no_digit] = ACTIONS(4943), - [sym__digits] = ACTIONS(4943), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4943), - [sym__code_span_start] = ACTIONS(4943), - [sym__emphasis_open_star] = ACTIONS(4943), - [sym__emphasis_open_underscore] = ACTIONS(4943), - [sym__emphasis_close_underscore] = ACTIONS(4943), - [sym__strikeout_open] = ACTIONS(4943), - [sym__latex_span_start] = ACTIONS(4943), - [sym__single_quote_open] = ACTIONS(4943), - [sym__double_quote_open] = ACTIONS(4943), - [sym__superscript_open] = ACTIONS(4943), - [sym__subscript_open] = ACTIONS(4943), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4943), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4943), - [sym__cite_author_in_text] = ACTIONS(4943), - [sym__cite_suppress_author] = ACTIONS(4943), - [sym__shortcode_open_escaped] = ACTIONS(4943), - [sym__shortcode_open] = ACTIONS(4943), - [sym__unclosed_span] = ACTIONS(4943), - [sym__strong_emphasis_open_star] = ACTIONS(4943), - [sym__strong_emphasis_open_underscore] = ACTIONS(4943), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__emphasis_close_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(1442)] = { - [sym__backslash_escape] = ACTIONS(4947), - [sym_entity_reference] = ACTIONS(4947), - [sym_numeric_character_reference] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_DQUOTE] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [sym__newline_token] = ACTIONS(4947), - [aux_sym_insert_token1] = ACTIONS(4947), - [aux_sym_delete_token1] = ACTIONS(4947), - [aux_sym_highlight_token1] = ACTIONS(4947), - [aux_sym_edit_comment_token1] = ACTIONS(4947), - [anon_sym_CARET_LBRACK] = ACTIONS(4947), - [anon_sym_LBRACK_CARET] = ACTIONS(4947), - [sym_uri_autolink] = ACTIONS(4947), - [sym_email_autolink] = ACTIONS(4947), - [sym__whitespace_ge_2] = ACTIONS(4947), - [aux_sym__whitespace_token1] = ACTIONS(4949), - [sym__word_no_digit] = ACTIONS(4947), - [sym__digits] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4947), - [sym__code_span_start] = ACTIONS(4947), - [sym__emphasis_open_star] = ACTIONS(4947), - [sym__emphasis_open_underscore] = ACTIONS(4947), - [sym__emphasis_close_underscore] = ACTIONS(4947), - [sym__strikeout_open] = ACTIONS(4947), - [sym__latex_span_start] = ACTIONS(4947), - [sym__single_quote_open] = ACTIONS(4947), - [sym__double_quote_open] = ACTIONS(4947), - [sym__superscript_open] = ACTIONS(4947), - [sym__subscript_open] = ACTIONS(4947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4947), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4947), - [sym__cite_author_in_text] = ACTIONS(4947), - [sym__cite_suppress_author] = ACTIONS(4947), - [sym__shortcode_open_escaped] = ACTIONS(4947), - [sym__shortcode_open] = ACTIONS(4947), - [sym__unclosed_span] = ACTIONS(4947), - [sym__strong_emphasis_open_star] = ACTIONS(4947), - [sym__strong_emphasis_open_underscore] = ACTIONS(4947), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__emphasis_close_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(1443)] = { - [ts_builtin_sym_end] = ACTIONS(5031), - [sym__backslash_escape] = ACTIONS(5031), - [sym_entity_reference] = ACTIONS(5031), - [sym_numeric_character_reference] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_BSLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_BQUOTE] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [sym__newline_token] = ACTIONS(5031), - [aux_sym_insert_token1] = ACTIONS(5031), - [aux_sym_delete_token1] = ACTIONS(5031), - [aux_sym_highlight_token1] = ACTIONS(5031), - [aux_sym_edit_comment_token1] = ACTIONS(5031), - [anon_sym_CARET_LBRACK] = ACTIONS(5031), - [anon_sym_LBRACK_CARET] = ACTIONS(5031), - [sym_uri_autolink] = ACTIONS(5031), - [sym_email_autolink] = ACTIONS(5031), - [sym__whitespace_ge_2] = ACTIONS(5031), - [aux_sym__whitespace_token1] = ACTIONS(5033), - [sym__word_no_digit] = ACTIONS(5031), - [sym__digits] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [sym__code_span_start] = ACTIONS(5031), - [sym__emphasis_open_star] = ACTIONS(5031), - [sym__emphasis_open_underscore] = ACTIONS(5031), - [sym__strikeout_open] = ACTIONS(5031), - [sym__latex_span_start] = ACTIONS(5031), - [sym__single_quote_open] = ACTIONS(5031), - [sym__double_quote_open] = ACTIONS(5031), - [sym__superscript_open] = ACTIONS(5031), - [sym__subscript_open] = ACTIONS(5031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5031), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5031), - [sym__cite_author_in_text] = ACTIONS(5031), - [sym__cite_suppress_author] = ACTIONS(5031), - [sym__shortcode_open_escaped] = ACTIONS(5031), - [sym__shortcode_open] = ACTIONS(5031), - [sym__unclosed_span] = ACTIONS(5031), - [sym__strong_emphasis_open_star] = ACTIONS(5031), - [sym__strong_emphasis_open_underscore] = ACTIONS(5031), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__emphasis_close_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(1444)] = { - [sym__backslash_escape] = ACTIONS(4951), - [sym_entity_reference] = ACTIONS(4951), - [sym_numeric_character_reference] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [sym__newline_token] = ACTIONS(4951), - [aux_sym_insert_token1] = ACTIONS(4951), - [aux_sym_delete_token1] = ACTIONS(4951), - [aux_sym_highlight_token1] = ACTIONS(4951), - [aux_sym_edit_comment_token1] = ACTIONS(4951), - [anon_sym_CARET_LBRACK] = ACTIONS(4951), - [anon_sym_LBRACK_CARET] = ACTIONS(4951), - [sym_uri_autolink] = ACTIONS(4951), - [sym_email_autolink] = ACTIONS(4951), - [sym__whitespace_ge_2] = ACTIONS(4951), - [aux_sym__whitespace_token1] = ACTIONS(4953), - [sym__word_no_digit] = ACTIONS(4951), - [sym__digits] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4951), - [sym__code_span_start] = ACTIONS(4951), - [sym__emphasis_open_star] = ACTIONS(4951), - [sym__emphasis_open_underscore] = ACTIONS(4951), - [sym__emphasis_close_underscore] = ACTIONS(4951), - [sym__strikeout_open] = ACTIONS(4951), - [sym__latex_span_start] = ACTIONS(4951), - [sym__single_quote_open] = ACTIONS(4951), - [sym__double_quote_open] = ACTIONS(4951), - [sym__superscript_open] = ACTIONS(4951), - [sym__subscript_open] = ACTIONS(4951), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4951), - [sym__cite_author_in_text] = ACTIONS(4951), - [sym__cite_suppress_author] = ACTIONS(4951), - [sym__shortcode_open_escaped] = ACTIONS(4951), - [sym__shortcode_open] = ACTIONS(4951), - [sym__unclosed_span] = ACTIONS(4951), - [sym__strong_emphasis_open_star] = ACTIONS(4951), - [sym__strong_emphasis_open_underscore] = ACTIONS(4951), + [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_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(1445)] = { - [sym__backslash_escape] = ACTIONS(4955), - [sym_entity_reference] = ACTIONS(4955), - [sym_numeric_character_reference] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_DQUOTE] = ACTIONS(4955), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4957), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [sym__newline_token] = ACTIONS(4955), - [aux_sym_insert_token1] = ACTIONS(4955), - [aux_sym_delete_token1] = ACTIONS(4955), - [aux_sym_highlight_token1] = ACTIONS(4955), - [aux_sym_edit_comment_token1] = ACTIONS(4955), - [anon_sym_CARET_LBRACK] = ACTIONS(4955), - [anon_sym_LBRACK_CARET] = ACTIONS(4955), - [sym_uri_autolink] = ACTIONS(4955), - [sym_email_autolink] = ACTIONS(4955), - [sym__whitespace_ge_2] = ACTIONS(4955), - [aux_sym__whitespace_token1] = ACTIONS(4957), - [sym__word_no_digit] = ACTIONS(4955), - [sym__digits] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4955), - [sym__code_span_start] = ACTIONS(4955), - [sym__emphasis_open_star] = ACTIONS(4955), - [sym__emphasis_open_underscore] = ACTIONS(4955), - [sym__emphasis_close_underscore] = ACTIONS(4955), - [sym__strikeout_open] = ACTIONS(4955), - [sym__latex_span_start] = ACTIONS(4955), - [sym__single_quote_open] = ACTIONS(4955), - [sym__double_quote_open] = ACTIONS(4955), - [sym__superscript_open] = ACTIONS(4955), - [sym__subscript_open] = ACTIONS(4955), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4955), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4955), - [sym__cite_author_in_text] = ACTIONS(4955), - [sym__cite_suppress_author] = ACTIONS(4955), - [sym__shortcode_open_escaped] = ACTIONS(4955), - [sym__shortcode_open] = ACTIONS(4955), - [sym__unclosed_span] = ACTIONS(4955), - [sym__strong_emphasis_open_star] = ACTIONS(4955), - [sym__strong_emphasis_open_underscore] = ACTIONS(4955), + [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_underscore] = 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(1446)] = { - [sym__backslash_escape] = ACTIONS(4959), - [sym_entity_reference] = ACTIONS(4959), - [sym_numeric_character_reference] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_DQUOTE] = ACTIONS(4959), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4961), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_TILDE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4959), - [sym__newline_token] = ACTIONS(4959), - [aux_sym_insert_token1] = ACTIONS(4959), - [aux_sym_delete_token1] = ACTIONS(4959), - [aux_sym_highlight_token1] = ACTIONS(4959), - [aux_sym_edit_comment_token1] = ACTIONS(4959), - [anon_sym_CARET_LBRACK] = ACTIONS(4959), - [anon_sym_LBRACK_CARET] = ACTIONS(4959), - [sym_uri_autolink] = ACTIONS(4959), - [sym_email_autolink] = ACTIONS(4959), - [sym__whitespace_ge_2] = ACTIONS(4959), - [aux_sym__whitespace_token1] = ACTIONS(4961), - [sym__word_no_digit] = ACTIONS(4959), - [sym__digits] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4959), - [sym__code_span_start] = ACTIONS(4959), - [sym__emphasis_open_star] = ACTIONS(4959), - [sym__emphasis_open_underscore] = ACTIONS(4959), - [sym__emphasis_close_underscore] = ACTIONS(4959), - [sym__strikeout_open] = ACTIONS(4959), - [sym__latex_span_start] = ACTIONS(4959), - [sym__single_quote_open] = ACTIONS(4959), - [sym__double_quote_open] = ACTIONS(4959), - [sym__superscript_open] = ACTIONS(4959), - [sym__subscript_open] = ACTIONS(4959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4959), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4959), - [sym__cite_author_in_text] = ACTIONS(4959), - [sym__cite_suppress_author] = ACTIONS(4959), - [sym__shortcode_open_escaped] = ACTIONS(4959), - [sym__shortcode_open] = ACTIONS(4959), - [sym__unclosed_span] = ACTIONS(4959), - [sym__strong_emphasis_open_star] = ACTIONS(4959), - [sym__strong_emphasis_open_underscore] = ACTIONS(4959), + [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__strikeout_close] = 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(1447)] = { - [sym__backslash_escape] = ACTIONS(4963), - [sym_entity_reference] = ACTIONS(4963), - [sym_numeric_character_reference] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_DQUOTE] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4963), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_RPAREN] = ACTIONS(4963), - [sym__newline_token] = ACTIONS(4963), - [aux_sym_insert_token1] = ACTIONS(4963), - [aux_sym_delete_token1] = ACTIONS(4963), - [aux_sym_highlight_token1] = ACTIONS(4963), - [aux_sym_edit_comment_token1] = ACTIONS(4963), - [anon_sym_CARET_LBRACK] = ACTIONS(4963), - [anon_sym_LBRACK_CARET] = ACTIONS(4963), - [sym_uri_autolink] = ACTIONS(4963), - [sym_email_autolink] = ACTIONS(4963), - [sym__whitespace_ge_2] = ACTIONS(4963), - [aux_sym__whitespace_token1] = ACTIONS(4965), - [sym__word_no_digit] = ACTIONS(4963), - [sym__digits] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4963), - [sym__code_span_start] = ACTIONS(4963), - [sym__emphasis_open_star] = ACTIONS(4963), - [sym__emphasis_open_underscore] = ACTIONS(4963), - [sym__emphasis_close_underscore] = ACTIONS(4963), - [sym__strikeout_open] = ACTIONS(4963), - [sym__latex_span_start] = ACTIONS(4963), - [sym__single_quote_open] = ACTIONS(4963), - [sym__double_quote_open] = ACTIONS(4963), - [sym__superscript_open] = ACTIONS(4963), - [sym__subscript_open] = ACTIONS(4963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4963), - [sym__cite_author_in_text] = ACTIONS(4963), - [sym__cite_suppress_author] = ACTIONS(4963), - [sym__shortcode_open_escaped] = ACTIONS(4963), - [sym__shortcode_open] = ACTIONS(4963), - [sym__unclosed_span] = ACTIONS(4963), - [sym__strong_emphasis_open_star] = ACTIONS(4963), - [sym__strong_emphasis_open_underscore] = ACTIONS(4963), + [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__superscript_close] = 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(1448)] = { - [sym__backslash_escape] = ACTIONS(4967), - [sym_entity_reference] = ACTIONS(4967), - [sym_numeric_character_reference] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_BQUOTE] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [sym__newline_token] = ACTIONS(4967), - [aux_sym_insert_token1] = ACTIONS(4967), - [aux_sym_delete_token1] = ACTIONS(4967), - [aux_sym_highlight_token1] = ACTIONS(4967), - [aux_sym_edit_comment_token1] = ACTIONS(4967), - [anon_sym_CARET_LBRACK] = ACTIONS(4967), - [anon_sym_LBRACK_CARET] = ACTIONS(4967), - [sym_uri_autolink] = ACTIONS(4967), - [sym_email_autolink] = ACTIONS(4967), - [sym__whitespace_ge_2] = ACTIONS(4967), - [aux_sym__whitespace_token1] = ACTIONS(4969), - [sym__word_no_digit] = ACTIONS(4967), - [sym__digits] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [sym__code_span_start] = ACTIONS(4967), - [sym__emphasis_open_star] = ACTIONS(4967), - [sym__emphasis_open_underscore] = ACTIONS(4967), - [sym__emphasis_close_underscore] = ACTIONS(4967), - [sym__strikeout_open] = ACTIONS(4967), - [sym__latex_span_start] = ACTIONS(4967), - [sym__single_quote_open] = ACTIONS(4967), - [sym__double_quote_open] = ACTIONS(4967), - [sym__superscript_open] = ACTIONS(4967), - [sym__subscript_open] = ACTIONS(4967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4967), - [sym__cite_author_in_text] = ACTIONS(4967), - [sym__cite_suppress_author] = ACTIONS(4967), - [sym__shortcode_open_escaped] = ACTIONS(4967), - [sym__shortcode_open] = ACTIONS(4967), - [sym__unclosed_span] = ACTIONS(4967), - [sym__strong_emphasis_open_star] = ACTIONS(4967), - [sym__strong_emphasis_open_underscore] = ACTIONS(4967), + [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__superscript_close] = 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(1449)] = { - [sym__backslash_escape] = ACTIONS(4971), - [sym_entity_reference] = ACTIONS(4971), - [sym_numeric_character_reference] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym_BQUOTE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [sym__newline_token] = ACTIONS(4971), - [aux_sym_insert_token1] = ACTIONS(4971), - [aux_sym_delete_token1] = ACTIONS(4971), - [aux_sym_highlight_token1] = ACTIONS(4971), - [aux_sym_edit_comment_token1] = ACTIONS(4971), - [anon_sym_CARET_LBRACK] = ACTIONS(4971), - [anon_sym_LBRACK_CARET] = ACTIONS(4971), - [sym_uri_autolink] = ACTIONS(4971), - [sym_email_autolink] = ACTIONS(4971), - [sym__whitespace_ge_2] = ACTIONS(4971), - [aux_sym__whitespace_token1] = ACTIONS(4973), - [sym__word_no_digit] = ACTIONS(4971), - [sym__digits] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4971), - [sym__code_span_start] = ACTIONS(4971), - [sym__emphasis_open_star] = ACTIONS(4971), - [sym__emphasis_open_underscore] = ACTIONS(4971), - [sym__emphasis_close_underscore] = ACTIONS(4971), - [sym__strikeout_open] = ACTIONS(4971), - [sym__latex_span_start] = ACTIONS(4971), - [sym__single_quote_open] = ACTIONS(4971), - [sym__double_quote_open] = ACTIONS(4971), - [sym__superscript_open] = ACTIONS(4971), - [sym__subscript_open] = ACTIONS(4971), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4971), - [sym__cite_author_in_text] = ACTIONS(4971), - [sym__cite_suppress_author] = ACTIONS(4971), - [sym__shortcode_open_escaped] = ACTIONS(4971), - [sym__shortcode_open] = ACTIONS(4971), - [sym__unclosed_span] = ACTIONS(4971), - [sym__strong_emphasis_open_star] = ACTIONS(4971), - [sym__strong_emphasis_open_underscore] = ACTIONS(4971), + [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(1450)] = { - [sym__backslash_escape] = ACTIONS(4975), - [sym_entity_reference] = ACTIONS(4975), - [sym_numeric_character_reference] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [sym__newline_token] = ACTIONS(4975), - [aux_sym_insert_token1] = ACTIONS(4975), - [aux_sym_delete_token1] = ACTIONS(4975), - [aux_sym_highlight_token1] = ACTIONS(4975), - [aux_sym_edit_comment_token1] = ACTIONS(4975), - [anon_sym_CARET_LBRACK] = ACTIONS(4975), - [anon_sym_LBRACK_CARET] = ACTIONS(4975), - [sym_uri_autolink] = ACTIONS(4975), - [sym_email_autolink] = ACTIONS(4975), - [sym__whitespace_ge_2] = ACTIONS(4975), - [aux_sym__whitespace_token1] = ACTIONS(4977), - [sym__word_no_digit] = ACTIONS(4975), - [sym__digits] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [sym__code_span_start] = ACTIONS(4975), - [sym__emphasis_open_star] = ACTIONS(4975), - [sym__emphasis_open_underscore] = ACTIONS(4975), - [sym__emphasis_close_underscore] = ACTIONS(4975), - [sym__strikeout_open] = ACTIONS(4975), - [sym__latex_span_start] = ACTIONS(4975), - [sym__single_quote_open] = ACTIONS(4975), - [sym__double_quote_open] = ACTIONS(4975), - [sym__superscript_open] = ACTIONS(4975), - [sym__subscript_open] = ACTIONS(4975), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4975), - [sym__cite_author_in_text] = ACTIONS(4975), - [sym__cite_suppress_author] = ACTIONS(4975), - [sym__shortcode_open_escaped] = ACTIONS(4975), - [sym__shortcode_open] = ACTIONS(4975), - [sym__unclosed_span] = ACTIONS(4975), - [sym__strong_emphasis_open_star] = ACTIONS(4975), - [sym__strong_emphasis_open_underscore] = ACTIONS(4975), + [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__superscript_close] = 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(1451)] = { - [sym__backslash_escape] = ACTIONS(4979), - [sym_entity_reference] = ACTIONS(4979), - [sym_numeric_character_reference] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_COLON] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), - [sym__newline_token] = ACTIONS(4979), - [aux_sym_insert_token1] = ACTIONS(4979), - [aux_sym_delete_token1] = ACTIONS(4979), - [aux_sym_highlight_token1] = ACTIONS(4979), - [aux_sym_edit_comment_token1] = ACTIONS(4979), - [anon_sym_CARET_LBRACK] = ACTIONS(4979), - [anon_sym_LBRACK_CARET] = ACTIONS(4979), - [sym_uri_autolink] = ACTIONS(4979), - [sym_email_autolink] = ACTIONS(4979), - [sym__whitespace_ge_2] = ACTIONS(4979), - [aux_sym__whitespace_token1] = ACTIONS(4981), - [sym__word_no_digit] = ACTIONS(4979), - [sym__digits] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4979), - [sym__code_span_start] = ACTIONS(4979), - [sym__emphasis_open_star] = ACTIONS(4979), - [sym__emphasis_open_underscore] = ACTIONS(4979), - [sym__emphasis_close_underscore] = ACTIONS(4979), - [sym__strikeout_open] = ACTIONS(4979), - [sym__latex_span_start] = ACTIONS(4979), - [sym__single_quote_open] = ACTIONS(4979), - [sym__double_quote_open] = ACTIONS(4979), - [sym__superscript_open] = ACTIONS(4979), - [sym__subscript_open] = ACTIONS(4979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4979), - [sym__cite_author_in_text] = ACTIONS(4979), - [sym__cite_suppress_author] = ACTIONS(4979), - [sym__shortcode_open_escaped] = ACTIONS(4979), - [sym__shortcode_open] = ACTIONS(4979), - [sym__unclosed_span] = ACTIONS(4979), - [sym__strong_emphasis_open_star] = ACTIONS(4979), - [sym__strong_emphasis_open_underscore] = ACTIONS(4979), + [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__superscript_close] = 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(1452)] = { - [ts_builtin_sym_end] = ACTIONS(5035), - [sym__backslash_escape] = ACTIONS(5035), - [sym_entity_reference] = ACTIONS(5035), - [sym_numeric_character_reference] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_DQUOTE] = ACTIONS(5035), - [anon_sym_POUND] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_BSLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [sym__newline_token] = ACTIONS(5035), - [aux_sym_insert_token1] = ACTIONS(5035), - [aux_sym_delete_token1] = ACTIONS(5035), - [aux_sym_highlight_token1] = ACTIONS(5035), - [aux_sym_edit_comment_token1] = ACTIONS(5035), - [anon_sym_CARET_LBRACK] = ACTIONS(5035), - [anon_sym_LBRACK_CARET] = ACTIONS(5035), - [sym_uri_autolink] = ACTIONS(5035), - [sym_email_autolink] = ACTIONS(5035), - [sym__whitespace_ge_2] = ACTIONS(5035), - [aux_sym__whitespace_token1] = ACTIONS(5037), - [sym__word_no_digit] = ACTIONS(5035), - [sym__digits] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5035), - [sym__code_span_start] = ACTIONS(5035), - [sym__emphasis_open_star] = ACTIONS(5035), - [sym__emphasis_open_underscore] = ACTIONS(5035), - [sym__strikeout_open] = ACTIONS(5035), - [sym__latex_span_start] = ACTIONS(5035), - [sym__single_quote_open] = ACTIONS(5035), - [sym__double_quote_open] = ACTIONS(5035), - [sym__superscript_open] = ACTIONS(5035), - [sym__subscript_open] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5035), - [sym__cite_author_in_text] = ACTIONS(5035), - [sym__cite_suppress_author] = ACTIONS(5035), - [sym__shortcode_open_escaped] = ACTIONS(5035), - [sym__shortcode_open] = ACTIONS(5035), - [sym__unclosed_span] = ACTIONS(5035), - [sym__strong_emphasis_open_star] = ACTIONS(5035), - [sym__strong_emphasis_open_underscore] = ACTIONS(5035), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__strikeout_open] = ACTIONS(4303), + [sym__strikeout_close] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(1453)] = { - [sym__backslash_escape] = ACTIONS(4983), - [sym_entity_reference] = ACTIONS(4983), - [sym_numeric_character_reference] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [sym__newline_token] = ACTIONS(4983), - [aux_sym_insert_token1] = ACTIONS(4983), - [aux_sym_delete_token1] = ACTIONS(4983), - [aux_sym_highlight_token1] = ACTIONS(4983), - [aux_sym_edit_comment_token1] = ACTIONS(4983), - [anon_sym_CARET_LBRACK] = ACTIONS(4983), - [anon_sym_LBRACK_CARET] = ACTIONS(4983), - [sym_uri_autolink] = ACTIONS(4983), - [sym_email_autolink] = ACTIONS(4983), - [sym__whitespace_ge_2] = ACTIONS(4983), - [aux_sym__whitespace_token1] = ACTIONS(4985), - [sym__word_no_digit] = ACTIONS(4983), - [sym__digits] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4983), - [sym__code_span_start] = ACTIONS(4983), - [sym__emphasis_open_star] = ACTIONS(4983), - [sym__emphasis_open_underscore] = ACTIONS(4983), - [sym__emphasis_close_underscore] = ACTIONS(4983), - [sym__strikeout_open] = ACTIONS(4983), - [sym__latex_span_start] = ACTIONS(4983), - [sym__single_quote_open] = ACTIONS(4983), - [sym__double_quote_open] = ACTIONS(4983), - [sym__superscript_open] = ACTIONS(4983), - [sym__subscript_open] = ACTIONS(4983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4983), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4983), - [sym__cite_author_in_text] = ACTIONS(4983), - [sym__cite_suppress_author] = ACTIONS(4983), - [sym__shortcode_open_escaped] = ACTIONS(4983), - [sym__shortcode_open] = ACTIONS(4983), - [sym__unclosed_span] = ACTIONS(4983), - [sym__strong_emphasis_open_star] = ACTIONS(4983), - [sym__strong_emphasis_open_underscore] = ACTIONS(4983), + [ts_builtin_sym_end] = ACTIONS(4579), + [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__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(1454)] = { - [sym__backslash_escape] = ACTIONS(4987), - [sym_entity_reference] = ACTIONS(4987), - [sym_numeric_character_reference] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym__newline_token] = ACTIONS(4987), - [aux_sym_insert_token1] = ACTIONS(4987), - [aux_sym_delete_token1] = ACTIONS(4987), - [aux_sym_highlight_token1] = ACTIONS(4987), - [aux_sym_edit_comment_token1] = ACTIONS(4987), - [anon_sym_CARET_LBRACK] = ACTIONS(4987), - [anon_sym_LBRACK_CARET] = ACTIONS(4987), - [sym_uri_autolink] = ACTIONS(4987), - [sym_email_autolink] = ACTIONS(4987), - [sym__whitespace_ge_2] = ACTIONS(4987), - [aux_sym__whitespace_token1] = ACTIONS(4989), - [sym__word_no_digit] = ACTIONS(4987), - [sym__digits] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4987), - [sym__code_span_start] = ACTIONS(4987), - [sym__emphasis_open_star] = ACTIONS(4987), - [sym__emphasis_open_underscore] = ACTIONS(4987), - [sym__emphasis_close_underscore] = ACTIONS(4987), - [sym__strikeout_open] = ACTIONS(4987), - [sym__latex_span_start] = ACTIONS(4987), - [sym__single_quote_open] = ACTIONS(4987), - [sym__double_quote_open] = ACTIONS(4987), - [sym__superscript_open] = ACTIONS(4987), - [sym__subscript_open] = ACTIONS(4987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4987), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4987), - [sym__cite_author_in_text] = ACTIONS(4987), - [sym__cite_suppress_author] = ACTIONS(4987), - [sym__shortcode_open_escaped] = ACTIONS(4987), - [sym__shortcode_open] = ACTIONS(4987), - [sym__unclosed_span] = ACTIONS(4987), - [sym__strong_emphasis_open_star] = ACTIONS(4987), - [sym__strong_emphasis_open_underscore] = ACTIONS(4987), + [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(1455)] = { - [sym__backslash_escape] = ACTIONS(5179), - [sym_entity_reference] = ACTIONS(5179), - [sym_numeric_character_reference] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_QMARK] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_BSLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [sym__newline_token] = ACTIONS(5179), - [aux_sym_insert_token1] = ACTIONS(5179), - [aux_sym_delete_token1] = ACTIONS(5179), - [aux_sym_highlight_token1] = ACTIONS(5179), - [aux_sym_edit_comment_token1] = ACTIONS(5179), - [anon_sym_CARET_LBRACK] = ACTIONS(5179), - [anon_sym_LBRACK_CARET] = ACTIONS(5179), - [sym_uri_autolink] = ACTIONS(5179), - [sym_email_autolink] = ACTIONS(5179), - [sym__whitespace_ge_2] = ACTIONS(5179), - [aux_sym__whitespace_token1] = ACTIONS(5181), - [sym__word_no_digit] = ACTIONS(5179), - [sym__digits] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5181), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5179), - [sym__code_span_start] = ACTIONS(5179), - [sym__emphasis_open_star] = ACTIONS(5179), - [sym__emphasis_open_underscore] = ACTIONS(5179), - [sym__emphasis_close_star] = ACTIONS(5179), - [sym__strikeout_open] = ACTIONS(5179), - [sym__latex_span_start] = ACTIONS(5179), - [sym__single_quote_open] = ACTIONS(5179), - [sym__double_quote_open] = ACTIONS(5179), - [sym__superscript_open] = ACTIONS(5179), - [sym__subscript_open] = ACTIONS(5179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5179), - [sym__cite_author_in_text] = ACTIONS(5179), - [sym__cite_suppress_author] = ACTIONS(5179), - [sym__shortcode_open_escaped] = ACTIONS(5179), - [sym__shortcode_open] = ACTIONS(5179), - [sym__unclosed_span] = ACTIONS(5179), - [sym__strong_emphasis_open_star] = ACTIONS(5179), - [sym__strong_emphasis_open_underscore] = ACTIONS(5179), + [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__strikeout_close] = 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(1456)] = { - [sym__backslash_escape] = ACTIONS(4991), - [sym_entity_reference] = ACTIONS(4991), - [sym_numeric_character_reference] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH] = ACTIONS(4993), - [anon_sym_CARET] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym__newline_token] = ACTIONS(4991), - [aux_sym_insert_token1] = ACTIONS(4991), - [aux_sym_delete_token1] = ACTIONS(4991), - [aux_sym_highlight_token1] = ACTIONS(4991), - [aux_sym_edit_comment_token1] = ACTIONS(4991), - [anon_sym_CARET_LBRACK] = ACTIONS(4991), - [anon_sym_LBRACK_CARET] = ACTIONS(4991), - [sym_uri_autolink] = ACTIONS(4991), - [sym_email_autolink] = ACTIONS(4991), - [sym__whitespace_ge_2] = ACTIONS(4991), - [aux_sym__whitespace_token1] = ACTIONS(4993), - [sym__word_no_digit] = ACTIONS(4991), - [sym__digits] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), - [sym__code_span_start] = ACTIONS(4991), - [sym__emphasis_open_star] = ACTIONS(4991), - [sym__emphasis_open_underscore] = ACTIONS(4991), - [sym__emphasis_close_underscore] = ACTIONS(4991), - [sym__strikeout_open] = ACTIONS(4991), - [sym__latex_span_start] = ACTIONS(4991), - [sym__single_quote_open] = ACTIONS(4991), - [sym__double_quote_open] = ACTIONS(4991), - [sym__superscript_open] = ACTIONS(4991), - [sym__subscript_open] = ACTIONS(4991), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4991), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4991), - [sym__cite_author_in_text] = ACTIONS(4991), - [sym__cite_suppress_author] = ACTIONS(4991), - [sym__shortcode_open_escaped] = ACTIONS(4991), - [sym__shortcode_open] = ACTIONS(4991), - [sym__unclosed_span] = ACTIONS(4991), - [sym__strong_emphasis_open_star] = ACTIONS(4991), - [sym__strong_emphasis_open_underscore] = ACTIONS(4991), + [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(1457)] = { - [sym__backslash_escape] = ACTIONS(4995), - [sym_entity_reference] = ACTIONS(4995), - [sym_numeric_character_reference] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym__newline_token] = ACTIONS(4995), - [aux_sym_insert_token1] = ACTIONS(4995), - [aux_sym_delete_token1] = ACTIONS(4995), - [aux_sym_highlight_token1] = ACTIONS(4995), - [aux_sym_edit_comment_token1] = ACTIONS(4995), - [anon_sym_CARET_LBRACK] = ACTIONS(4995), - [anon_sym_LBRACK_CARET] = ACTIONS(4995), - [sym_uri_autolink] = ACTIONS(4995), - [sym_email_autolink] = ACTIONS(4995), - [sym__whitespace_ge_2] = ACTIONS(4995), - [aux_sym__whitespace_token1] = ACTIONS(4997), - [sym__word_no_digit] = ACTIONS(4995), - [sym__digits] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4995), - [sym__code_span_start] = ACTIONS(4995), - [sym__emphasis_open_star] = ACTIONS(4995), - [sym__emphasis_open_underscore] = ACTIONS(4995), - [sym__emphasis_close_underscore] = ACTIONS(4995), - [sym__strikeout_open] = ACTIONS(4995), - [sym__latex_span_start] = ACTIONS(4995), - [sym__single_quote_open] = ACTIONS(4995), - [sym__double_quote_open] = ACTIONS(4995), - [sym__superscript_open] = ACTIONS(4995), - [sym__subscript_open] = ACTIONS(4995), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4995), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4995), - [sym__cite_author_in_text] = ACTIONS(4995), - [sym__cite_suppress_author] = ACTIONS(4995), - [sym__shortcode_open_escaped] = ACTIONS(4995), - [sym__shortcode_open] = ACTIONS(4995), - [sym__unclosed_span] = ACTIONS(4995), - [sym__strong_emphasis_open_star] = ACTIONS(4995), - [sym__strong_emphasis_open_underscore] = ACTIONS(4995), + [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(1458)] = { - [sym__backslash_escape] = ACTIONS(4999), - [sym_entity_reference] = ACTIONS(4999), - [sym_numeric_character_reference] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [sym__newline_token] = ACTIONS(4999), - [aux_sym_insert_token1] = ACTIONS(4999), - [aux_sym_delete_token1] = ACTIONS(4999), - [aux_sym_highlight_token1] = ACTIONS(4999), - [aux_sym_edit_comment_token1] = ACTIONS(4999), - [anon_sym_CARET_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_CARET] = ACTIONS(4999), - [sym_uri_autolink] = ACTIONS(4999), - [sym_email_autolink] = ACTIONS(4999), - [sym__whitespace_ge_2] = ACTIONS(4999), - [aux_sym__whitespace_token1] = ACTIONS(5001), - [sym__word_no_digit] = ACTIONS(4999), - [sym__digits] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4999), - [sym__code_span_start] = ACTIONS(4999), - [sym__emphasis_open_star] = ACTIONS(4999), - [sym__emphasis_open_underscore] = ACTIONS(4999), - [sym__emphasis_close_underscore] = ACTIONS(4999), - [sym__strikeout_open] = ACTIONS(4999), - [sym__latex_span_start] = ACTIONS(4999), - [sym__single_quote_open] = ACTIONS(4999), - [sym__double_quote_open] = ACTIONS(4999), - [sym__superscript_open] = ACTIONS(4999), - [sym__subscript_open] = ACTIONS(4999), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4999), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4999), - [sym__cite_author_in_text] = ACTIONS(4999), - [sym__cite_suppress_author] = ACTIONS(4999), - [sym__shortcode_open_escaped] = ACTIONS(4999), - [sym__shortcode_open] = ACTIONS(4999), - [sym__unclosed_span] = ACTIONS(4999), - [sym__strong_emphasis_open_star] = ACTIONS(4999), - [sym__strong_emphasis_open_underscore] = ACTIONS(4999), + [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(1459)] = { - [sym__backslash_escape] = ACTIONS(5003), - [sym_entity_reference] = ACTIONS(5003), - [sym_numeric_character_reference] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym__newline_token] = ACTIONS(5003), - [aux_sym_insert_token1] = ACTIONS(5003), - [aux_sym_delete_token1] = ACTIONS(5003), - [aux_sym_highlight_token1] = ACTIONS(5003), - [aux_sym_edit_comment_token1] = ACTIONS(5003), - [anon_sym_CARET_LBRACK] = ACTIONS(5003), - [anon_sym_LBRACK_CARET] = ACTIONS(5003), - [sym_uri_autolink] = ACTIONS(5003), - [sym_email_autolink] = ACTIONS(5003), - [sym__whitespace_ge_2] = ACTIONS(5003), - [aux_sym__whitespace_token1] = ACTIONS(5005), - [sym__word_no_digit] = ACTIONS(5003), - [sym__digits] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [sym__code_span_start] = ACTIONS(5003), - [sym__emphasis_open_star] = ACTIONS(5003), - [sym__emphasis_open_underscore] = ACTIONS(5003), - [sym__emphasis_close_underscore] = ACTIONS(5003), - [sym__strikeout_open] = ACTIONS(5003), - [sym__latex_span_start] = ACTIONS(5003), - [sym__single_quote_open] = ACTIONS(5003), - [sym__double_quote_open] = ACTIONS(5003), - [sym__superscript_open] = ACTIONS(5003), - [sym__subscript_open] = ACTIONS(5003), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5003), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5003), - [sym__cite_author_in_text] = ACTIONS(5003), - [sym__cite_suppress_author] = ACTIONS(5003), - [sym__shortcode_open_escaped] = ACTIONS(5003), - [sym__shortcode_open] = ACTIONS(5003), - [sym__unclosed_span] = ACTIONS(5003), - [sym__strong_emphasis_open_star] = ACTIONS(5003), - [sym__strong_emphasis_open_underscore] = ACTIONS(5003), + [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__strikeout_close] = 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(1460)] = { - [ts_builtin_sym_end] = ACTIONS(5039), - [sym__backslash_escape] = ACTIONS(5039), - [sym_entity_reference] = ACTIONS(5039), - [sym_numeric_character_reference] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(5039), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_BSLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [sym__newline_token] = ACTIONS(5039), - [aux_sym_insert_token1] = ACTIONS(5039), - [aux_sym_delete_token1] = ACTIONS(5039), - [aux_sym_highlight_token1] = ACTIONS(5039), - [aux_sym_edit_comment_token1] = ACTIONS(5039), - [anon_sym_CARET_LBRACK] = ACTIONS(5039), - [anon_sym_LBRACK_CARET] = ACTIONS(5039), - [sym_uri_autolink] = ACTIONS(5039), - [sym_email_autolink] = ACTIONS(5039), - [sym__whitespace_ge_2] = ACTIONS(5039), - [aux_sym__whitespace_token1] = ACTIONS(5041), - [sym__word_no_digit] = ACTIONS(5039), - [sym__digits] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5039), - [sym__code_span_start] = ACTIONS(5039), - [sym__emphasis_open_star] = ACTIONS(5039), - [sym__emphasis_open_underscore] = ACTIONS(5039), - [sym__strikeout_open] = ACTIONS(5039), - [sym__latex_span_start] = ACTIONS(5039), - [sym__single_quote_open] = ACTIONS(5039), - [sym__double_quote_open] = ACTIONS(5039), - [sym__superscript_open] = ACTIONS(5039), - [sym__subscript_open] = ACTIONS(5039), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5039), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5039), - [sym__cite_author_in_text] = ACTIONS(5039), - [sym__cite_suppress_author] = ACTIONS(5039), - [sym__shortcode_open_escaped] = ACTIONS(5039), - [sym__shortcode_open] = ACTIONS(5039), - [sym__unclosed_span] = ACTIONS(5039), - [sym__strong_emphasis_open_star] = ACTIONS(5039), - [sym__strong_emphasis_open_underscore] = ACTIONS(5039), + [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__strikeout_close] = 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(1461)] = { - [sym__backslash_escape] = ACTIONS(5007), - [sym_entity_reference] = ACTIONS(5007), - [sym_numeric_character_reference] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH] = ACTIONS(5009), - [anon_sym_CARET] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym__newline_token] = ACTIONS(5007), - [aux_sym_insert_token1] = ACTIONS(5007), - [aux_sym_delete_token1] = ACTIONS(5007), - [aux_sym_highlight_token1] = ACTIONS(5007), - [aux_sym_edit_comment_token1] = ACTIONS(5007), - [anon_sym_CARET_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_CARET] = ACTIONS(5007), - [sym_uri_autolink] = ACTIONS(5007), - [sym_email_autolink] = ACTIONS(5007), - [sym__whitespace_ge_2] = ACTIONS(5007), - [aux_sym__whitespace_token1] = ACTIONS(5009), - [sym__word_no_digit] = ACTIONS(5007), - [sym__digits] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), - [sym__code_span_start] = ACTIONS(5007), - [sym__emphasis_open_star] = ACTIONS(5007), - [sym__emphasis_open_underscore] = ACTIONS(5007), - [sym__emphasis_close_star] = ACTIONS(5007), - [sym__strikeout_open] = ACTIONS(5007), - [sym__latex_span_start] = ACTIONS(5007), - [sym__single_quote_open] = ACTIONS(5007), - [sym__double_quote_open] = ACTIONS(5007), - [sym__superscript_open] = ACTIONS(5007), - [sym__subscript_open] = ACTIONS(5007), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5007), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5007), - [sym__cite_author_in_text] = ACTIONS(5007), - [sym__cite_suppress_author] = ACTIONS(5007), - [sym__shortcode_open_escaped] = ACTIONS(5007), - [sym__shortcode_open] = ACTIONS(5007), - [sym__unclosed_span] = ACTIONS(5007), - [sym__strong_emphasis_open_star] = ACTIONS(5007), - [sym__strong_emphasis_open_underscore] = ACTIONS(5007), + [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__strikeout_close] = 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(1462)] = { - [sym__backslash_escape] = ACTIONS(5011), - [sym_entity_reference] = ACTIONS(5011), - [sym_numeric_character_reference] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_AMP] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym_BQUOTE] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym__newline_token] = ACTIONS(5011), - [aux_sym_insert_token1] = ACTIONS(5011), - [aux_sym_delete_token1] = ACTIONS(5011), - [aux_sym_highlight_token1] = ACTIONS(5011), - [aux_sym_edit_comment_token1] = ACTIONS(5011), - [anon_sym_CARET_LBRACK] = ACTIONS(5011), - [anon_sym_LBRACK_CARET] = ACTIONS(5011), - [sym_uri_autolink] = ACTIONS(5011), - [sym_email_autolink] = ACTIONS(5011), - [sym__whitespace_ge_2] = ACTIONS(5011), - [aux_sym__whitespace_token1] = ACTIONS(5013), - [sym__word_no_digit] = ACTIONS(5011), - [sym__digits] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5011), - [sym__code_span_start] = ACTIONS(5011), - [sym__emphasis_open_star] = ACTIONS(5011), - [sym__emphasis_open_underscore] = ACTIONS(5011), - [sym__emphasis_close_underscore] = ACTIONS(5011), - [sym__strikeout_open] = ACTIONS(5011), - [sym__latex_span_start] = ACTIONS(5011), - [sym__single_quote_open] = ACTIONS(5011), - [sym__double_quote_open] = ACTIONS(5011), - [sym__superscript_open] = ACTIONS(5011), - [sym__subscript_open] = ACTIONS(5011), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5011), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5011), - [sym__cite_author_in_text] = ACTIONS(5011), - [sym__cite_suppress_author] = ACTIONS(5011), - [sym__shortcode_open_escaped] = ACTIONS(5011), - [sym__shortcode_open] = ACTIONS(5011), - [sym__unclosed_span] = ACTIONS(5011), - [sym__strong_emphasis_open_star] = ACTIONS(5011), - [sym__strong_emphasis_open_underscore] = ACTIONS(5011), + [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__strikeout_close] = 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(1463)] = { - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__emphasis_close_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [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__strikeout_close] = 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(1464)] = { - [ts_builtin_sym_end] = ACTIONS(5043), - [sym__backslash_escape] = ACTIONS(5043), - [sym_entity_reference] = ACTIONS(5043), - [sym_numeric_character_reference] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_DQUOTE] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_QMARK] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_BSLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [sym__newline_token] = ACTIONS(5043), - [aux_sym_insert_token1] = ACTIONS(5043), - [aux_sym_delete_token1] = ACTIONS(5043), - [aux_sym_highlight_token1] = ACTIONS(5043), - [aux_sym_edit_comment_token1] = ACTIONS(5043), - [anon_sym_CARET_LBRACK] = ACTIONS(5043), - [anon_sym_LBRACK_CARET] = ACTIONS(5043), - [sym_uri_autolink] = ACTIONS(5043), - [sym_email_autolink] = ACTIONS(5043), - [sym__whitespace_ge_2] = ACTIONS(5043), - [aux_sym__whitespace_token1] = ACTIONS(5045), - [sym__word_no_digit] = ACTIONS(5043), - [sym__digits] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), - [sym__code_span_start] = ACTIONS(5043), - [sym__emphasis_open_star] = ACTIONS(5043), - [sym__emphasis_open_underscore] = ACTIONS(5043), - [sym__strikeout_open] = ACTIONS(5043), - [sym__latex_span_start] = ACTIONS(5043), - [sym__single_quote_open] = ACTIONS(5043), - [sym__double_quote_open] = ACTIONS(5043), - [sym__superscript_open] = ACTIONS(5043), - [sym__subscript_open] = ACTIONS(5043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5043), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5043), - [sym__cite_author_in_text] = ACTIONS(5043), - [sym__cite_suppress_author] = ACTIONS(5043), - [sym__shortcode_open_escaped] = ACTIONS(5043), - [sym__shortcode_open] = ACTIONS(5043), - [sym__unclosed_span] = ACTIONS(5043), - [sym__strong_emphasis_open_star] = ACTIONS(5043), - [sym__strong_emphasis_open_underscore] = ACTIONS(5043), + [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__strikeout_close] = 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(1465)] = { - [sym__backslash_escape] = ACTIONS(5015), - [sym_entity_reference] = ACTIONS(5015), - [sym_numeric_character_reference] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym_BQUOTE] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__newline_token] = ACTIONS(5015), - [aux_sym_insert_token1] = ACTIONS(5015), - [aux_sym_delete_token1] = ACTIONS(5015), - [aux_sym_highlight_token1] = ACTIONS(5015), - [aux_sym_edit_comment_token1] = ACTIONS(5015), - [anon_sym_CARET_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_CARET] = ACTIONS(5015), - [sym_uri_autolink] = ACTIONS(5015), - [sym_email_autolink] = ACTIONS(5015), - [sym__whitespace_ge_2] = ACTIONS(5015), - [aux_sym__whitespace_token1] = ACTIONS(5017), - [sym__word_no_digit] = ACTIONS(5015), - [sym__digits] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5015), - [sym__code_span_start] = ACTIONS(5015), - [sym__emphasis_open_star] = ACTIONS(5015), - [sym__emphasis_open_underscore] = ACTIONS(5015), - [sym__emphasis_close_underscore] = ACTIONS(5015), - [sym__strikeout_open] = ACTIONS(5015), - [sym__latex_span_start] = ACTIONS(5015), - [sym__single_quote_open] = ACTIONS(5015), - [sym__double_quote_open] = ACTIONS(5015), - [sym__superscript_open] = ACTIONS(5015), - [sym__subscript_open] = ACTIONS(5015), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5015), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5015), - [sym__cite_author_in_text] = ACTIONS(5015), - [sym__cite_suppress_author] = ACTIONS(5015), - [sym__shortcode_open_escaped] = ACTIONS(5015), - [sym__shortcode_open] = ACTIONS(5015), - [sym__unclosed_span] = ACTIONS(5015), - [sym__strong_emphasis_open_star] = ACTIONS(5015), - [sym__strong_emphasis_open_underscore] = ACTIONS(5015), + [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__strikeout_close] = 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(1466)] = { - [ts_builtin_sym_end] = ACTIONS(5047), - [sym__backslash_escape] = ACTIONS(5047), - [sym_entity_reference] = ACTIONS(5047), - [sym_numeric_character_reference] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(5047), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [sym__newline_token] = ACTIONS(5047), - [aux_sym_insert_token1] = ACTIONS(5047), - [aux_sym_delete_token1] = ACTIONS(5047), - [aux_sym_highlight_token1] = ACTIONS(5047), - [aux_sym_edit_comment_token1] = ACTIONS(5047), - [anon_sym_CARET_LBRACK] = ACTIONS(5047), - [anon_sym_LBRACK_CARET] = ACTIONS(5047), - [sym_uri_autolink] = ACTIONS(5047), - [sym_email_autolink] = ACTIONS(5047), - [sym__whitespace_ge_2] = ACTIONS(5047), - [aux_sym__whitespace_token1] = ACTIONS(5049), - [sym__word_no_digit] = ACTIONS(5047), - [sym__digits] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5047), - [sym__code_span_start] = ACTIONS(5047), - [sym__emphasis_open_star] = ACTIONS(5047), - [sym__emphasis_open_underscore] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5047), - [sym__latex_span_start] = ACTIONS(5047), - [sym__single_quote_open] = ACTIONS(5047), - [sym__double_quote_open] = ACTIONS(5047), - [sym__superscript_open] = ACTIONS(5047), - [sym__subscript_open] = ACTIONS(5047), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5047), - [sym__cite_author_in_text] = ACTIONS(5047), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__shortcode_open_escaped] = ACTIONS(5047), - [sym__shortcode_open] = ACTIONS(5047), - [sym__unclosed_span] = ACTIONS(5047), - [sym__strong_emphasis_open_star] = ACTIONS(5047), - [sym__strong_emphasis_open_underscore] = ACTIONS(5047), + [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(1467)] = { - [sym__backslash_escape] = ACTIONS(5019), - [sym_entity_reference] = ACTIONS(5019), - [sym_numeric_character_reference] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_DQUOTE] = ACTIONS(5019), - [anon_sym_POUND] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym__newline_token] = ACTIONS(5019), - [aux_sym_insert_token1] = ACTIONS(5019), - [aux_sym_delete_token1] = ACTIONS(5019), - [aux_sym_highlight_token1] = ACTIONS(5019), - [aux_sym_edit_comment_token1] = ACTIONS(5019), - [anon_sym_CARET_LBRACK] = ACTIONS(5019), - [anon_sym_LBRACK_CARET] = ACTIONS(5019), - [sym_uri_autolink] = ACTIONS(5019), - [sym_email_autolink] = ACTIONS(5019), - [sym__whitespace_ge_2] = ACTIONS(5019), - [aux_sym__whitespace_token1] = ACTIONS(5021), - [sym__word_no_digit] = ACTIONS(5019), - [sym__digits] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [sym__code_span_start] = ACTIONS(5019), - [sym__emphasis_open_star] = ACTIONS(5019), - [sym__emphasis_open_underscore] = ACTIONS(5019), - [sym__emphasis_close_underscore] = ACTIONS(5019), - [sym__strikeout_open] = ACTIONS(5019), - [sym__latex_span_start] = ACTIONS(5019), - [sym__single_quote_open] = ACTIONS(5019), - [sym__double_quote_open] = ACTIONS(5019), - [sym__superscript_open] = ACTIONS(5019), - [sym__subscript_open] = ACTIONS(5019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5019), - [sym__cite_author_in_text] = ACTIONS(5019), - [sym__cite_suppress_author] = ACTIONS(5019), - [sym__shortcode_open_escaped] = ACTIONS(5019), - [sym__shortcode_open] = ACTIONS(5019), - [sym__unclosed_span] = ACTIONS(5019), - [sym__strong_emphasis_open_star] = ACTIONS(5019), - [sym__strong_emphasis_open_underscore] = ACTIONS(5019), + [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__strikeout_close] = 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(1468)] = { - [sym__backslash_escape] = ACTIONS(5023), - [sym_entity_reference] = ACTIONS(5023), - [sym_numeric_character_reference] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [sym__newline_token] = ACTIONS(5023), - [aux_sym_insert_token1] = ACTIONS(5023), - [aux_sym_delete_token1] = ACTIONS(5023), - [aux_sym_highlight_token1] = ACTIONS(5023), - [aux_sym_edit_comment_token1] = ACTIONS(5023), - [anon_sym_CARET_LBRACK] = ACTIONS(5023), - [anon_sym_LBRACK_CARET] = ACTIONS(5023), - [sym_uri_autolink] = ACTIONS(5023), - [sym_email_autolink] = ACTIONS(5023), - [sym__whitespace_ge_2] = ACTIONS(5023), - [aux_sym__whitespace_token1] = ACTIONS(5025), - [sym__word_no_digit] = ACTIONS(5023), - [sym__digits] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5023), - [sym__code_span_start] = ACTIONS(5023), - [sym__emphasis_open_star] = ACTIONS(5023), - [sym__emphasis_open_underscore] = ACTIONS(5023), - [sym__emphasis_close_underscore] = ACTIONS(5023), - [sym__strikeout_open] = ACTIONS(5023), - [sym__latex_span_start] = ACTIONS(5023), - [sym__single_quote_open] = ACTIONS(5023), - [sym__double_quote_open] = ACTIONS(5023), - [sym__superscript_open] = ACTIONS(5023), - [sym__subscript_open] = ACTIONS(5023), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5023), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5023), - [sym__cite_author_in_text] = ACTIONS(5023), - [sym__cite_suppress_author] = ACTIONS(5023), - [sym__shortcode_open_escaped] = ACTIONS(5023), - [sym__shortcode_open] = ACTIONS(5023), - [sym__unclosed_span] = ACTIONS(5023), - [sym__strong_emphasis_open_star] = ACTIONS(5023), - [sym__strong_emphasis_open_underscore] = ACTIONS(5023), + [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__strikeout_close] = 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(1469)] = { - [sym__backslash_escape] = ACTIONS(5027), - [sym_entity_reference] = ACTIONS(5027), - [sym_numeric_character_reference] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [sym__newline_token] = ACTIONS(5027), - [aux_sym_insert_token1] = ACTIONS(5027), - [aux_sym_delete_token1] = ACTIONS(5027), - [aux_sym_highlight_token1] = ACTIONS(5027), - [aux_sym_edit_comment_token1] = ACTIONS(5027), - [anon_sym_CARET_LBRACK] = ACTIONS(5027), - [anon_sym_LBRACK_CARET] = ACTIONS(5027), - [sym_uri_autolink] = ACTIONS(5027), - [sym_email_autolink] = ACTIONS(5027), - [sym__whitespace_ge_2] = ACTIONS(5027), - [aux_sym__whitespace_token1] = ACTIONS(5029), - [sym__word_no_digit] = ACTIONS(5027), - [sym__digits] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5027), - [sym__code_span_start] = ACTIONS(5027), - [sym__emphasis_open_star] = ACTIONS(5027), - [sym__emphasis_open_underscore] = ACTIONS(5027), - [sym__emphasis_close_underscore] = ACTIONS(5027), - [sym__strikeout_open] = ACTIONS(5027), - [sym__latex_span_start] = ACTIONS(5027), - [sym__single_quote_open] = ACTIONS(5027), - [sym__double_quote_open] = ACTIONS(5027), - [sym__superscript_open] = ACTIONS(5027), - [sym__subscript_open] = ACTIONS(5027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5027), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5027), - [sym__cite_author_in_text] = ACTIONS(5027), - [sym__cite_suppress_author] = ACTIONS(5027), - [sym__shortcode_open_escaped] = ACTIONS(5027), - [sym__shortcode_open] = ACTIONS(5027), - [sym__unclosed_span] = ACTIONS(5027), - [sym__strong_emphasis_open_star] = ACTIONS(5027), - [sym__strong_emphasis_open_underscore] = ACTIONS(5027), + [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(1470)] = { - [ts_builtin_sym_end] = ACTIONS(5051), - [sym__backslash_escape] = ACTIONS(5051), - [sym_entity_reference] = ACTIONS(5051), - [sym_numeric_character_reference] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_BSLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [sym__newline_token] = ACTIONS(5051), - [aux_sym_insert_token1] = ACTIONS(5051), - [aux_sym_delete_token1] = ACTIONS(5051), - [aux_sym_highlight_token1] = ACTIONS(5051), - [aux_sym_edit_comment_token1] = ACTIONS(5051), - [anon_sym_CARET_LBRACK] = ACTIONS(5051), - [anon_sym_LBRACK_CARET] = ACTIONS(5051), - [sym_uri_autolink] = ACTIONS(5051), - [sym_email_autolink] = ACTIONS(5051), - [sym__whitespace_ge_2] = ACTIONS(5051), - [aux_sym__whitespace_token1] = ACTIONS(5053), - [sym__word_no_digit] = ACTIONS(5051), - [sym__digits] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5051), - [sym__code_span_start] = ACTIONS(5051), - [sym__emphasis_open_star] = ACTIONS(5051), - [sym__emphasis_open_underscore] = ACTIONS(5051), - [sym__strikeout_open] = ACTIONS(5051), - [sym__latex_span_start] = ACTIONS(5051), - [sym__single_quote_open] = ACTIONS(5051), - [sym__double_quote_open] = ACTIONS(5051), - [sym__superscript_open] = ACTIONS(5051), - [sym__subscript_open] = ACTIONS(5051), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5051), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5051), - [sym__cite_author_in_text] = ACTIONS(5051), - [sym__cite_suppress_author] = ACTIONS(5051), - [sym__shortcode_open_escaped] = ACTIONS(5051), - [sym__shortcode_open] = ACTIONS(5051), - [sym__unclosed_span] = ACTIONS(5051), - [sym__strong_emphasis_open_star] = ACTIONS(5051), - [sym__strong_emphasis_open_underscore] = ACTIONS(5051), + [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__strikeout_close] = 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(1471)] = { - [sym__backslash_escape] = ACTIONS(5031), - [sym_entity_reference] = ACTIONS(5031), - [sym_numeric_character_reference] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_BSLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_BQUOTE] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [sym__newline_token] = ACTIONS(5031), - [aux_sym_insert_token1] = ACTIONS(5031), - [aux_sym_delete_token1] = ACTIONS(5031), - [aux_sym_highlight_token1] = ACTIONS(5031), - [aux_sym_edit_comment_token1] = ACTIONS(5031), - [anon_sym_CARET_LBRACK] = ACTIONS(5031), - [anon_sym_LBRACK_CARET] = ACTIONS(5031), - [sym_uri_autolink] = ACTIONS(5031), - [sym_email_autolink] = ACTIONS(5031), - [sym__whitespace_ge_2] = ACTIONS(5031), - [aux_sym__whitespace_token1] = ACTIONS(5033), - [sym__word_no_digit] = ACTIONS(5031), - [sym__digits] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [sym__code_span_start] = ACTIONS(5031), - [sym__emphasis_open_star] = ACTIONS(5031), - [sym__emphasis_open_underscore] = ACTIONS(5031), - [sym__emphasis_close_underscore] = ACTIONS(5031), - [sym__strikeout_open] = ACTIONS(5031), - [sym__latex_span_start] = ACTIONS(5031), - [sym__single_quote_open] = ACTIONS(5031), - [sym__double_quote_open] = ACTIONS(5031), - [sym__superscript_open] = ACTIONS(5031), - [sym__subscript_open] = ACTIONS(5031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5031), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5031), - [sym__cite_author_in_text] = ACTIONS(5031), - [sym__cite_suppress_author] = ACTIONS(5031), - [sym__shortcode_open_escaped] = ACTIONS(5031), - [sym__shortcode_open] = ACTIONS(5031), - [sym__unclosed_span] = ACTIONS(5031), - [sym__strong_emphasis_open_star] = ACTIONS(5031), - [sym__strong_emphasis_open_underscore] = ACTIONS(5031), + [sym__backslash_escape] = ACTIONS(4495), + [sym_entity_reference] = ACTIONS(4495), + [sym_numeric_character_reference] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_QMARK] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_BSLASH] = ACTIONS(4497), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_BQUOTE] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [sym__newline_token] = ACTIONS(4495), + [aux_sym_insert_token1] = ACTIONS(4495), + [aux_sym_delete_token1] = ACTIONS(4495), + [aux_sym_highlight_token1] = ACTIONS(4495), + [aux_sym_edit_comment_token1] = ACTIONS(4495), + [anon_sym_CARET_LBRACK] = ACTIONS(4495), + [anon_sym_LBRACK_CARET] = ACTIONS(4495), + [sym_uri_autolink] = ACTIONS(4495), + [sym_email_autolink] = ACTIONS(4495), + [sym__whitespace_ge_2] = ACTIONS(4495), + [aux_sym__whitespace_token1] = ACTIONS(4497), + [sym__word_no_digit] = ACTIONS(4495), + [sym__digits] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4495), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(4495), + [sym__emphasis_open_underscore] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4495), + [sym__strikeout_close] = ACTIONS(4495), + [sym__latex_span_start] = ACTIONS(4495), + [sym__single_quote_open] = ACTIONS(4495), + [sym__double_quote_open] = ACTIONS(4495), + [sym__superscript_open] = ACTIONS(4495), + [sym__subscript_open] = ACTIONS(4495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4495), + [sym__cite_author_in_text] = ACTIONS(4495), + [sym__cite_suppress_author] = ACTIONS(4495), + [sym__shortcode_open_escaped] = ACTIONS(4495), + [sym__shortcode_open] = ACTIONS(4495), + [sym__unclosed_span] = ACTIONS(4495), + [sym__strong_emphasis_open_star] = ACTIONS(4495), + [sym__strong_emphasis_open_underscore] = ACTIONS(4495), }, [STATE(1472)] = { - [sym__backslash_escape] = ACTIONS(5035), - [sym_entity_reference] = ACTIONS(5035), - [sym_numeric_character_reference] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_DQUOTE] = ACTIONS(5035), - [anon_sym_POUND] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_BSLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [sym__newline_token] = ACTIONS(5035), - [aux_sym_insert_token1] = ACTIONS(5035), - [aux_sym_delete_token1] = ACTIONS(5035), - [aux_sym_highlight_token1] = ACTIONS(5035), - [aux_sym_edit_comment_token1] = ACTIONS(5035), - [anon_sym_CARET_LBRACK] = ACTIONS(5035), - [anon_sym_LBRACK_CARET] = ACTIONS(5035), - [sym_uri_autolink] = ACTIONS(5035), - [sym_email_autolink] = ACTIONS(5035), - [sym__whitespace_ge_2] = ACTIONS(5035), - [aux_sym__whitespace_token1] = ACTIONS(5037), - [sym__word_no_digit] = ACTIONS(5035), - [sym__digits] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5035), - [sym__code_span_start] = ACTIONS(5035), - [sym__emphasis_open_star] = ACTIONS(5035), - [sym__emphasis_open_underscore] = ACTIONS(5035), - [sym__emphasis_close_underscore] = ACTIONS(5035), - [sym__strikeout_open] = ACTIONS(5035), - [sym__latex_span_start] = ACTIONS(5035), - [sym__single_quote_open] = ACTIONS(5035), - [sym__double_quote_open] = ACTIONS(5035), - [sym__superscript_open] = ACTIONS(5035), - [sym__subscript_open] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5035), - [sym__cite_author_in_text] = ACTIONS(5035), - [sym__cite_suppress_author] = ACTIONS(5035), - [sym__shortcode_open_escaped] = ACTIONS(5035), - [sym__shortcode_open] = ACTIONS(5035), - [sym__unclosed_span] = ACTIONS(5035), - [sym__strong_emphasis_open_star] = ACTIONS(5035), - [sym__strong_emphasis_open_underscore] = ACTIONS(5035), + [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(1473)] = { - [sym__backslash_escape] = ACTIONS(5039), - [sym_entity_reference] = ACTIONS(5039), - [sym_numeric_character_reference] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(5039), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_BSLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [sym__newline_token] = ACTIONS(5039), - [aux_sym_insert_token1] = ACTIONS(5039), - [aux_sym_delete_token1] = ACTIONS(5039), - [aux_sym_highlight_token1] = ACTIONS(5039), - [aux_sym_edit_comment_token1] = ACTIONS(5039), - [anon_sym_CARET_LBRACK] = ACTIONS(5039), - [anon_sym_LBRACK_CARET] = ACTIONS(5039), - [sym_uri_autolink] = ACTIONS(5039), - [sym_email_autolink] = ACTIONS(5039), - [sym__whitespace_ge_2] = ACTIONS(5039), - [aux_sym__whitespace_token1] = ACTIONS(5041), - [sym__word_no_digit] = ACTIONS(5039), - [sym__digits] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5039), - [sym__code_span_start] = ACTIONS(5039), - [sym__emphasis_open_star] = ACTIONS(5039), - [sym__emphasis_open_underscore] = ACTIONS(5039), - [sym__emphasis_close_underscore] = ACTIONS(5039), - [sym__strikeout_open] = ACTIONS(5039), - [sym__latex_span_start] = ACTIONS(5039), - [sym__single_quote_open] = ACTIONS(5039), - [sym__double_quote_open] = ACTIONS(5039), - [sym__superscript_open] = ACTIONS(5039), - [sym__subscript_open] = ACTIONS(5039), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5039), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5039), - [sym__cite_author_in_text] = ACTIONS(5039), - [sym__cite_suppress_author] = ACTIONS(5039), - [sym__shortcode_open_escaped] = ACTIONS(5039), - [sym__shortcode_open] = ACTIONS(5039), - [sym__unclosed_span] = ACTIONS(5039), - [sym__strong_emphasis_open_star] = ACTIONS(5039), - [sym__strong_emphasis_open_underscore] = ACTIONS(5039), + [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(1474)] = { - [sym__backslash_escape] = ACTIONS(5043), - [sym_entity_reference] = ACTIONS(5043), - [sym_numeric_character_reference] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_DQUOTE] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_QMARK] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_BSLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [sym__newline_token] = ACTIONS(5043), - [aux_sym_insert_token1] = ACTIONS(5043), - [aux_sym_delete_token1] = ACTIONS(5043), - [aux_sym_highlight_token1] = ACTIONS(5043), - [aux_sym_edit_comment_token1] = ACTIONS(5043), - [anon_sym_CARET_LBRACK] = ACTIONS(5043), - [anon_sym_LBRACK_CARET] = ACTIONS(5043), - [sym_uri_autolink] = ACTIONS(5043), - [sym_email_autolink] = ACTIONS(5043), - [sym__whitespace_ge_2] = ACTIONS(5043), - [aux_sym__whitespace_token1] = ACTIONS(5045), - [sym__word_no_digit] = ACTIONS(5043), - [sym__digits] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), - [sym__code_span_start] = ACTIONS(5043), - [sym__emphasis_open_star] = ACTIONS(5043), - [sym__emphasis_open_underscore] = ACTIONS(5043), - [sym__emphasis_close_underscore] = ACTIONS(5043), - [sym__strikeout_open] = ACTIONS(5043), - [sym__latex_span_start] = ACTIONS(5043), - [sym__single_quote_open] = ACTIONS(5043), - [sym__double_quote_open] = ACTIONS(5043), - [sym__superscript_open] = ACTIONS(5043), - [sym__subscript_open] = ACTIONS(5043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5043), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5043), - [sym__cite_author_in_text] = ACTIONS(5043), - [sym__cite_suppress_author] = ACTIONS(5043), - [sym__shortcode_open_escaped] = ACTIONS(5043), - [sym__shortcode_open] = ACTIONS(5043), - [sym__unclosed_span] = ACTIONS(5043), - [sym__strong_emphasis_open_star] = ACTIONS(5043), - [sym__strong_emphasis_open_underscore] = ACTIONS(5043), + [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__superscript_close] = 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(1475)] = { - [sym__backslash_escape] = ACTIONS(5047), - [sym_entity_reference] = ACTIONS(5047), - [sym_numeric_character_reference] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(5047), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [sym__newline_token] = ACTIONS(5047), - [aux_sym_insert_token1] = ACTIONS(5047), - [aux_sym_delete_token1] = ACTIONS(5047), - [aux_sym_highlight_token1] = ACTIONS(5047), - [aux_sym_edit_comment_token1] = ACTIONS(5047), - [anon_sym_CARET_LBRACK] = ACTIONS(5047), - [anon_sym_LBRACK_CARET] = ACTIONS(5047), - [sym_uri_autolink] = ACTIONS(5047), - [sym_email_autolink] = ACTIONS(5047), - [sym__whitespace_ge_2] = ACTIONS(5047), - [aux_sym__whitespace_token1] = ACTIONS(5049), - [sym__word_no_digit] = ACTIONS(5047), - [sym__digits] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5047), - [sym__code_span_start] = ACTIONS(5047), - [sym__emphasis_open_star] = ACTIONS(5047), - [sym__emphasis_open_underscore] = ACTIONS(5047), - [sym__emphasis_close_underscore] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5047), - [sym__latex_span_start] = ACTIONS(5047), - [sym__single_quote_open] = ACTIONS(5047), - [sym__double_quote_open] = ACTIONS(5047), - [sym__superscript_open] = ACTIONS(5047), - [sym__subscript_open] = ACTIONS(5047), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5047), - [sym__cite_author_in_text] = ACTIONS(5047), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__shortcode_open_escaped] = ACTIONS(5047), - [sym__shortcode_open] = ACTIONS(5047), - [sym__unclosed_span] = ACTIONS(5047), - [sym__strong_emphasis_open_star] = ACTIONS(5047), - [sym__strong_emphasis_open_underscore] = ACTIONS(5047), + [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(1476)] = { - [sym__backslash_escape] = ACTIONS(5051), - [sym_entity_reference] = ACTIONS(5051), - [sym_numeric_character_reference] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_BSLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [sym__newline_token] = ACTIONS(5051), - [aux_sym_insert_token1] = ACTIONS(5051), - [aux_sym_delete_token1] = ACTIONS(5051), - [aux_sym_highlight_token1] = ACTIONS(5051), - [aux_sym_edit_comment_token1] = ACTIONS(5051), - [anon_sym_CARET_LBRACK] = ACTIONS(5051), - [anon_sym_LBRACK_CARET] = ACTIONS(5051), - [sym_uri_autolink] = ACTIONS(5051), - [sym_email_autolink] = ACTIONS(5051), - [sym__whitespace_ge_2] = ACTIONS(5051), - [aux_sym__whitespace_token1] = ACTIONS(5053), - [sym__word_no_digit] = ACTIONS(5051), - [sym__digits] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5051), - [sym__code_span_start] = ACTIONS(5051), - [sym__emphasis_open_star] = ACTIONS(5051), - [sym__emphasis_open_underscore] = ACTIONS(5051), - [sym__emphasis_close_underscore] = ACTIONS(5051), - [sym__strikeout_open] = ACTIONS(5051), - [sym__latex_span_start] = ACTIONS(5051), - [sym__single_quote_open] = ACTIONS(5051), - [sym__double_quote_open] = ACTIONS(5051), - [sym__superscript_open] = ACTIONS(5051), - [sym__subscript_open] = ACTIONS(5051), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5051), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5051), - [sym__cite_author_in_text] = ACTIONS(5051), - [sym__cite_suppress_author] = ACTIONS(5051), - [sym__shortcode_open_escaped] = ACTIONS(5051), - [sym__shortcode_open] = ACTIONS(5051), - [sym__unclosed_span] = ACTIONS(5051), - [sym__strong_emphasis_open_star] = ACTIONS(5051), - [sym__strong_emphasis_open_underscore] = ACTIONS(5051), - }, - [STATE(1477)] = { - [sym__backslash_escape] = ACTIONS(5055), - [sym_entity_reference] = ACTIONS(5055), - [sym_numeric_character_reference] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(5055), - [anon_sym_POUND] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_BSLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_BQUOTE] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [sym__newline_token] = ACTIONS(5055), - [aux_sym_insert_token1] = ACTIONS(5055), - [aux_sym_delete_token1] = ACTIONS(5055), - [aux_sym_highlight_token1] = ACTIONS(5055), - [aux_sym_edit_comment_token1] = ACTIONS(5055), - [anon_sym_CARET_LBRACK] = ACTIONS(5055), - [anon_sym_LBRACK_CARET] = ACTIONS(5055), - [sym_uri_autolink] = ACTIONS(5055), - [sym_email_autolink] = ACTIONS(5055), - [sym__whitespace_ge_2] = ACTIONS(5055), - [aux_sym__whitespace_token1] = ACTIONS(5057), - [sym__word_no_digit] = ACTIONS(5055), - [sym__digits] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5055), - [sym__code_span_start] = ACTIONS(5055), - [sym__emphasis_open_star] = ACTIONS(5055), - [sym__emphasis_open_underscore] = ACTIONS(5055), - [sym__emphasis_close_underscore] = ACTIONS(5055), - [sym__strikeout_open] = ACTIONS(5055), - [sym__latex_span_start] = ACTIONS(5055), - [sym__single_quote_open] = ACTIONS(5055), - [sym__double_quote_open] = ACTIONS(5055), - [sym__superscript_open] = ACTIONS(5055), - [sym__subscript_open] = ACTIONS(5055), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5055), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5055), - [sym__cite_author_in_text] = ACTIONS(5055), - [sym__cite_suppress_author] = ACTIONS(5055), - [sym__shortcode_open_escaped] = ACTIONS(5055), - [sym__shortcode_open] = ACTIONS(5055), - [sym__unclosed_span] = ACTIONS(5055), - [sym__strong_emphasis_open_star] = ACTIONS(5055), - [sym__strong_emphasis_open_underscore] = ACTIONS(5055), - }, - [STATE(1478)] = { - [sym__backslash_escape] = ACTIONS(5059), - [sym_entity_reference] = ACTIONS(5059), - [sym_numeric_character_reference] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_DQUOTE] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_BSLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [sym__newline_token] = ACTIONS(5059), - [aux_sym_insert_token1] = ACTIONS(5059), - [aux_sym_delete_token1] = ACTIONS(5059), - [aux_sym_highlight_token1] = ACTIONS(5059), - [aux_sym_edit_comment_token1] = ACTIONS(5059), - [anon_sym_CARET_LBRACK] = ACTIONS(5059), - [anon_sym_LBRACK_CARET] = ACTIONS(5059), - [sym_uri_autolink] = ACTIONS(5059), - [sym_email_autolink] = ACTIONS(5059), - [sym__whitespace_ge_2] = ACTIONS(5059), - [aux_sym__whitespace_token1] = ACTIONS(5061), - [sym__word_no_digit] = ACTIONS(5059), - [sym__digits] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5059), - [sym__code_span_start] = ACTIONS(5059), - [sym__emphasis_open_star] = ACTIONS(5059), - [sym__emphasis_open_underscore] = ACTIONS(5059), - [sym__emphasis_close_underscore] = ACTIONS(5059), - [sym__strikeout_open] = ACTIONS(5059), - [sym__latex_span_start] = ACTIONS(5059), - [sym__single_quote_open] = ACTIONS(5059), - [sym__double_quote_open] = ACTIONS(5059), - [sym__superscript_open] = ACTIONS(5059), - [sym__subscript_open] = ACTIONS(5059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5059), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5059), - [sym__cite_author_in_text] = ACTIONS(5059), - [sym__cite_suppress_author] = ACTIONS(5059), - [sym__shortcode_open_escaped] = ACTIONS(5059), - [sym__shortcode_open] = ACTIONS(5059), - [sym__unclosed_span] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5059), - [sym__strong_emphasis_open_underscore] = ACTIONS(5059), - }, - [STATE(1479)] = { - [sym__backslash_escape] = ACTIONS(5063), - [sym_entity_reference] = ACTIONS(5063), - [sym_numeric_character_reference] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_BSLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_BQUOTE] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [sym__newline_token] = ACTIONS(5063), - [aux_sym_insert_token1] = ACTIONS(5063), - [aux_sym_delete_token1] = ACTIONS(5063), - [aux_sym_highlight_token1] = ACTIONS(5063), - [aux_sym_edit_comment_token1] = ACTIONS(5063), - [anon_sym_CARET_LBRACK] = ACTIONS(5063), - [anon_sym_LBRACK_CARET] = ACTIONS(5063), - [sym_uri_autolink] = ACTIONS(5063), - [sym_email_autolink] = ACTIONS(5063), - [sym__whitespace_ge_2] = ACTIONS(5063), - [aux_sym__whitespace_token1] = ACTIONS(5065), - [sym__word_no_digit] = ACTIONS(5063), - [sym__digits] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5063), - [sym__code_span_start] = ACTIONS(5063), - [sym__emphasis_open_star] = ACTIONS(5063), - [sym__emphasis_open_underscore] = ACTIONS(5063), - [sym__emphasis_close_underscore] = ACTIONS(5063), - [sym__strikeout_open] = ACTIONS(5063), - [sym__latex_span_start] = ACTIONS(5063), - [sym__single_quote_open] = ACTIONS(5063), - [sym__double_quote_open] = ACTIONS(5063), - [sym__superscript_open] = ACTIONS(5063), - [sym__subscript_open] = ACTIONS(5063), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5063), - [sym__cite_author_in_text] = ACTIONS(5063), - [sym__cite_suppress_author] = ACTIONS(5063), - [sym__shortcode_open_escaped] = ACTIONS(5063), - [sym__shortcode_open] = ACTIONS(5063), - [sym__unclosed_span] = ACTIONS(5063), - [sym__strong_emphasis_open_star] = ACTIONS(5063), - [sym__strong_emphasis_open_underscore] = ACTIONS(5063), - }, - [STATE(1480)] = { - [sym__backslash_escape] = ACTIONS(5067), - [sym_entity_reference] = ACTIONS(5067), - [sym_numeric_character_reference] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DQUOTE] = ACTIONS(5067), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_COLON] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [sym__newline_token] = ACTIONS(5067), - [aux_sym_insert_token1] = ACTIONS(5067), - [aux_sym_delete_token1] = ACTIONS(5067), - [aux_sym_highlight_token1] = ACTIONS(5067), - [aux_sym_edit_comment_token1] = ACTIONS(5067), - [anon_sym_CARET_LBRACK] = ACTIONS(5067), - [anon_sym_LBRACK_CARET] = ACTIONS(5067), - [sym_uri_autolink] = ACTIONS(5067), - [sym_email_autolink] = ACTIONS(5067), - [sym__whitespace_ge_2] = ACTIONS(5067), - [aux_sym__whitespace_token1] = ACTIONS(5069), - [sym__word_no_digit] = ACTIONS(5067), - [sym__digits] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5067), - [sym__code_span_start] = ACTIONS(5067), - [sym__emphasis_open_star] = ACTIONS(5067), - [sym__emphasis_open_underscore] = ACTIONS(5067), - [sym__emphasis_close_underscore] = ACTIONS(5067), - [sym__strikeout_open] = ACTIONS(5067), - [sym__latex_span_start] = ACTIONS(5067), - [sym__single_quote_open] = ACTIONS(5067), - [sym__double_quote_open] = ACTIONS(5067), - [sym__superscript_open] = ACTIONS(5067), - [sym__subscript_open] = ACTIONS(5067), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5067), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5067), - [sym__cite_author_in_text] = ACTIONS(5067), - [sym__cite_suppress_author] = ACTIONS(5067), - [sym__shortcode_open_escaped] = ACTIONS(5067), - [sym__shortcode_open] = ACTIONS(5067), - [sym__unclosed_span] = ACTIONS(5067), - [sym__strong_emphasis_open_star] = ACTIONS(5067), - [sym__strong_emphasis_open_underscore] = ACTIONS(5067), - }, - [STATE(1481)] = { - [sym__backslash_escape] = ACTIONS(5071), - [sym_entity_reference] = ACTIONS(5071), - [sym_numeric_character_reference] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_POUND] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [sym__newline_token] = ACTIONS(5071), - [aux_sym_insert_token1] = ACTIONS(5071), - [aux_sym_delete_token1] = ACTIONS(5071), - [aux_sym_highlight_token1] = ACTIONS(5071), - [aux_sym_edit_comment_token1] = ACTIONS(5071), - [anon_sym_CARET_LBRACK] = ACTIONS(5071), - [anon_sym_LBRACK_CARET] = ACTIONS(5071), - [sym_uri_autolink] = ACTIONS(5071), - [sym_email_autolink] = ACTIONS(5071), - [sym__whitespace_ge_2] = ACTIONS(5071), - [aux_sym__whitespace_token1] = ACTIONS(5073), - [sym__word_no_digit] = ACTIONS(5071), - [sym__digits] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5071), - [sym__code_span_start] = ACTIONS(5071), - [sym__emphasis_open_star] = ACTIONS(5071), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym__emphasis_close_underscore] = ACTIONS(5071), - [sym__strikeout_open] = ACTIONS(5071), - [sym__latex_span_start] = ACTIONS(5071), - [sym__single_quote_open] = ACTIONS(5071), - [sym__double_quote_open] = ACTIONS(5071), - [sym__superscript_open] = ACTIONS(5071), - [sym__subscript_open] = ACTIONS(5071), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5071), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5071), - [sym__cite_author_in_text] = ACTIONS(5071), - [sym__cite_suppress_author] = ACTIONS(5071), - [sym__shortcode_open_escaped] = ACTIONS(5071), - [sym__shortcode_open] = ACTIONS(5071), - [sym__unclosed_span] = ACTIONS(5071), - [sym__strong_emphasis_open_star] = ACTIONS(5071), - [sym__strong_emphasis_open_underscore] = ACTIONS(5071), - }, - [STATE(1482)] = { - [sym__backslash_escape] = ACTIONS(5075), - [sym_entity_reference] = ACTIONS(5075), - [sym_numeric_character_reference] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_QMARK] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_BSLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [sym__newline_token] = ACTIONS(5075), - [aux_sym_insert_token1] = ACTIONS(5075), - [aux_sym_delete_token1] = ACTIONS(5075), - [aux_sym_highlight_token1] = ACTIONS(5075), - [aux_sym_edit_comment_token1] = ACTIONS(5075), - [anon_sym_CARET_LBRACK] = ACTIONS(5075), - [anon_sym_LBRACK_CARET] = ACTIONS(5075), - [sym_uri_autolink] = ACTIONS(5075), - [sym_email_autolink] = ACTIONS(5075), - [sym__whitespace_ge_2] = ACTIONS(5075), - [aux_sym__whitespace_token1] = ACTIONS(5077), - [sym__word_no_digit] = ACTIONS(5075), - [sym__digits] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5075), - [sym__code_span_start] = ACTIONS(5075), - [sym__emphasis_open_star] = ACTIONS(5075), - [sym__emphasis_open_underscore] = ACTIONS(5075), - [sym__emphasis_close_underscore] = ACTIONS(5075), - [sym__strikeout_open] = ACTIONS(5075), - [sym__latex_span_start] = ACTIONS(5075), - [sym__single_quote_open] = ACTIONS(5075), - [sym__double_quote_open] = ACTIONS(5075), - [sym__superscript_open] = ACTIONS(5075), - [sym__subscript_open] = ACTIONS(5075), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5075), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5075), - [sym__cite_author_in_text] = ACTIONS(5075), - [sym__cite_suppress_author] = ACTIONS(5075), - [sym__shortcode_open_escaped] = ACTIONS(5075), - [sym__shortcode_open] = ACTIONS(5075), - [sym__unclosed_span] = ACTIONS(5075), - [sym__strong_emphasis_open_star] = ACTIONS(5075), - [sym__strong_emphasis_open_underscore] = ACTIONS(5075), - }, - [STATE(1483)] = { - [sym__backslash_escape] = ACTIONS(5079), - [sym_entity_reference] = ACTIONS(5079), - [sym_numeric_character_reference] = ACTIONS(5079), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_DQUOTE] = ACTIONS(5079), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_QMARK] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BSLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5079), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [sym__newline_token] = ACTIONS(5079), - [aux_sym_insert_token1] = ACTIONS(5079), - [aux_sym_delete_token1] = ACTIONS(5079), - [aux_sym_highlight_token1] = ACTIONS(5079), - [aux_sym_edit_comment_token1] = ACTIONS(5079), - [anon_sym_CARET_LBRACK] = ACTIONS(5079), - [anon_sym_LBRACK_CARET] = ACTIONS(5079), - [sym_uri_autolink] = ACTIONS(5079), - [sym_email_autolink] = ACTIONS(5079), - [sym__whitespace_ge_2] = ACTIONS(5079), - [aux_sym__whitespace_token1] = ACTIONS(5081), - [sym__word_no_digit] = ACTIONS(5079), - [sym__digits] = ACTIONS(5079), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5079), - [sym__code_span_start] = ACTIONS(5079), - [sym__emphasis_open_star] = ACTIONS(5079), - [sym__emphasis_open_underscore] = ACTIONS(5079), - [sym__emphasis_close_underscore] = ACTIONS(5079), - [sym__strikeout_open] = ACTIONS(5079), - [sym__latex_span_start] = ACTIONS(5079), - [sym__single_quote_open] = ACTIONS(5079), - [sym__double_quote_open] = ACTIONS(5079), - [sym__superscript_open] = ACTIONS(5079), - [sym__subscript_open] = ACTIONS(5079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5079), - [sym__cite_author_in_text] = ACTIONS(5079), - [sym__cite_suppress_author] = ACTIONS(5079), - [sym__shortcode_open_escaped] = ACTIONS(5079), - [sym__shortcode_open] = ACTIONS(5079), - [sym__unclosed_span] = ACTIONS(5079), - [sym__strong_emphasis_open_star] = ACTIONS(5079), - [sym__strong_emphasis_open_underscore] = ACTIONS(5079), - }, - [STATE(1484)] = { - [sym__backslash_escape] = ACTIONS(5083), - [sym_entity_reference] = ACTIONS(5083), - [sym_numeric_character_reference] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOT] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_QMARK] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_BSLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym_BQUOTE] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [sym__newline_token] = ACTIONS(5083), - [aux_sym_insert_token1] = ACTIONS(5083), - [aux_sym_delete_token1] = ACTIONS(5083), - [aux_sym_highlight_token1] = ACTIONS(5083), - [aux_sym_edit_comment_token1] = ACTIONS(5083), - [anon_sym_CARET_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_CARET] = ACTIONS(5083), - [sym_uri_autolink] = ACTIONS(5083), - [sym_email_autolink] = ACTIONS(5083), - [sym__whitespace_ge_2] = ACTIONS(5083), - [aux_sym__whitespace_token1] = ACTIONS(5085), - [sym__word_no_digit] = ACTIONS(5083), - [sym__digits] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5083), - [sym__code_span_start] = ACTIONS(5083), - [sym__emphasis_open_star] = ACTIONS(5083), - [sym__emphasis_open_underscore] = ACTIONS(5083), - [sym__emphasis_close_underscore] = ACTIONS(5083), - [sym__strikeout_open] = ACTIONS(5083), - [sym__latex_span_start] = ACTIONS(5083), - [sym__single_quote_open] = ACTIONS(5083), - [sym__double_quote_open] = ACTIONS(5083), - [sym__superscript_open] = ACTIONS(5083), - [sym__subscript_open] = ACTIONS(5083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5083), - [sym__cite_author_in_text] = ACTIONS(5083), - [sym__cite_suppress_author] = ACTIONS(5083), - [sym__shortcode_open_escaped] = ACTIONS(5083), - [sym__shortcode_open] = ACTIONS(5083), - [sym__unclosed_span] = ACTIONS(5083), - [sym__strong_emphasis_open_star] = ACTIONS(5083), - [sym__strong_emphasis_open_underscore] = ACTIONS(5083), - }, - [STATE(1485)] = { - [sym__backslash_escape] = ACTIONS(5087), - [sym_entity_reference] = ACTIONS(5087), - [sym_numeric_character_reference] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_DQUOTE] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_AMP] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_QMARK] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym_BQUOTE] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_PIPE] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [sym__newline_token] = ACTIONS(5087), - [aux_sym_insert_token1] = ACTIONS(5087), - [aux_sym_delete_token1] = ACTIONS(5087), - [aux_sym_highlight_token1] = ACTIONS(5087), - [aux_sym_edit_comment_token1] = ACTIONS(5087), - [anon_sym_CARET_LBRACK] = ACTIONS(5087), - [anon_sym_LBRACK_CARET] = ACTIONS(5087), - [sym_uri_autolink] = ACTIONS(5087), - [sym_email_autolink] = ACTIONS(5087), - [sym__whitespace_ge_2] = ACTIONS(5087), - [aux_sym__whitespace_token1] = ACTIONS(5089), - [sym__word_no_digit] = ACTIONS(5087), - [sym__digits] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5087), - [sym__code_span_start] = ACTIONS(5087), - [sym__emphasis_open_star] = ACTIONS(5087), - [sym__emphasis_open_underscore] = ACTIONS(5087), - [sym__emphasis_close_underscore] = ACTIONS(5087), - [sym__strikeout_open] = ACTIONS(5087), - [sym__latex_span_start] = ACTIONS(5087), - [sym__single_quote_open] = ACTIONS(5087), - [sym__double_quote_open] = ACTIONS(5087), - [sym__superscript_open] = ACTIONS(5087), - [sym__subscript_open] = ACTIONS(5087), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5087), - [sym__cite_author_in_text] = ACTIONS(5087), - [sym__cite_suppress_author] = ACTIONS(5087), - [sym__shortcode_open_escaped] = ACTIONS(5087), - [sym__shortcode_open] = ACTIONS(5087), - [sym__unclosed_span] = ACTIONS(5087), - [sym__strong_emphasis_open_star] = ACTIONS(5087), - [sym__strong_emphasis_open_underscore] = ACTIONS(5087), - }, - [STATE(1486)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__emphasis_close_underscore] = ACTIONS(4797), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), - }, - [STATE(1487)] = { - [sym__backslash_escape] = ACTIONS(5091), - [sym_entity_reference] = ACTIONS(5091), - [sym_numeric_character_reference] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(5091), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_BSLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym_BQUOTE] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [sym__newline_token] = ACTIONS(5091), - [aux_sym_insert_token1] = ACTIONS(5091), - [aux_sym_delete_token1] = ACTIONS(5091), - [aux_sym_highlight_token1] = ACTIONS(5091), - [aux_sym_edit_comment_token1] = ACTIONS(5091), - [anon_sym_CARET_LBRACK] = ACTIONS(5091), - [anon_sym_LBRACK_CARET] = ACTIONS(5091), - [sym_uri_autolink] = ACTIONS(5091), - [sym_email_autolink] = ACTIONS(5091), - [sym__whitespace_ge_2] = ACTIONS(5091), - [aux_sym__whitespace_token1] = ACTIONS(5093), - [sym__word_no_digit] = ACTIONS(5091), - [sym__digits] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), - [sym__code_span_start] = ACTIONS(5091), - [sym__emphasis_open_star] = ACTIONS(5091), - [sym__emphasis_open_underscore] = ACTIONS(5091), - [sym__emphasis_close_underscore] = ACTIONS(5091), - [sym__strikeout_open] = ACTIONS(5091), - [sym__latex_span_start] = ACTIONS(5091), - [sym__single_quote_open] = ACTIONS(5091), - [sym__double_quote_open] = ACTIONS(5091), - [sym__superscript_open] = ACTIONS(5091), - [sym__subscript_open] = ACTIONS(5091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5091), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5091), - [sym__cite_author_in_text] = ACTIONS(5091), - [sym__cite_suppress_author] = ACTIONS(5091), - [sym__shortcode_open_escaped] = ACTIONS(5091), - [sym__shortcode_open] = ACTIONS(5091), - [sym__unclosed_span] = ACTIONS(5091), - [sym__strong_emphasis_open_star] = ACTIONS(5091), - [sym__strong_emphasis_open_underscore] = ACTIONS(5091), - }, - [STATE(1488)] = { - [ts_builtin_sym_end] = ACTIONS(5055), - [sym__backslash_escape] = ACTIONS(5055), - [sym_entity_reference] = ACTIONS(5055), - [sym_numeric_character_reference] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(5055), - [anon_sym_POUND] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_BSLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_BQUOTE] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [sym__newline_token] = ACTIONS(5055), - [aux_sym_insert_token1] = ACTIONS(5055), - [aux_sym_delete_token1] = ACTIONS(5055), - [aux_sym_highlight_token1] = ACTIONS(5055), - [aux_sym_edit_comment_token1] = ACTIONS(5055), - [anon_sym_CARET_LBRACK] = ACTIONS(5055), - [anon_sym_LBRACK_CARET] = ACTIONS(5055), - [sym_uri_autolink] = ACTIONS(5055), - [sym_email_autolink] = ACTIONS(5055), - [sym__whitespace_ge_2] = ACTIONS(5055), - [aux_sym__whitespace_token1] = ACTIONS(5057), - [sym__word_no_digit] = ACTIONS(5055), - [sym__digits] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5055), - [sym__code_span_start] = ACTIONS(5055), - [sym__emphasis_open_star] = ACTIONS(5055), - [sym__emphasis_open_underscore] = ACTIONS(5055), - [sym__strikeout_open] = ACTIONS(5055), - [sym__latex_span_start] = ACTIONS(5055), - [sym__single_quote_open] = ACTIONS(5055), - [sym__double_quote_open] = ACTIONS(5055), - [sym__superscript_open] = ACTIONS(5055), - [sym__subscript_open] = ACTIONS(5055), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5055), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5055), - [sym__cite_author_in_text] = ACTIONS(5055), - [sym__cite_suppress_author] = ACTIONS(5055), - [sym__shortcode_open_escaped] = ACTIONS(5055), - [sym__shortcode_open] = ACTIONS(5055), - [sym__unclosed_span] = ACTIONS(5055), - [sym__strong_emphasis_open_star] = ACTIONS(5055), - [sym__strong_emphasis_open_underscore] = ACTIONS(5055), - }, - [STATE(1489)] = { - [ts_builtin_sym_end] = ACTIONS(5059), - [sym__backslash_escape] = ACTIONS(5059), - [sym_entity_reference] = ACTIONS(5059), - [sym_numeric_character_reference] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_DQUOTE] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_BSLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [sym__newline_token] = ACTIONS(5059), - [aux_sym_insert_token1] = ACTIONS(5059), - [aux_sym_delete_token1] = ACTIONS(5059), - [aux_sym_highlight_token1] = ACTIONS(5059), - [aux_sym_edit_comment_token1] = ACTIONS(5059), - [anon_sym_CARET_LBRACK] = ACTIONS(5059), - [anon_sym_LBRACK_CARET] = ACTIONS(5059), - [sym_uri_autolink] = ACTIONS(5059), - [sym_email_autolink] = ACTIONS(5059), - [sym__whitespace_ge_2] = ACTIONS(5059), - [aux_sym__whitespace_token1] = ACTIONS(5061), - [sym__word_no_digit] = ACTIONS(5059), - [sym__digits] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5059), - [sym__code_span_start] = ACTIONS(5059), - [sym__emphasis_open_star] = ACTIONS(5059), - [sym__emphasis_open_underscore] = ACTIONS(5059), - [sym__strikeout_open] = ACTIONS(5059), - [sym__latex_span_start] = ACTIONS(5059), - [sym__single_quote_open] = ACTIONS(5059), - [sym__double_quote_open] = ACTIONS(5059), - [sym__superscript_open] = ACTIONS(5059), - [sym__subscript_open] = ACTIONS(5059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5059), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5059), - [sym__cite_author_in_text] = ACTIONS(5059), - [sym__cite_suppress_author] = ACTIONS(5059), - [sym__shortcode_open_escaped] = ACTIONS(5059), - [sym__shortcode_open] = ACTIONS(5059), - [sym__unclosed_span] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5059), - [sym__strong_emphasis_open_underscore] = ACTIONS(5059), - }, - [STATE(1490)] = { - [sym__backslash_escape] = ACTIONS(5095), - [sym_entity_reference] = ACTIONS(5095), - [sym_numeric_character_reference] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_BSLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym_BQUOTE] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [sym__newline_token] = ACTIONS(5095), - [aux_sym_insert_token1] = ACTIONS(5095), - [aux_sym_delete_token1] = ACTIONS(5095), - [aux_sym_highlight_token1] = ACTIONS(5095), - [aux_sym_edit_comment_token1] = ACTIONS(5095), - [anon_sym_CARET_LBRACK] = ACTIONS(5095), - [anon_sym_LBRACK_CARET] = ACTIONS(5095), - [sym_uri_autolink] = ACTIONS(5095), - [sym_email_autolink] = ACTIONS(5095), - [sym__whitespace_ge_2] = ACTIONS(5095), - [aux_sym__whitespace_token1] = ACTIONS(5097), - [sym__word_no_digit] = ACTIONS(5095), - [sym__digits] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5095), - [sym__code_span_start] = ACTIONS(5095), - [sym__emphasis_open_star] = ACTIONS(5095), - [sym__emphasis_open_underscore] = ACTIONS(5095), - [sym__emphasis_close_underscore] = ACTIONS(5095), - [sym__strikeout_open] = ACTIONS(5095), - [sym__latex_span_start] = ACTIONS(5095), - [sym__single_quote_open] = ACTIONS(5095), - [sym__double_quote_open] = ACTIONS(5095), - [sym__superscript_open] = ACTIONS(5095), - [sym__subscript_open] = ACTIONS(5095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5095), - [sym__cite_author_in_text] = ACTIONS(5095), - [sym__cite_suppress_author] = ACTIONS(5095), - [sym__shortcode_open_escaped] = ACTIONS(5095), - [sym__shortcode_open] = ACTIONS(5095), - [sym__unclosed_span] = ACTIONS(5095), - [sym__strong_emphasis_open_star] = ACTIONS(5095), - [sym__strong_emphasis_open_underscore] = ACTIONS(5095), - }, - [STATE(1491)] = { - [sym__backslash_escape] = ACTIONS(5099), - [sym_entity_reference] = ACTIONS(5099), - [sym_numeric_character_reference] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [sym__newline_token] = ACTIONS(5099), - [aux_sym_insert_token1] = ACTIONS(5099), - [aux_sym_delete_token1] = ACTIONS(5099), - [aux_sym_highlight_token1] = ACTIONS(5099), - [aux_sym_edit_comment_token1] = ACTIONS(5099), - [anon_sym_CARET_LBRACK] = ACTIONS(5099), - [anon_sym_LBRACK_CARET] = ACTIONS(5099), - [sym_uri_autolink] = ACTIONS(5099), - [sym_email_autolink] = ACTIONS(5099), - [sym__whitespace_ge_2] = ACTIONS(5099), - [aux_sym__whitespace_token1] = ACTIONS(5101), - [sym__word_no_digit] = ACTIONS(5099), - [sym__digits] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5099), - [sym__code_span_start] = ACTIONS(5099), - [sym__emphasis_open_star] = ACTIONS(5099), - [sym__emphasis_open_underscore] = ACTIONS(5099), - [sym__emphasis_close_underscore] = ACTIONS(5099), - [sym__strikeout_open] = ACTIONS(5099), - [sym__latex_span_start] = ACTIONS(5099), - [sym__single_quote_open] = ACTIONS(5099), - [sym__double_quote_open] = ACTIONS(5099), - [sym__superscript_open] = ACTIONS(5099), - [sym__subscript_open] = ACTIONS(5099), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5099), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5099), - [sym__cite_author_in_text] = ACTIONS(5099), - [sym__cite_suppress_author] = ACTIONS(5099), - [sym__shortcode_open_escaped] = ACTIONS(5099), - [sym__shortcode_open] = ACTIONS(5099), - [sym__unclosed_span] = ACTIONS(5099), - [sym__strong_emphasis_open_star] = ACTIONS(5099), - [sym__strong_emphasis_open_underscore] = ACTIONS(5099), - }, - [STATE(1492)] = { - [sym__backslash_escape] = ACTIONS(5103), - [sym_entity_reference] = ACTIONS(5103), - [sym_numeric_character_reference] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(5103), - [anon_sym_POUND] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_BSLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [sym__newline_token] = ACTIONS(5103), - [aux_sym_insert_token1] = ACTIONS(5103), - [aux_sym_delete_token1] = ACTIONS(5103), - [aux_sym_highlight_token1] = ACTIONS(5103), - [aux_sym_edit_comment_token1] = ACTIONS(5103), - [anon_sym_CARET_LBRACK] = ACTIONS(5103), - [anon_sym_LBRACK_CARET] = ACTIONS(5103), - [sym_uri_autolink] = ACTIONS(5103), - [sym_email_autolink] = ACTIONS(5103), - [sym__whitespace_ge_2] = ACTIONS(5103), - [aux_sym__whitespace_token1] = ACTIONS(5105), - [sym__word_no_digit] = ACTIONS(5103), - [sym__digits] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5103), - [sym__code_span_start] = ACTIONS(5103), - [sym__emphasis_open_star] = ACTIONS(5103), - [sym__emphasis_open_underscore] = ACTIONS(5103), - [sym__emphasis_close_underscore] = ACTIONS(5103), - [sym__strikeout_open] = ACTIONS(5103), - [sym__latex_span_start] = ACTIONS(5103), - [sym__single_quote_open] = ACTIONS(5103), - [sym__double_quote_open] = ACTIONS(5103), - [sym__superscript_open] = ACTIONS(5103), - [sym__subscript_open] = ACTIONS(5103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5103), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5103), - [sym__cite_author_in_text] = ACTIONS(5103), - [sym__cite_suppress_author] = ACTIONS(5103), - [sym__shortcode_open_escaped] = ACTIONS(5103), - [sym__shortcode_open] = ACTIONS(5103), - [sym__unclosed_span] = ACTIONS(5103), - [sym__strong_emphasis_open_star] = ACTIONS(5103), - [sym__strong_emphasis_open_underscore] = ACTIONS(5103), - }, - [STATE(1493)] = { - [sym__backslash_escape] = ACTIONS(5107), - [sym_entity_reference] = ACTIONS(5107), - [sym_numeric_character_reference] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_COLON] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_BSLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_BQUOTE] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_PIPE] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [sym__newline_token] = ACTIONS(5107), - [aux_sym_insert_token1] = ACTIONS(5107), - [aux_sym_delete_token1] = ACTIONS(5107), - [aux_sym_highlight_token1] = ACTIONS(5107), - [aux_sym_edit_comment_token1] = ACTIONS(5107), - [anon_sym_CARET_LBRACK] = ACTIONS(5107), - [anon_sym_LBRACK_CARET] = ACTIONS(5107), - [sym_uri_autolink] = ACTIONS(5107), - [sym_email_autolink] = ACTIONS(5107), - [sym__whitespace_ge_2] = ACTIONS(5107), - [aux_sym__whitespace_token1] = ACTIONS(5109), - [sym__word_no_digit] = ACTIONS(5107), - [sym__digits] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5107), - [sym__code_span_start] = ACTIONS(5107), - [sym__emphasis_open_star] = ACTIONS(5107), - [sym__emphasis_open_underscore] = ACTIONS(5107), - [sym__emphasis_close_underscore] = ACTIONS(5107), - [sym__strikeout_open] = ACTIONS(5107), - [sym__latex_span_start] = ACTIONS(5107), - [sym__single_quote_open] = ACTIONS(5107), - [sym__double_quote_open] = ACTIONS(5107), - [sym__superscript_open] = ACTIONS(5107), - [sym__subscript_open] = ACTIONS(5107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5107), - [sym__cite_author_in_text] = ACTIONS(5107), - [sym__cite_suppress_author] = ACTIONS(5107), - [sym__shortcode_open_escaped] = ACTIONS(5107), - [sym__shortcode_open] = ACTIONS(5107), - [sym__unclosed_span] = ACTIONS(5107), - [sym__strong_emphasis_open_star] = ACTIONS(5107), - [sym__strong_emphasis_open_underscore] = ACTIONS(5107), - }, - [STATE(1494)] = { - [sym__backslash_escape] = ACTIONS(5111), - [sym_entity_reference] = ACTIONS(5111), - [sym_numeric_character_reference] = ACTIONS(5111), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym_BQUOTE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [sym__newline_token] = ACTIONS(5111), - [aux_sym_insert_token1] = ACTIONS(5111), - [aux_sym_delete_token1] = ACTIONS(5111), - [aux_sym_highlight_token1] = ACTIONS(5111), - [aux_sym_edit_comment_token1] = ACTIONS(5111), - [anon_sym_CARET_LBRACK] = ACTIONS(5111), - [anon_sym_LBRACK_CARET] = ACTIONS(5111), - [sym_uri_autolink] = ACTIONS(5111), - [sym_email_autolink] = ACTIONS(5111), - [sym__whitespace_ge_2] = ACTIONS(5111), - [aux_sym__whitespace_token1] = ACTIONS(5113), - [sym__word_no_digit] = ACTIONS(5111), - [sym__digits] = ACTIONS(5111), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [sym__code_span_start] = ACTIONS(5111), - [sym__emphasis_open_star] = ACTIONS(5111), - [sym__emphasis_open_underscore] = ACTIONS(5111), - [sym__emphasis_close_underscore] = ACTIONS(5111), - [sym__strikeout_open] = ACTIONS(5111), - [sym__latex_span_start] = ACTIONS(5111), - [sym__single_quote_open] = ACTIONS(5111), - [sym__double_quote_open] = ACTIONS(5111), - [sym__superscript_open] = ACTIONS(5111), - [sym__subscript_open] = ACTIONS(5111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5111), - [sym__cite_author_in_text] = ACTIONS(5111), - [sym__cite_suppress_author] = ACTIONS(5111), - [sym__shortcode_open_escaped] = ACTIONS(5111), - [sym__shortcode_open] = ACTIONS(5111), - [sym__unclosed_span] = ACTIONS(5111), - [sym__strong_emphasis_open_star] = ACTIONS(5111), - [sym__strong_emphasis_open_underscore] = ACTIONS(5111), - }, - [STATE(1495)] = { - [sym__backslash_escape] = ACTIONS(5115), - [sym_entity_reference] = ACTIONS(5115), - [sym_numeric_character_reference] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(5115), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_QMARK] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym_BQUOTE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [sym__newline_token] = ACTIONS(5115), - [aux_sym_insert_token1] = ACTIONS(5115), - [aux_sym_delete_token1] = ACTIONS(5115), - [aux_sym_highlight_token1] = ACTIONS(5115), - [aux_sym_edit_comment_token1] = ACTIONS(5115), - [anon_sym_CARET_LBRACK] = ACTIONS(5115), - [anon_sym_LBRACK_CARET] = ACTIONS(5115), - [sym_uri_autolink] = ACTIONS(5115), - [sym_email_autolink] = ACTIONS(5115), - [sym__whitespace_ge_2] = ACTIONS(5115), - [aux_sym__whitespace_token1] = ACTIONS(5117), - [sym__word_no_digit] = ACTIONS(5115), - [sym__digits] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5115), - [sym__code_span_start] = ACTIONS(5115), - [sym__emphasis_open_star] = ACTIONS(5115), - [sym__emphasis_open_underscore] = ACTIONS(5115), - [sym__emphasis_close_underscore] = ACTIONS(5115), - [sym__strikeout_open] = ACTIONS(5115), - [sym__latex_span_start] = ACTIONS(5115), - [sym__single_quote_open] = ACTIONS(5115), - [sym__double_quote_open] = ACTIONS(5115), - [sym__superscript_open] = ACTIONS(5115), - [sym__subscript_open] = ACTIONS(5115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5115), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5115), - [sym__cite_author_in_text] = ACTIONS(5115), - [sym__cite_suppress_author] = ACTIONS(5115), - [sym__shortcode_open_escaped] = ACTIONS(5115), - [sym__shortcode_open] = ACTIONS(5115), - [sym__unclosed_span] = ACTIONS(5115), - [sym__strong_emphasis_open_star] = ACTIONS(5115), - [sym__strong_emphasis_open_underscore] = ACTIONS(5115), - }, - [STATE(1496)] = { - [sym__backslash_escape] = ACTIONS(5119), - [sym_entity_reference] = ACTIONS(5119), - [sym_numeric_character_reference] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_AMP] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [sym__newline_token] = ACTIONS(5119), - [aux_sym_insert_token1] = ACTIONS(5119), - [aux_sym_delete_token1] = ACTIONS(5119), - [aux_sym_highlight_token1] = ACTIONS(5119), - [aux_sym_edit_comment_token1] = ACTIONS(5119), - [anon_sym_CARET_LBRACK] = ACTIONS(5119), - [anon_sym_LBRACK_CARET] = ACTIONS(5119), - [sym_uri_autolink] = ACTIONS(5119), - [sym_email_autolink] = ACTIONS(5119), - [sym__whitespace_ge_2] = ACTIONS(5119), - [aux_sym__whitespace_token1] = ACTIONS(5121), - [sym__word_no_digit] = ACTIONS(5119), - [sym__digits] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5119), - [sym__code_span_start] = ACTIONS(5119), - [sym__emphasis_open_star] = ACTIONS(5119), - [sym__emphasis_open_underscore] = ACTIONS(5119), - [sym__emphasis_close_underscore] = ACTIONS(5119), - [sym__strikeout_open] = ACTIONS(5119), - [sym__latex_span_start] = ACTIONS(5119), - [sym__single_quote_open] = ACTIONS(5119), - [sym__double_quote_open] = ACTIONS(5119), - [sym__superscript_open] = ACTIONS(5119), - [sym__subscript_open] = ACTIONS(5119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5119), - [sym__cite_author_in_text] = ACTIONS(5119), - [sym__cite_suppress_author] = ACTIONS(5119), - [sym__shortcode_open_escaped] = ACTIONS(5119), - [sym__shortcode_open] = ACTIONS(5119), - [sym__unclosed_span] = ACTIONS(5119), - [sym__strong_emphasis_open_star] = ACTIONS(5119), - [sym__strong_emphasis_open_underscore] = ACTIONS(5119), - }, - [STATE(1497)] = { - [sym__backslash_escape] = ACTIONS(5123), - [sym_entity_reference] = ACTIONS(5123), - [sym_numeric_character_reference] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_DQUOTE] = ACTIONS(5123), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym_BQUOTE] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [sym__newline_token] = ACTIONS(5123), - [aux_sym_insert_token1] = ACTIONS(5123), - [aux_sym_delete_token1] = ACTIONS(5123), - [aux_sym_highlight_token1] = ACTIONS(5123), - [aux_sym_edit_comment_token1] = ACTIONS(5123), - [anon_sym_CARET_LBRACK] = ACTIONS(5123), - [anon_sym_LBRACK_CARET] = ACTIONS(5123), - [sym_uri_autolink] = ACTIONS(5123), - [sym_email_autolink] = ACTIONS(5123), - [sym__whitespace_ge_2] = ACTIONS(5123), - [aux_sym__whitespace_token1] = ACTIONS(5125), - [sym__word_no_digit] = ACTIONS(5123), - [sym__digits] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), - [sym__code_span_start] = ACTIONS(5123), - [sym__emphasis_open_star] = ACTIONS(5123), - [sym__emphasis_open_underscore] = ACTIONS(5123), - [sym__emphasis_close_underscore] = ACTIONS(5123), - [sym__strikeout_open] = ACTIONS(5123), - [sym__latex_span_start] = ACTIONS(5123), - [sym__single_quote_open] = ACTIONS(5123), - [sym__double_quote_open] = ACTIONS(5123), - [sym__superscript_open] = ACTIONS(5123), - [sym__subscript_open] = ACTIONS(5123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5123), - [sym__cite_author_in_text] = ACTIONS(5123), - [sym__cite_suppress_author] = ACTIONS(5123), - [sym__shortcode_open_escaped] = ACTIONS(5123), - [sym__shortcode_open] = ACTIONS(5123), - [sym__unclosed_span] = ACTIONS(5123), - [sym__strong_emphasis_open_star] = ACTIONS(5123), - [sym__strong_emphasis_open_underscore] = ACTIONS(5123), - }, - [STATE(1498)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -149841,7 +146845,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(4631), [anon_sym_AMP] = ACTIONS(4633), [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_STAR] = ACTIONS(4631), [anon_sym_PLUS] = ACTIONS(4631), [anon_sym_COMMA] = ACTIONS(4631), [anon_sym_DASH] = ACTIONS(4633), @@ -149879,8 +146882,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__strikeout_close] = ACTIONS(4631), [sym__latex_span_start] = ACTIONS(4631), [sym__single_quote_open] = ACTIONS(4631), [sym__double_quote_open] = ACTIONS(4631), @@ -149896,5787 +146899,5769 @@ 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(1477)] = { + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__strikeout_close] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), + }, + [STATE(1478)] = { + [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(1479)] = { + [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__strikeout_close] = 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(1480)] = { + [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__strikeout_close] = 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(1481)] = { + [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__strikeout_close] = 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(1482)] = { + [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__strikeout_close] = 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(1483)] = { + [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__strikeout_close] = 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(1484)] = { + [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__strikeout_close] = 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(1485)] = { + [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__strikeout_close] = 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(1486)] = { + [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__strikeout_close] = 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(1487)] = { + [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__strikeout_open] = ACTIONS(4667), + [sym__strikeout_close] = 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(1488)] = { + [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__strikeout_close] = 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(1489)] = { + [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__strikeout_close] = 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(1490)] = { + [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__strikeout_close] = 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(1491)] = { + [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__strikeout_close] = 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(1492)] = { + [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__strikeout_close] = 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(1493)] = { + [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__strikeout_close] = 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(1494)] = { + [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__strikeout_close] = 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(1495)] = { + [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__strikeout_close] = 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(1496)] = { + [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__strikeout_close] = 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(1497)] = { + [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__strikeout_close] = 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(1498)] = { + [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__superscript_close] = 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(1499)] = { - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__emphasis_close_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4367), + [sym__strikeout_close] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(1500)] = { - [ts_builtin_sym_end] = ACTIONS(5063), - [sym__backslash_escape] = ACTIONS(5063), - [sym_entity_reference] = ACTIONS(5063), - [sym_numeric_character_reference] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_BSLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_BQUOTE] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [sym__newline_token] = ACTIONS(5063), - [aux_sym_insert_token1] = ACTIONS(5063), - [aux_sym_delete_token1] = ACTIONS(5063), - [aux_sym_highlight_token1] = ACTIONS(5063), - [aux_sym_edit_comment_token1] = ACTIONS(5063), - [anon_sym_CARET_LBRACK] = ACTIONS(5063), - [anon_sym_LBRACK_CARET] = ACTIONS(5063), - [sym_uri_autolink] = ACTIONS(5063), - [sym_email_autolink] = ACTIONS(5063), - [sym__whitespace_ge_2] = ACTIONS(5063), - [aux_sym__whitespace_token1] = ACTIONS(5065), - [sym__word_no_digit] = ACTIONS(5063), - [sym__digits] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5063), - [sym__code_span_start] = ACTIONS(5063), - [sym__emphasis_open_star] = ACTIONS(5063), - [sym__emphasis_open_underscore] = ACTIONS(5063), - [sym__strikeout_open] = ACTIONS(5063), - [sym__latex_span_start] = ACTIONS(5063), - [sym__single_quote_open] = ACTIONS(5063), - [sym__double_quote_open] = ACTIONS(5063), - [sym__superscript_open] = ACTIONS(5063), - [sym__subscript_open] = ACTIONS(5063), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5063), - [sym__cite_author_in_text] = ACTIONS(5063), - [sym__cite_suppress_author] = ACTIONS(5063), - [sym__shortcode_open_escaped] = ACTIONS(5063), - [sym__shortcode_open] = ACTIONS(5063), - [sym__unclosed_span] = ACTIONS(5063), - [sym__strong_emphasis_open_star] = ACTIONS(5063), - [sym__strong_emphasis_open_underscore] = ACTIONS(5063), + [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__superscript_close] = 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(1501)] = { - [sym__backslash_escape] = ACTIONS(5127), - [sym_entity_reference] = ACTIONS(5127), - [sym_numeric_character_reference] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_DQUOTE] = ACTIONS(5127), - [anon_sym_POUND] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_PERCENT] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_QMARK] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym_BQUOTE] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym__newline_token] = ACTIONS(5127), - [aux_sym_insert_token1] = ACTIONS(5127), - [aux_sym_delete_token1] = ACTIONS(5127), - [aux_sym_highlight_token1] = ACTIONS(5127), - [aux_sym_edit_comment_token1] = ACTIONS(5127), - [anon_sym_CARET_LBRACK] = ACTIONS(5127), - [anon_sym_LBRACK_CARET] = ACTIONS(5127), - [sym_uri_autolink] = ACTIONS(5127), - [sym_email_autolink] = ACTIONS(5127), - [sym__whitespace_ge_2] = ACTIONS(5127), - [aux_sym__whitespace_token1] = ACTIONS(5129), - [sym__word_no_digit] = ACTIONS(5127), - [sym__digits] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5127), - [sym__code_span_start] = ACTIONS(5127), - [sym__emphasis_open_star] = ACTIONS(5127), - [sym__emphasis_open_underscore] = ACTIONS(5127), - [sym__emphasis_close_underscore] = ACTIONS(5127), - [sym__strikeout_open] = ACTIONS(5127), - [sym__latex_span_start] = ACTIONS(5127), - [sym__single_quote_open] = ACTIONS(5127), - [sym__double_quote_open] = ACTIONS(5127), - [sym__superscript_open] = ACTIONS(5127), - [sym__subscript_open] = ACTIONS(5127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5127), - [sym__cite_author_in_text] = ACTIONS(5127), - [sym__cite_suppress_author] = ACTIONS(5127), - [sym__shortcode_open_escaped] = ACTIONS(5127), - [sym__shortcode_open] = ACTIONS(5127), - [sym__unclosed_span] = ACTIONS(5127), - [sym__strong_emphasis_open_star] = ACTIONS(5127), - [sym__strong_emphasis_open_underscore] = ACTIONS(5127), + [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__strikeout_close] = 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(1502)] = { - [sym__backslash_escape] = ACTIONS(5131), - [sym_entity_reference] = ACTIONS(5131), - [sym_numeric_character_reference] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(5131), - [anon_sym_POUND] = ACTIONS(5131), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(5133), - [anon_sym_SQUOTE] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_QMARK] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(5133), - [anon_sym_BQUOTE] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_PIPE] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [sym__newline_token] = ACTIONS(5131), - [aux_sym_insert_token1] = ACTIONS(5131), - [aux_sym_delete_token1] = ACTIONS(5131), - [aux_sym_highlight_token1] = ACTIONS(5131), - [aux_sym_edit_comment_token1] = ACTIONS(5131), - [anon_sym_CARET_LBRACK] = ACTIONS(5131), - [anon_sym_LBRACK_CARET] = ACTIONS(5131), - [sym_uri_autolink] = ACTIONS(5131), - [sym_email_autolink] = ACTIONS(5131), - [sym__whitespace_ge_2] = ACTIONS(5131), - [aux_sym__whitespace_token1] = ACTIONS(5133), - [sym__word_no_digit] = ACTIONS(5131), - [sym__digits] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), - [sym__code_span_start] = ACTIONS(5131), - [sym__emphasis_open_star] = ACTIONS(5131), - [sym__emphasis_open_underscore] = ACTIONS(5131), - [sym__emphasis_close_underscore] = ACTIONS(5131), - [sym__strikeout_open] = ACTIONS(5131), - [sym__latex_span_start] = ACTIONS(5131), - [sym__single_quote_open] = ACTIONS(5131), - [sym__double_quote_open] = ACTIONS(5131), - [sym__superscript_open] = ACTIONS(5131), - [sym__subscript_open] = ACTIONS(5131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5131), - [sym__cite_author_in_text] = ACTIONS(5131), - [sym__cite_suppress_author] = ACTIONS(5131), - [sym__shortcode_open_escaped] = ACTIONS(5131), - [sym__shortcode_open] = ACTIONS(5131), - [sym__unclosed_span] = ACTIONS(5131), - [sym__strong_emphasis_open_star] = ACTIONS(5131), - [sym__strong_emphasis_open_underscore] = ACTIONS(5131), + [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(1503)] = { - [sym__backslash_escape] = ACTIONS(5135), - [sym_entity_reference] = ACTIONS(5135), - [sym_numeric_character_reference] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_AMP] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_QMARK] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH] = ACTIONS(5137), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [sym__newline_token] = ACTIONS(5135), - [aux_sym_insert_token1] = ACTIONS(5135), - [aux_sym_delete_token1] = ACTIONS(5135), - [aux_sym_highlight_token1] = ACTIONS(5135), - [aux_sym_edit_comment_token1] = ACTIONS(5135), - [anon_sym_CARET_LBRACK] = ACTIONS(5135), - [anon_sym_LBRACK_CARET] = ACTIONS(5135), - [sym_uri_autolink] = ACTIONS(5135), - [sym_email_autolink] = ACTIONS(5135), - [sym__whitespace_ge_2] = ACTIONS(5135), - [aux_sym__whitespace_token1] = ACTIONS(5137), - [sym__word_no_digit] = ACTIONS(5135), - [sym__digits] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5135), - [sym__code_span_start] = ACTIONS(5135), - [sym__emphasis_open_star] = ACTIONS(5135), - [sym__emphasis_open_underscore] = ACTIONS(5135), - [sym__emphasis_close_underscore] = ACTIONS(5135), - [sym__strikeout_open] = ACTIONS(5135), - [sym__latex_span_start] = ACTIONS(5135), - [sym__single_quote_open] = ACTIONS(5135), - [sym__double_quote_open] = ACTIONS(5135), - [sym__superscript_open] = ACTIONS(5135), - [sym__subscript_open] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5135), - [sym__cite_author_in_text] = ACTIONS(5135), - [sym__cite_suppress_author] = ACTIONS(5135), - [sym__shortcode_open_escaped] = ACTIONS(5135), - [sym__shortcode_open] = ACTIONS(5135), - [sym__unclosed_span] = ACTIONS(5135), - [sym__strong_emphasis_open_star] = ACTIONS(5135), - [sym__strong_emphasis_open_underscore] = ACTIONS(5135), + [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__superscript_close] = 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(1504)] = { - [sym__backslash_escape] = ACTIONS(5139), - [sym_entity_reference] = ACTIONS(5139), - [sym_numeric_character_reference] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_DQUOTE] = ACTIONS(5139), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH] = ACTIONS(5141), - [anon_sym_CARET] = ACTIONS(5141), - [anon_sym_BQUOTE] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_RPAREN] = ACTIONS(5139), - [sym__newline_token] = ACTIONS(5139), - [aux_sym_insert_token1] = ACTIONS(5139), - [aux_sym_delete_token1] = ACTIONS(5139), - [aux_sym_highlight_token1] = ACTIONS(5139), - [aux_sym_edit_comment_token1] = ACTIONS(5139), - [anon_sym_CARET_LBRACK] = ACTIONS(5139), - [anon_sym_LBRACK_CARET] = ACTIONS(5139), - [sym_uri_autolink] = ACTIONS(5139), - [sym_email_autolink] = ACTIONS(5139), - [sym__whitespace_ge_2] = ACTIONS(5139), - [aux_sym__whitespace_token1] = ACTIONS(5141), - [sym__word_no_digit] = ACTIONS(5139), - [sym__digits] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5141), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5139), - [sym__code_span_start] = ACTIONS(5139), - [sym__emphasis_open_star] = ACTIONS(5139), - [sym__emphasis_open_underscore] = ACTIONS(5139), - [sym__emphasis_close_underscore] = ACTIONS(5139), - [sym__strikeout_open] = ACTIONS(5139), - [sym__latex_span_start] = ACTIONS(5139), - [sym__single_quote_open] = ACTIONS(5139), - [sym__double_quote_open] = ACTIONS(5139), - [sym__superscript_open] = ACTIONS(5139), - [sym__subscript_open] = ACTIONS(5139), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5139), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5139), - [sym__cite_author_in_text] = ACTIONS(5139), - [sym__cite_suppress_author] = ACTIONS(5139), - [sym__shortcode_open_escaped] = ACTIONS(5139), - [sym__shortcode_open] = ACTIONS(5139), - [sym__unclosed_span] = ACTIONS(5139), - [sym__strong_emphasis_open_star] = ACTIONS(5139), - [sym__strong_emphasis_open_underscore] = ACTIONS(5139), + [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__strikeout_close] = 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(1505)] = { - [sym__backslash_escape] = ACTIONS(5143), - [sym_entity_reference] = ACTIONS(5143), - [sym_numeric_character_reference] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_DQUOTE] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_PERCENT] = ACTIONS(5143), - [anon_sym_AMP] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH] = ACTIONS(5145), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym_BQUOTE] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [sym__newline_token] = ACTIONS(5143), - [aux_sym_insert_token1] = ACTIONS(5143), - [aux_sym_delete_token1] = ACTIONS(5143), - [aux_sym_highlight_token1] = ACTIONS(5143), - [aux_sym_edit_comment_token1] = ACTIONS(5143), - [anon_sym_CARET_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_CARET] = ACTIONS(5143), - [sym_uri_autolink] = ACTIONS(5143), - [sym_email_autolink] = ACTIONS(5143), - [sym__whitespace_ge_2] = ACTIONS(5143), - [aux_sym__whitespace_token1] = ACTIONS(5145), - [sym__word_no_digit] = ACTIONS(5143), - [sym__digits] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5143), - [sym__code_span_start] = ACTIONS(5143), - [sym__emphasis_open_star] = ACTIONS(5143), - [sym__emphasis_open_underscore] = ACTIONS(5143), - [sym__emphasis_close_underscore] = ACTIONS(5143), - [sym__strikeout_open] = ACTIONS(5143), - [sym__latex_span_start] = ACTIONS(5143), - [sym__single_quote_open] = ACTIONS(5143), - [sym__double_quote_open] = ACTIONS(5143), - [sym__superscript_open] = ACTIONS(5143), - [sym__subscript_open] = ACTIONS(5143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5143), - [sym__cite_author_in_text] = ACTIONS(5143), - [sym__cite_suppress_author] = ACTIONS(5143), - [sym__shortcode_open_escaped] = ACTIONS(5143), - [sym__shortcode_open] = ACTIONS(5143), - [sym__unclosed_span] = ACTIONS(5143), - [sym__strong_emphasis_open_star] = ACTIONS(5143), - [sym__strong_emphasis_open_underscore] = ACTIONS(5143), + [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__strikeout_close] = 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(1506)] = { - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__emphasis_close_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [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__strikeout_close] = 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(1507)] = { - [ts_builtin_sym_end] = ACTIONS(5067), - [sym__backslash_escape] = ACTIONS(5067), - [sym_entity_reference] = ACTIONS(5067), - [sym_numeric_character_reference] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DQUOTE] = ACTIONS(5067), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_COLON] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [sym__newline_token] = ACTIONS(5067), - [aux_sym_insert_token1] = ACTIONS(5067), - [aux_sym_delete_token1] = ACTIONS(5067), - [aux_sym_highlight_token1] = ACTIONS(5067), - [aux_sym_edit_comment_token1] = ACTIONS(5067), - [anon_sym_CARET_LBRACK] = ACTIONS(5067), - [anon_sym_LBRACK_CARET] = ACTIONS(5067), - [sym_uri_autolink] = ACTIONS(5067), - [sym_email_autolink] = ACTIONS(5067), - [sym__whitespace_ge_2] = ACTIONS(5067), - [aux_sym__whitespace_token1] = ACTIONS(5069), - [sym__word_no_digit] = ACTIONS(5067), - [sym__digits] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5067), - [sym__code_span_start] = ACTIONS(5067), - [sym__emphasis_open_star] = ACTIONS(5067), - [sym__emphasis_open_underscore] = ACTIONS(5067), - [sym__strikeout_open] = ACTIONS(5067), - [sym__latex_span_start] = ACTIONS(5067), - [sym__single_quote_open] = ACTIONS(5067), - [sym__double_quote_open] = ACTIONS(5067), - [sym__superscript_open] = ACTIONS(5067), - [sym__subscript_open] = ACTIONS(5067), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5067), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5067), - [sym__cite_author_in_text] = ACTIONS(5067), - [sym__cite_suppress_author] = ACTIONS(5067), - [sym__shortcode_open_escaped] = ACTIONS(5067), - [sym__shortcode_open] = ACTIONS(5067), - [sym__unclosed_span] = ACTIONS(5067), - [sym__strong_emphasis_open_star] = ACTIONS(5067), - [sym__strong_emphasis_open_underscore] = ACTIONS(5067), + [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__strikeout_close] = 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(1508)] = { - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__emphasis_close_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [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__strikeout_close] = 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(1509)] = { - [ts_builtin_sym_end] = ACTIONS(5071), - [sym__backslash_escape] = ACTIONS(5071), - [sym_entity_reference] = ACTIONS(5071), - [sym_numeric_character_reference] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_POUND] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [sym__newline_token] = ACTIONS(5071), - [aux_sym_insert_token1] = ACTIONS(5071), - [aux_sym_delete_token1] = ACTIONS(5071), - [aux_sym_highlight_token1] = ACTIONS(5071), - [aux_sym_edit_comment_token1] = ACTIONS(5071), - [anon_sym_CARET_LBRACK] = ACTIONS(5071), - [anon_sym_LBRACK_CARET] = ACTIONS(5071), - [sym_uri_autolink] = ACTIONS(5071), - [sym_email_autolink] = ACTIONS(5071), - [sym__whitespace_ge_2] = ACTIONS(5071), - [aux_sym__whitespace_token1] = ACTIONS(5073), - [sym__word_no_digit] = ACTIONS(5071), - [sym__digits] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5071), - [sym__code_span_start] = ACTIONS(5071), - [sym__emphasis_open_star] = ACTIONS(5071), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym__strikeout_open] = ACTIONS(5071), - [sym__latex_span_start] = ACTIONS(5071), - [sym__single_quote_open] = ACTIONS(5071), - [sym__double_quote_open] = ACTIONS(5071), - [sym__superscript_open] = ACTIONS(5071), - [sym__subscript_open] = ACTIONS(5071), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5071), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5071), - [sym__cite_author_in_text] = ACTIONS(5071), - [sym__cite_suppress_author] = ACTIONS(5071), - [sym__shortcode_open_escaped] = ACTIONS(5071), - [sym__shortcode_open] = ACTIONS(5071), - [sym__unclosed_span] = ACTIONS(5071), - [sym__strong_emphasis_open_star] = ACTIONS(5071), - [sym__strong_emphasis_open_underscore] = ACTIONS(5071), + [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__superscript_close] = 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(1510)] = { - [sym__backslash_escape] = ACTIONS(5147), - [sym_entity_reference] = ACTIONS(5147), - [sym_numeric_character_reference] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_DQUOTE] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [sym__newline_token] = ACTIONS(5147), - [aux_sym_insert_token1] = ACTIONS(5147), - [aux_sym_delete_token1] = ACTIONS(5147), - [aux_sym_highlight_token1] = ACTIONS(5147), - [aux_sym_edit_comment_token1] = ACTIONS(5147), - [anon_sym_CARET_LBRACK] = ACTIONS(5147), - [anon_sym_LBRACK_CARET] = ACTIONS(5147), - [sym_uri_autolink] = ACTIONS(5147), - [sym_email_autolink] = ACTIONS(5147), - [sym__whitespace_ge_2] = ACTIONS(5147), - [aux_sym__whitespace_token1] = ACTIONS(5149), - [sym__word_no_digit] = ACTIONS(5147), - [sym__digits] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5147), - [sym__code_span_start] = ACTIONS(5147), - [sym__emphasis_open_star] = ACTIONS(5147), - [sym__emphasis_open_underscore] = ACTIONS(5147), - [sym__emphasis_close_underscore] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5147), - [sym__latex_span_start] = ACTIONS(5147), - [sym__single_quote_open] = ACTIONS(5147), - [sym__double_quote_open] = ACTIONS(5147), - [sym__superscript_open] = ACTIONS(5147), - [sym__subscript_open] = ACTIONS(5147), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5147), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5147), - [sym__cite_author_in_text] = ACTIONS(5147), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__shortcode_open_escaped] = ACTIONS(5147), - [sym__shortcode_open] = ACTIONS(5147), - [sym__unclosed_span] = ACTIONS(5147), - [sym__strong_emphasis_open_star] = ACTIONS(5147), - [sym__strong_emphasis_open_underscore] = ACTIONS(5147), + [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__strikeout_close] = 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(1511)] = { - [sym__backslash_escape] = ACTIONS(5151), - [sym_entity_reference] = ACTIONS(5151), - [sym_numeric_character_reference] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_DQUOTE] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_PERCENT] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_QMARK] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [sym__newline_token] = ACTIONS(5151), - [aux_sym_insert_token1] = ACTIONS(5151), - [aux_sym_delete_token1] = ACTIONS(5151), - [aux_sym_highlight_token1] = ACTIONS(5151), - [aux_sym_edit_comment_token1] = ACTIONS(5151), - [anon_sym_CARET_LBRACK] = ACTIONS(5151), - [anon_sym_LBRACK_CARET] = ACTIONS(5151), - [sym_uri_autolink] = ACTIONS(5151), - [sym_email_autolink] = ACTIONS(5151), - [sym__whitespace_ge_2] = ACTIONS(5151), - [aux_sym__whitespace_token1] = ACTIONS(5153), - [sym__word_no_digit] = ACTIONS(5151), - [sym__digits] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5151), - [sym__code_span_start] = ACTIONS(5151), - [sym__emphasis_open_star] = ACTIONS(5151), - [sym__emphasis_open_underscore] = ACTIONS(5151), - [sym__emphasis_close_underscore] = ACTIONS(5151), - [sym__strikeout_open] = ACTIONS(5151), - [sym__latex_span_start] = ACTIONS(5151), - [sym__single_quote_open] = ACTIONS(5151), - [sym__double_quote_open] = ACTIONS(5151), - [sym__superscript_open] = ACTIONS(5151), - [sym__subscript_open] = ACTIONS(5151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5151), - [sym__cite_author_in_text] = ACTIONS(5151), - [sym__cite_suppress_author] = ACTIONS(5151), - [sym__shortcode_open_escaped] = ACTIONS(5151), - [sym__shortcode_open] = ACTIONS(5151), - [sym__unclosed_span] = ACTIONS(5151), - [sym__strong_emphasis_open_star] = ACTIONS(5151), - [sym__strong_emphasis_open_underscore] = ACTIONS(5151), + [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__strikeout_close] = 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(1512)] = { - [sym__backslash_escape] = ACTIONS(5155), - [sym_entity_reference] = ACTIONS(5155), - [sym_numeric_character_reference] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_QMARK] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [sym__newline_token] = ACTIONS(5155), - [aux_sym_insert_token1] = ACTIONS(5155), - [aux_sym_delete_token1] = ACTIONS(5155), - [aux_sym_highlight_token1] = ACTIONS(5155), - [aux_sym_edit_comment_token1] = ACTIONS(5155), - [anon_sym_CARET_LBRACK] = ACTIONS(5155), - [anon_sym_LBRACK_CARET] = ACTIONS(5155), - [sym_uri_autolink] = ACTIONS(5155), - [sym_email_autolink] = ACTIONS(5155), - [sym__whitespace_ge_2] = ACTIONS(5155), - [aux_sym__whitespace_token1] = ACTIONS(5157), - [sym__word_no_digit] = ACTIONS(5155), - [sym__digits] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5155), - [sym__code_span_start] = ACTIONS(5155), - [sym__emphasis_open_star] = ACTIONS(5155), - [sym__emphasis_open_underscore] = ACTIONS(5155), - [sym__emphasis_close_underscore] = ACTIONS(5155), - [sym__strikeout_open] = ACTIONS(5155), - [sym__latex_span_start] = ACTIONS(5155), - [sym__single_quote_open] = ACTIONS(5155), - [sym__double_quote_open] = ACTIONS(5155), - [sym__superscript_open] = ACTIONS(5155), - [sym__subscript_open] = ACTIONS(5155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5155), - [sym__cite_author_in_text] = ACTIONS(5155), - [sym__cite_suppress_author] = ACTIONS(5155), - [sym__shortcode_open_escaped] = ACTIONS(5155), - [sym__shortcode_open] = ACTIONS(5155), - [sym__unclosed_span] = ACTIONS(5155), - [sym__strong_emphasis_open_star] = ACTIONS(5155), - [sym__strong_emphasis_open_underscore] = ACTIONS(5155), + [sym__backslash_escape] = ACTIONS(4499), + [sym_entity_reference] = ACTIONS(4499), + [sym_numeric_character_reference] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4501), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_BSLASH] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_PIPE] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [sym__newline_token] = ACTIONS(4499), + [aux_sym_insert_token1] = ACTIONS(4499), + [aux_sym_delete_token1] = ACTIONS(4499), + [aux_sym_highlight_token1] = ACTIONS(4499), + [aux_sym_edit_comment_token1] = ACTIONS(4499), + [anon_sym_CARET_LBRACK] = ACTIONS(4499), + [anon_sym_LBRACK_CARET] = ACTIONS(4499), + [sym_uri_autolink] = ACTIONS(4499), + [sym_email_autolink] = ACTIONS(4499), + [sym__whitespace_ge_2] = ACTIONS(4499), + [aux_sym__whitespace_token1] = ACTIONS(4501), + [sym__word_no_digit] = ACTIONS(4499), + [sym__digits] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4499), + [sym__code_span_start] = ACTIONS(4499), + [sym__emphasis_open_star] = ACTIONS(4499), + [sym__emphasis_open_underscore] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4499), + [sym__strikeout_close] = ACTIONS(4499), + [sym__latex_span_start] = ACTIONS(4499), + [sym__single_quote_open] = ACTIONS(4499), + [sym__double_quote_open] = ACTIONS(4499), + [sym__superscript_open] = ACTIONS(4499), + [sym__subscript_open] = ACTIONS(4499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4499), + [sym__cite_author_in_text] = ACTIONS(4499), + [sym__cite_suppress_author] = ACTIONS(4499), + [sym__shortcode_open_escaped] = ACTIONS(4499), + [sym__shortcode_open] = ACTIONS(4499), + [sym__unclosed_span] = ACTIONS(4499), + [sym__strong_emphasis_open_star] = ACTIONS(4499), + [sym__strong_emphasis_open_underscore] = ACTIONS(4499), }, [STATE(1513)] = { - [sym__backslash_escape] = ACTIONS(5159), - [sym_entity_reference] = ACTIONS(5159), - [sym_numeric_character_reference] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_DQUOTE] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_QMARK] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym__newline_token] = ACTIONS(5159), - [aux_sym_insert_token1] = ACTIONS(5159), - [aux_sym_delete_token1] = ACTIONS(5159), - [aux_sym_highlight_token1] = ACTIONS(5159), - [aux_sym_edit_comment_token1] = ACTIONS(5159), - [anon_sym_CARET_LBRACK] = ACTIONS(5159), - [anon_sym_LBRACK_CARET] = ACTIONS(5159), - [sym_uri_autolink] = ACTIONS(5159), - [sym_email_autolink] = ACTIONS(5159), - [sym__whitespace_ge_2] = ACTIONS(5159), - [aux_sym__whitespace_token1] = ACTIONS(5161), - [sym__word_no_digit] = ACTIONS(5159), - [sym__digits] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5159), - [sym__code_span_start] = ACTIONS(5159), - [sym__emphasis_open_star] = ACTIONS(5159), - [sym__emphasis_open_underscore] = ACTIONS(5159), - [sym__emphasis_close_underscore] = ACTIONS(5159), - [sym__strikeout_open] = ACTIONS(5159), - [sym__latex_span_start] = ACTIONS(5159), - [sym__single_quote_open] = ACTIONS(5159), - [sym__double_quote_open] = ACTIONS(5159), - [sym__superscript_open] = ACTIONS(5159), - [sym__subscript_open] = ACTIONS(5159), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5159), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5159), - [sym__cite_author_in_text] = ACTIONS(5159), - [sym__cite_suppress_author] = ACTIONS(5159), - [sym__shortcode_open_escaped] = ACTIONS(5159), - [sym__shortcode_open] = ACTIONS(5159), - [sym__unclosed_span] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5159), - [sym__strong_emphasis_open_underscore] = ACTIONS(5159), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__strikeout_close] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(1514)] = { - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__emphasis_close_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [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(1515)] = { - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__emphasis_close_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__strikeout_close] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(1516)] = { - [sym__backslash_escape] = ACTIONS(5163), - [sym_entity_reference] = ACTIONS(5163), - [sym_numeric_character_reference] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_PERCENT] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym_BQUOTE] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [sym__newline_token] = ACTIONS(5163), - [aux_sym_insert_token1] = ACTIONS(5163), - [aux_sym_delete_token1] = ACTIONS(5163), - [aux_sym_highlight_token1] = ACTIONS(5163), - [aux_sym_edit_comment_token1] = ACTIONS(5163), - [anon_sym_CARET_LBRACK] = ACTIONS(5163), - [anon_sym_LBRACK_CARET] = ACTIONS(5163), - [sym_uri_autolink] = ACTIONS(5163), - [sym_email_autolink] = ACTIONS(5163), - [sym__whitespace_ge_2] = ACTIONS(5163), - [aux_sym__whitespace_token1] = ACTIONS(5165), - [sym__word_no_digit] = ACTIONS(5163), - [sym__digits] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5163), - [sym__code_span_start] = ACTIONS(5163), - [sym__emphasis_open_star] = ACTIONS(5163), - [sym__emphasis_open_underscore] = ACTIONS(5163), - [sym__emphasis_close_underscore] = ACTIONS(5163), - [sym__strikeout_open] = ACTIONS(5163), - [sym__latex_span_start] = ACTIONS(5163), - [sym__single_quote_open] = ACTIONS(5163), - [sym__double_quote_open] = ACTIONS(5163), - [sym__superscript_open] = ACTIONS(5163), - [sym__subscript_open] = ACTIONS(5163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5163), - [sym__cite_author_in_text] = ACTIONS(5163), - [sym__cite_suppress_author] = ACTIONS(5163), - [sym__shortcode_open_escaped] = ACTIONS(5163), - [sym__shortcode_open] = ACTIONS(5163), - [sym__unclosed_span] = ACTIONS(5163), - [sym__strong_emphasis_open_star] = ACTIONS(5163), - [sym__strong_emphasis_open_underscore] = ACTIONS(5163), + [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(1517)] = { - [sym__backslash_escape] = ACTIONS(5167), - [sym_entity_reference] = ACTIONS(5167), - [sym_numeric_character_reference] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_POUND] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_PERCENT] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_QMARK] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [sym__newline_token] = ACTIONS(5167), - [aux_sym_insert_token1] = ACTIONS(5167), - [aux_sym_delete_token1] = ACTIONS(5167), - [aux_sym_highlight_token1] = ACTIONS(5167), - [aux_sym_edit_comment_token1] = ACTIONS(5167), - [anon_sym_CARET_LBRACK] = ACTIONS(5167), - [anon_sym_LBRACK_CARET] = ACTIONS(5167), - [sym_uri_autolink] = ACTIONS(5167), - [sym_email_autolink] = ACTIONS(5167), - [sym__whitespace_ge_2] = ACTIONS(5167), - [aux_sym__whitespace_token1] = ACTIONS(5169), - [sym__word_no_digit] = ACTIONS(5167), - [sym__digits] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5169), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), - [sym__code_span_start] = ACTIONS(5167), - [sym__emphasis_open_star] = ACTIONS(5167), - [sym__emphasis_open_underscore] = ACTIONS(5167), - [sym__emphasis_close_underscore] = ACTIONS(5167), - [sym__strikeout_open] = ACTIONS(5167), - [sym__latex_span_start] = ACTIONS(5167), - [sym__single_quote_open] = ACTIONS(5167), - [sym__double_quote_open] = ACTIONS(5167), - [sym__superscript_open] = ACTIONS(5167), - [sym__subscript_open] = ACTIONS(5167), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5167), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5167), - [sym__cite_author_in_text] = ACTIONS(5167), - [sym__cite_suppress_author] = ACTIONS(5167), - [sym__shortcode_open_escaped] = ACTIONS(5167), - [sym__shortcode_open] = ACTIONS(5167), - [sym__unclosed_span] = ACTIONS(5167), - [sym__strong_emphasis_open_star] = ACTIONS(5167), - [sym__strong_emphasis_open_underscore] = ACTIONS(5167), + [sym__backslash_escape] = ACTIONS(4507), + [sym_entity_reference] = ACTIONS(4507), + [sym_numeric_character_reference] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(4507), + [anon_sym_DOLLAR] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_QMARK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_BSLASH] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [sym__newline_token] = ACTIONS(4507), + [aux_sym_insert_token1] = ACTIONS(4507), + [aux_sym_delete_token1] = ACTIONS(4507), + [aux_sym_highlight_token1] = ACTIONS(4507), + [aux_sym_edit_comment_token1] = ACTIONS(4507), + [anon_sym_CARET_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK_CARET] = ACTIONS(4507), + [sym_uri_autolink] = ACTIONS(4507), + [sym_email_autolink] = ACTIONS(4507), + [sym__whitespace_ge_2] = ACTIONS(4507), + [aux_sym__whitespace_token1] = ACTIONS(4509), + [sym__word_no_digit] = ACTIONS(4507), + [sym__digits] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4507), + [sym__code_span_start] = ACTIONS(4507), + [sym__emphasis_open_star] = ACTIONS(4507), + [sym__emphasis_open_underscore] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4507), + [sym__strikeout_close] = ACTIONS(4507), + [sym__latex_span_start] = ACTIONS(4507), + [sym__single_quote_open] = ACTIONS(4507), + [sym__double_quote_open] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4507), + [sym__subscript_open] = ACTIONS(4507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4507), + [sym__cite_author_in_text] = ACTIONS(4507), + [sym__cite_suppress_author] = ACTIONS(4507), + [sym__shortcode_open_escaped] = ACTIONS(4507), + [sym__shortcode_open] = ACTIONS(4507), + [sym__unclosed_span] = ACTIONS(4507), + [sym__strong_emphasis_open_star] = ACTIONS(4507), + [sym__strong_emphasis_open_underscore] = ACTIONS(4507), }, [STATE(1518)] = { - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__emphasis_close_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__backslash_escape] = ACTIONS(4511), + [sym_entity_reference] = ACTIONS(4511), + [sym_numeric_character_reference] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4511), + [anon_sym_POUND] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_COMMA] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_QMARK] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_BQUOTE] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(4511), + [sym__newline_token] = ACTIONS(4511), + [aux_sym_insert_token1] = ACTIONS(4511), + [aux_sym_delete_token1] = ACTIONS(4511), + [aux_sym_highlight_token1] = ACTIONS(4511), + [aux_sym_edit_comment_token1] = ACTIONS(4511), + [anon_sym_CARET_LBRACK] = ACTIONS(4511), + [anon_sym_LBRACK_CARET] = ACTIONS(4511), + [sym_uri_autolink] = ACTIONS(4511), + [sym_email_autolink] = ACTIONS(4511), + [sym__whitespace_ge_2] = ACTIONS(4511), + [aux_sym__whitespace_token1] = ACTIONS(4513), + [sym__word_no_digit] = ACTIONS(4511), + [sym__digits] = ACTIONS(4511), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), + [sym__code_span_start] = ACTIONS(4511), + [sym__emphasis_open_star] = ACTIONS(4511), + [sym__emphasis_open_underscore] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4511), + [sym__strikeout_close] = ACTIONS(4511), + [sym__latex_span_start] = ACTIONS(4511), + [sym__single_quote_open] = ACTIONS(4511), + [sym__double_quote_open] = ACTIONS(4511), + [sym__superscript_open] = ACTIONS(4511), + [sym__subscript_open] = ACTIONS(4511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), + [sym__cite_author_in_text] = ACTIONS(4511), + [sym__cite_suppress_author] = ACTIONS(4511), + [sym__shortcode_open_escaped] = ACTIONS(4511), + [sym__shortcode_open] = ACTIONS(4511), + [sym__unclosed_span] = ACTIONS(4511), + [sym__strong_emphasis_open_star] = ACTIONS(4511), + [sym__strong_emphasis_open_underscore] = ACTIONS(4511), }, [STATE(1519)] = { - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__emphasis_close_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__backslash_escape] = ACTIONS(4515), + [sym_entity_reference] = ACTIONS(4515), + [sym_numeric_character_reference] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4515), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_BSLASH] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_RPAREN] = ACTIONS(4515), + [sym__newline_token] = ACTIONS(4515), + [aux_sym_insert_token1] = ACTIONS(4515), + [aux_sym_delete_token1] = ACTIONS(4515), + [aux_sym_highlight_token1] = ACTIONS(4515), + [aux_sym_edit_comment_token1] = ACTIONS(4515), + [anon_sym_CARET_LBRACK] = ACTIONS(4515), + [anon_sym_LBRACK_CARET] = ACTIONS(4515), + [sym_uri_autolink] = ACTIONS(4515), + [sym_email_autolink] = ACTIONS(4515), + [sym__whitespace_ge_2] = ACTIONS(4515), + [aux_sym__whitespace_token1] = ACTIONS(4517), + [sym__word_no_digit] = ACTIONS(4515), + [sym__digits] = ACTIONS(4515), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4515), + [sym__code_span_start] = ACTIONS(4515), + [sym__emphasis_open_star] = ACTIONS(4515), + [sym__emphasis_open_underscore] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4515), + [sym__strikeout_close] = ACTIONS(4515), + [sym__latex_span_start] = ACTIONS(4515), + [sym__single_quote_open] = ACTIONS(4515), + [sym__double_quote_open] = ACTIONS(4515), + [sym__superscript_open] = ACTIONS(4515), + [sym__subscript_open] = ACTIONS(4515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4515), + [sym__cite_author_in_text] = ACTIONS(4515), + [sym__cite_suppress_author] = ACTIONS(4515), + [sym__shortcode_open_escaped] = ACTIONS(4515), + [sym__shortcode_open] = ACTIONS(4515), + [sym__unclosed_span] = ACTIONS(4515), + [sym__strong_emphasis_open_star] = ACTIONS(4515), + [sym__strong_emphasis_open_underscore] = ACTIONS(4515), }, [STATE(1520)] = { - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__emphasis_close_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [sym__backslash_escape] = ACTIONS(4519), + [sym_entity_reference] = ACTIONS(4519), + [sym_numeric_character_reference] = ACTIONS(4519), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4519), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_BSLASH] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_BQUOTE] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [sym__newline_token] = ACTIONS(4519), + [aux_sym_insert_token1] = ACTIONS(4519), + [aux_sym_delete_token1] = ACTIONS(4519), + [aux_sym_highlight_token1] = ACTIONS(4519), + [aux_sym_edit_comment_token1] = ACTIONS(4519), + [anon_sym_CARET_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_CARET] = ACTIONS(4519), + [sym_uri_autolink] = ACTIONS(4519), + [sym_email_autolink] = ACTIONS(4519), + [sym__whitespace_ge_2] = ACTIONS(4519), + [aux_sym__whitespace_token1] = ACTIONS(4521), + [sym__word_no_digit] = ACTIONS(4519), + [sym__digits] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [sym__code_span_start] = ACTIONS(4519), + [sym__emphasis_open_star] = ACTIONS(4519), + [sym__emphasis_open_underscore] = ACTIONS(4519), + [sym__strikeout_open] = ACTIONS(4519), + [sym__strikeout_close] = ACTIONS(4519), + [sym__latex_span_start] = ACTIONS(4519), + [sym__single_quote_open] = ACTIONS(4519), + [sym__double_quote_open] = ACTIONS(4519), + [sym__superscript_open] = ACTIONS(4519), + [sym__subscript_open] = ACTIONS(4519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4519), + [sym__cite_suppress_author] = ACTIONS(4519), + [sym__shortcode_open_escaped] = ACTIONS(4519), + [sym__shortcode_open] = ACTIONS(4519), + [sym__unclosed_span] = ACTIONS(4519), + [sym__strong_emphasis_open_star] = ACTIONS(4519), + [sym__strong_emphasis_open_underscore] = ACTIONS(4519), }, [STATE(1521)] = { - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__emphasis_close_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [sym__backslash_escape] = ACTIONS(4523), + [sym_entity_reference] = ACTIONS(4523), + [sym_numeric_character_reference] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_BSLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [sym__newline_token] = ACTIONS(4523), + [aux_sym_insert_token1] = ACTIONS(4523), + [aux_sym_delete_token1] = ACTIONS(4523), + [aux_sym_highlight_token1] = ACTIONS(4523), + [aux_sym_edit_comment_token1] = ACTIONS(4523), + [anon_sym_CARET_LBRACK] = ACTIONS(4523), + [anon_sym_LBRACK_CARET] = ACTIONS(4523), + [sym_uri_autolink] = ACTIONS(4523), + [sym_email_autolink] = ACTIONS(4523), + [sym__whitespace_ge_2] = ACTIONS(4523), + [aux_sym__whitespace_token1] = ACTIONS(4525), + [sym__word_no_digit] = ACTIONS(4523), + [sym__digits] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4523), + [sym__code_span_start] = ACTIONS(4523), + [sym__emphasis_open_star] = ACTIONS(4523), + [sym__emphasis_open_underscore] = ACTIONS(4523), + [sym__strikeout_open] = ACTIONS(4523), + [sym__strikeout_close] = ACTIONS(4523), + [sym__latex_span_start] = ACTIONS(4523), + [sym__single_quote_open] = ACTIONS(4523), + [sym__double_quote_open] = ACTIONS(4523), + [sym__superscript_open] = ACTIONS(4523), + [sym__subscript_open] = ACTIONS(4523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4523), + [sym__cite_author_in_text] = ACTIONS(4523), + [sym__cite_suppress_author] = ACTIONS(4523), + [sym__shortcode_open_escaped] = ACTIONS(4523), + [sym__shortcode_open] = ACTIONS(4523), + [sym__unclosed_span] = ACTIONS(4523), + [sym__strong_emphasis_open_star] = ACTIONS(4523), + [sym__strong_emphasis_open_underscore] = ACTIONS(4523), }, [STATE(1522)] = { - [sym__backslash_escape] = ACTIONS(5171), - [sym_entity_reference] = ACTIONS(5171), - [sym_numeric_character_reference] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [anon_sym_POUND] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_QMARK] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH] = ACTIONS(5173), - [anon_sym_CARET] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [sym__newline_token] = ACTIONS(5171), - [aux_sym_insert_token1] = ACTIONS(5171), - [aux_sym_delete_token1] = ACTIONS(5171), - [aux_sym_highlight_token1] = ACTIONS(5171), - [aux_sym_edit_comment_token1] = ACTIONS(5171), - [anon_sym_CARET_LBRACK] = ACTIONS(5171), - [anon_sym_LBRACK_CARET] = ACTIONS(5171), - [sym_uri_autolink] = ACTIONS(5171), - [sym_email_autolink] = ACTIONS(5171), - [sym__whitespace_ge_2] = ACTIONS(5171), - [aux_sym__whitespace_token1] = ACTIONS(5173), - [sym__word_no_digit] = ACTIONS(5171), - [sym__digits] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5171), - [sym__code_span_start] = ACTIONS(5171), - [sym__emphasis_open_star] = ACTIONS(5171), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym__emphasis_close_underscore] = ACTIONS(5171), - [sym__strikeout_open] = ACTIONS(5171), - [sym__latex_span_start] = ACTIONS(5171), - [sym__single_quote_open] = ACTIONS(5171), - [sym__double_quote_open] = ACTIONS(5171), - [sym__superscript_open] = ACTIONS(5171), - [sym__subscript_open] = ACTIONS(5171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5171), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5171), - [sym__cite_author_in_text] = ACTIONS(5171), - [sym__cite_suppress_author] = ACTIONS(5171), - [sym__shortcode_open_escaped] = ACTIONS(5171), - [sym__shortcode_open] = ACTIONS(5171), - [sym__unclosed_span] = ACTIONS(5171), - [sym__strong_emphasis_open_star] = ACTIONS(5171), - [sym__strong_emphasis_open_underscore] = ACTIONS(5171), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__strikeout_close] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(1523)] = { - [sym__backslash_escape] = ACTIONS(5175), - [sym_entity_reference] = ACTIONS(5175), - [sym_numeric_character_reference] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_QMARK] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [sym__newline_token] = ACTIONS(5175), - [aux_sym_insert_token1] = ACTIONS(5175), - [aux_sym_delete_token1] = ACTIONS(5175), - [aux_sym_highlight_token1] = ACTIONS(5175), - [aux_sym_edit_comment_token1] = ACTIONS(5175), - [anon_sym_CARET_LBRACK] = ACTIONS(5175), - [anon_sym_LBRACK_CARET] = ACTIONS(5175), - [sym_uri_autolink] = ACTIONS(5175), - [sym_email_autolink] = ACTIONS(5175), - [sym__whitespace_ge_2] = ACTIONS(5175), - [aux_sym__whitespace_token1] = ACTIONS(5177), - [sym__word_no_digit] = ACTIONS(5175), - [sym__digits] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5177), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5175), - [sym__code_span_start] = ACTIONS(5175), - [sym__emphasis_open_star] = ACTIONS(5175), - [sym__emphasis_open_underscore] = ACTIONS(5175), - [sym__emphasis_close_underscore] = ACTIONS(5175), - [sym__strikeout_open] = ACTIONS(5175), - [sym__latex_span_start] = ACTIONS(5175), - [sym__single_quote_open] = ACTIONS(5175), - [sym__double_quote_open] = ACTIONS(5175), - [sym__superscript_open] = ACTIONS(5175), - [sym__subscript_open] = ACTIONS(5175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5175), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5175), - [sym__cite_author_in_text] = ACTIONS(5175), - [sym__cite_suppress_author] = ACTIONS(5175), - [sym__shortcode_open_escaped] = ACTIONS(5175), - [sym__shortcode_open] = ACTIONS(5175), - [sym__unclosed_span] = ACTIONS(5175), - [sym__strong_emphasis_open_star] = ACTIONS(5175), - [sym__strong_emphasis_open_underscore] = ACTIONS(5175), + [ts_builtin_sym_end] = ACTIONS(4499), + [sym__backslash_escape] = ACTIONS(4499), + [sym_entity_reference] = ACTIONS(4499), + [sym_numeric_character_reference] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4501), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_BSLASH] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_PIPE] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [sym__newline_token] = ACTIONS(4499), + [aux_sym_insert_token1] = ACTIONS(4499), + [aux_sym_delete_token1] = ACTIONS(4499), + [aux_sym_highlight_token1] = ACTIONS(4499), + [aux_sym_edit_comment_token1] = ACTIONS(4499), + [anon_sym_CARET_LBRACK] = ACTIONS(4499), + [anon_sym_LBRACK_CARET] = ACTIONS(4499), + [sym_uri_autolink] = ACTIONS(4499), + [sym_email_autolink] = ACTIONS(4499), + [sym__whitespace_ge_2] = ACTIONS(4499), + [aux_sym__whitespace_token1] = ACTIONS(4501), + [sym__word_no_digit] = ACTIONS(4499), + [sym__digits] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4499), + [sym__code_span_start] = ACTIONS(4499), + [sym__emphasis_open_star] = ACTIONS(4499), + [sym__emphasis_open_underscore] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4499), + [sym__latex_span_start] = ACTIONS(4499), + [sym__single_quote_open] = ACTIONS(4499), + [sym__double_quote_open] = ACTIONS(4499), + [sym__superscript_open] = ACTIONS(4499), + [sym__subscript_open] = ACTIONS(4499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4499), + [sym__cite_author_in_text] = ACTIONS(4499), + [sym__cite_suppress_author] = ACTIONS(4499), + [sym__shortcode_open_escaped] = ACTIONS(4499), + [sym__shortcode_open] = ACTIONS(4499), + [sym__unclosed_span] = ACTIONS(4499), + [sym__strong_emphasis_open_star] = ACTIONS(4499), + [sym__strong_emphasis_open_underscore] = ACTIONS(4499), }, [STATE(1524)] = { - [sym__backslash_escape] = ACTIONS(4939), - [sym_entity_reference] = ACTIONS(4939), - [sym_numeric_character_reference] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_POUND] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4939), - [anon_sym_PERCENT] = ACTIONS(4939), - [anon_sym_AMP] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4939), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_DOT] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4939), - [anon_sym_COLON] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_QMARK] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4941), - [anon_sym_BSLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [sym__newline_token] = ACTIONS(4939), - [aux_sym_insert_token1] = ACTIONS(4939), - [aux_sym_delete_token1] = ACTIONS(4939), - [aux_sym_highlight_token1] = ACTIONS(4939), - [aux_sym_edit_comment_token1] = ACTIONS(4939), - [anon_sym_CARET_LBRACK] = ACTIONS(4939), - [anon_sym_LBRACK_CARET] = ACTIONS(4939), - [sym_uri_autolink] = ACTIONS(4939), - [sym_email_autolink] = ACTIONS(4939), - [sym__whitespace_ge_2] = ACTIONS(4939), - [aux_sym__whitespace_token1] = ACTIONS(4941), - [sym__word_no_digit] = ACTIONS(4939), - [sym__digits] = ACTIONS(4939), - [anon_sym_DASH_DASH] = ACTIONS(4941), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4939), - [sym__code_span_start] = ACTIONS(4939), - [sym__emphasis_open_star] = ACTIONS(4939), - [sym__emphasis_open_underscore] = ACTIONS(4939), - [sym__strikeout_open] = ACTIONS(4939), - [sym__strikeout_close] = ACTIONS(4939), - [sym__latex_span_start] = ACTIONS(4939), - [sym__single_quote_open] = ACTIONS(4939), - [sym__double_quote_open] = ACTIONS(4939), - [sym__superscript_open] = ACTIONS(4939), - [sym__subscript_open] = ACTIONS(4939), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4939), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4939), - [sym__cite_author_in_text] = ACTIONS(4939), - [sym__cite_suppress_author] = ACTIONS(4939), - [sym__shortcode_open_escaped] = ACTIONS(4939), - [sym__shortcode_open] = ACTIONS(4939), - [sym__unclosed_span] = ACTIONS(4939), - [sym__strong_emphasis_open_star] = ACTIONS(4939), - [sym__strong_emphasis_open_underscore] = ACTIONS(4939), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__strikeout_close] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(1525)] = { - [ts_builtin_sym_end] = ACTIONS(5075), - [sym__backslash_escape] = ACTIONS(5075), - [sym_entity_reference] = ACTIONS(5075), - [sym_numeric_character_reference] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_QMARK] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_BSLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [sym__newline_token] = ACTIONS(5075), - [aux_sym_insert_token1] = ACTIONS(5075), - [aux_sym_delete_token1] = ACTIONS(5075), - [aux_sym_highlight_token1] = ACTIONS(5075), - [aux_sym_edit_comment_token1] = ACTIONS(5075), - [anon_sym_CARET_LBRACK] = ACTIONS(5075), - [anon_sym_LBRACK_CARET] = ACTIONS(5075), - [sym_uri_autolink] = ACTIONS(5075), - [sym_email_autolink] = ACTIONS(5075), - [sym__whitespace_ge_2] = ACTIONS(5075), - [aux_sym__whitespace_token1] = ACTIONS(5077), - [sym__word_no_digit] = ACTIONS(5075), - [sym__digits] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5075), - [sym__code_span_start] = ACTIONS(5075), - [sym__emphasis_open_star] = ACTIONS(5075), - [sym__emphasis_open_underscore] = ACTIONS(5075), - [sym__strikeout_open] = ACTIONS(5075), - [sym__latex_span_start] = ACTIONS(5075), - [sym__single_quote_open] = ACTIONS(5075), - [sym__double_quote_open] = ACTIONS(5075), - [sym__superscript_open] = ACTIONS(5075), - [sym__subscript_open] = ACTIONS(5075), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5075), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5075), - [sym__cite_author_in_text] = ACTIONS(5075), - [sym__cite_suppress_author] = ACTIONS(5075), - [sym__shortcode_open_escaped] = ACTIONS(5075), - [sym__shortcode_open] = ACTIONS(5075), - [sym__unclosed_span] = ACTIONS(5075), - [sym__strong_emphasis_open_star] = ACTIONS(5075), - [sym__strong_emphasis_open_underscore] = ACTIONS(5075), + [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(1526)] = { - [ts_builtin_sym_end] = ACTIONS(5079), - [sym__backslash_escape] = ACTIONS(5079), - [sym_entity_reference] = ACTIONS(5079), - [sym_numeric_character_reference] = ACTIONS(5079), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_DQUOTE] = ACTIONS(5079), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_QMARK] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BSLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5079), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [sym__newline_token] = ACTIONS(5079), - [aux_sym_insert_token1] = ACTIONS(5079), - [aux_sym_delete_token1] = ACTIONS(5079), - [aux_sym_highlight_token1] = ACTIONS(5079), - [aux_sym_edit_comment_token1] = ACTIONS(5079), - [anon_sym_CARET_LBRACK] = ACTIONS(5079), - [anon_sym_LBRACK_CARET] = ACTIONS(5079), - [sym_uri_autolink] = ACTIONS(5079), - [sym_email_autolink] = ACTIONS(5079), - [sym__whitespace_ge_2] = ACTIONS(5079), - [aux_sym__whitespace_token1] = ACTIONS(5081), - [sym__word_no_digit] = ACTIONS(5079), - [sym__digits] = ACTIONS(5079), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5079), - [sym__code_span_start] = ACTIONS(5079), - [sym__emphasis_open_star] = ACTIONS(5079), - [sym__emphasis_open_underscore] = ACTIONS(5079), - [sym__strikeout_open] = ACTIONS(5079), - [sym__latex_span_start] = ACTIONS(5079), - [sym__single_quote_open] = ACTIONS(5079), - [sym__double_quote_open] = ACTIONS(5079), - [sym__superscript_open] = ACTIONS(5079), - [sym__subscript_open] = ACTIONS(5079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5079), - [sym__cite_author_in_text] = ACTIONS(5079), - [sym__cite_suppress_author] = ACTIONS(5079), - [sym__shortcode_open_escaped] = ACTIONS(5079), - [sym__shortcode_open] = ACTIONS(5079), - [sym__unclosed_span] = ACTIONS(5079), - [sym__strong_emphasis_open_star] = ACTIONS(5079), - [sym__strong_emphasis_open_underscore] = ACTIONS(5079), + [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__strikeout_close] = 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(1527)] = { - [ts_builtin_sym_end] = ACTIONS(5083), - [sym__backslash_escape] = ACTIONS(5083), - [sym_entity_reference] = ACTIONS(5083), - [sym_numeric_character_reference] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOT] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_QMARK] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_BSLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym_BQUOTE] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [sym__newline_token] = ACTIONS(5083), - [aux_sym_insert_token1] = ACTIONS(5083), - [aux_sym_delete_token1] = ACTIONS(5083), - [aux_sym_highlight_token1] = ACTIONS(5083), - [aux_sym_edit_comment_token1] = ACTIONS(5083), - [anon_sym_CARET_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_CARET] = ACTIONS(5083), - [sym_uri_autolink] = ACTIONS(5083), - [sym_email_autolink] = ACTIONS(5083), - [sym__whitespace_ge_2] = ACTIONS(5083), - [aux_sym__whitespace_token1] = ACTIONS(5085), - [sym__word_no_digit] = ACTIONS(5083), - [sym__digits] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5083), - [sym__code_span_start] = ACTIONS(5083), - [sym__emphasis_open_star] = ACTIONS(5083), - [sym__emphasis_open_underscore] = ACTIONS(5083), - [sym__strikeout_open] = ACTIONS(5083), - [sym__latex_span_start] = ACTIONS(5083), - [sym__single_quote_open] = ACTIONS(5083), - [sym__double_quote_open] = ACTIONS(5083), - [sym__superscript_open] = ACTIONS(5083), - [sym__subscript_open] = ACTIONS(5083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5083), - [sym__cite_author_in_text] = ACTIONS(5083), - [sym__cite_suppress_author] = ACTIONS(5083), - [sym__shortcode_open_escaped] = ACTIONS(5083), - [sym__shortcode_open] = ACTIONS(5083), - [sym__unclosed_span] = ACTIONS(5083), - [sym__strong_emphasis_open_star] = ACTIONS(5083), - [sym__strong_emphasis_open_underscore] = ACTIONS(5083), + [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__strikeout_open] = ACTIONS(4539), + [sym__strikeout_close] = 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(1528)] = { - [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_STAR] = 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__strikeout_close] = 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), + [sym__backslash_escape] = ACTIONS(4503), + [sym_entity_reference] = ACTIONS(4503), + [sym_numeric_character_reference] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_BQUOTE] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_PIPE] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [sym__newline_token] = ACTIONS(4503), + [aux_sym_insert_token1] = ACTIONS(4503), + [aux_sym_delete_token1] = ACTIONS(4503), + [aux_sym_highlight_token1] = ACTIONS(4503), + [aux_sym_edit_comment_token1] = ACTIONS(4503), + [anon_sym_CARET_LBRACK] = ACTIONS(4503), + [anon_sym_LBRACK_CARET] = ACTIONS(4503), + [sym_uri_autolink] = ACTIONS(4503), + [sym_email_autolink] = ACTIONS(4503), + [sym__whitespace_ge_2] = ACTIONS(4503), + [aux_sym__whitespace_token1] = ACTIONS(4505), + [sym__word_no_digit] = ACTIONS(4503), + [sym__digits] = ACTIONS(4503), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4503), + [sym__code_span_start] = ACTIONS(4503), + [sym__emphasis_open_star] = ACTIONS(4503), + [sym__emphasis_open_underscore] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4503), + [sym__strikeout_close] = ACTIONS(4503), + [sym__latex_span_start] = ACTIONS(4503), + [sym__single_quote_open] = ACTIONS(4503), + [sym__double_quote_open] = ACTIONS(4503), + [sym__superscript_open] = ACTIONS(4503), + [sym__subscript_open] = ACTIONS(4503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4503), + [sym__cite_author_in_text] = ACTIONS(4503), + [sym__cite_suppress_author] = ACTIONS(4503), + [sym__shortcode_open_escaped] = ACTIONS(4503), + [sym__shortcode_open] = ACTIONS(4503), + [sym__unclosed_span] = ACTIONS(4503), + [sym__strong_emphasis_open_star] = ACTIONS(4503), + [sym__strong_emphasis_open_underscore] = ACTIONS(4503), }, [STATE(1529)] = { - [ts_builtin_sym_end] = ACTIONS(5087), - [sym__backslash_escape] = ACTIONS(5087), - [sym_entity_reference] = ACTIONS(5087), - [sym_numeric_character_reference] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_DQUOTE] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_AMP] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_QMARK] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym_BQUOTE] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_PIPE] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [sym__newline_token] = ACTIONS(5087), - [aux_sym_insert_token1] = ACTIONS(5087), - [aux_sym_delete_token1] = ACTIONS(5087), - [aux_sym_highlight_token1] = ACTIONS(5087), - [aux_sym_edit_comment_token1] = ACTIONS(5087), - [anon_sym_CARET_LBRACK] = ACTIONS(5087), - [anon_sym_LBRACK_CARET] = ACTIONS(5087), - [sym_uri_autolink] = ACTIONS(5087), - [sym_email_autolink] = ACTIONS(5087), - [sym__whitespace_ge_2] = ACTIONS(5087), - [aux_sym__whitespace_token1] = ACTIONS(5089), - [sym__word_no_digit] = ACTIONS(5087), - [sym__digits] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5087), - [sym__code_span_start] = ACTIONS(5087), - [sym__emphasis_open_star] = ACTIONS(5087), - [sym__emphasis_open_underscore] = ACTIONS(5087), - [sym__strikeout_open] = ACTIONS(5087), - [sym__latex_span_start] = ACTIONS(5087), - [sym__single_quote_open] = ACTIONS(5087), - [sym__double_quote_open] = ACTIONS(5087), - [sym__superscript_open] = ACTIONS(5087), - [sym__subscript_open] = ACTIONS(5087), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5087), - [sym__cite_author_in_text] = ACTIONS(5087), - [sym__cite_suppress_author] = ACTIONS(5087), - [sym__shortcode_open_escaped] = ACTIONS(5087), - [sym__shortcode_open] = ACTIONS(5087), - [sym__unclosed_span] = ACTIONS(5087), - [sym__strong_emphasis_open_star] = ACTIONS(5087), - [sym__strong_emphasis_open_underscore] = ACTIONS(5087), + [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(4251), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(1530)] = { - [ts_builtin_sym_end] = ACTIONS(4947), - [sym__backslash_escape] = ACTIONS(4947), - [sym_entity_reference] = ACTIONS(4947), - [sym_numeric_character_reference] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_DQUOTE] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [sym__newline_token] = ACTIONS(4947), - [aux_sym_insert_token1] = ACTIONS(4947), - [aux_sym_delete_token1] = ACTIONS(4947), - [aux_sym_highlight_token1] = ACTIONS(4947), - [aux_sym_edit_comment_token1] = ACTIONS(4947), - [anon_sym_CARET_LBRACK] = ACTIONS(4947), - [anon_sym_LBRACK_CARET] = ACTIONS(4947), - [sym_uri_autolink] = ACTIONS(4947), - [sym_email_autolink] = ACTIONS(4947), - [sym__whitespace_ge_2] = ACTIONS(4947), - [aux_sym__whitespace_token1] = ACTIONS(4949), - [sym__word_no_digit] = ACTIONS(4947), - [sym__digits] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4947), - [sym__code_span_start] = ACTIONS(4947), - [sym__emphasis_open_star] = ACTIONS(4947), - [sym__emphasis_open_underscore] = ACTIONS(4947), - [sym__strikeout_open] = ACTIONS(4947), - [sym__latex_span_start] = ACTIONS(4947), - [sym__single_quote_open] = ACTIONS(4947), - [sym__double_quote_open] = ACTIONS(4947), - [sym__superscript_open] = ACTIONS(4947), - [sym__subscript_open] = ACTIONS(4947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4947), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4947), - [sym__cite_author_in_text] = ACTIONS(4947), - [sym__cite_suppress_author] = ACTIONS(4947), - [sym__shortcode_open_escaped] = ACTIONS(4947), - [sym__shortcode_open] = ACTIONS(4947), - [sym__unclosed_span] = ACTIONS(4947), - [sym__strong_emphasis_open_star] = ACTIONS(4947), - [sym__strong_emphasis_open_underscore] = ACTIONS(4947), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__strikeout_close] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(1531)] = { - [sym__backslash_escape] = ACTIONS(4943), - [sym_entity_reference] = ACTIONS(4943), - [sym_numeric_character_reference] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [sym__newline_token] = ACTIONS(4943), - [aux_sym_insert_token1] = ACTIONS(4943), - [aux_sym_delete_token1] = ACTIONS(4943), - [aux_sym_highlight_token1] = ACTIONS(4943), - [aux_sym_edit_comment_token1] = ACTIONS(4943), - [anon_sym_CARET_LBRACK] = ACTIONS(4943), - [anon_sym_LBRACK_CARET] = ACTIONS(4943), - [sym_uri_autolink] = ACTIONS(4943), - [sym_email_autolink] = ACTIONS(4943), - [sym__whitespace_ge_2] = ACTIONS(4943), - [aux_sym__whitespace_token1] = ACTIONS(4945), - [sym__word_no_digit] = ACTIONS(4943), - [sym__digits] = ACTIONS(4943), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4943), - [sym__code_span_start] = ACTIONS(4943), - [sym__emphasis_open_star] = ACTIONS(4943), - [sym__emphasis_open_underscore] = ACTIONS(4943), - [sym__strikeout_open] = ACTIONS(4943), - [sym__strikeout_close] = ACTIONS(4943), - [sym__latex_span_start] = ACTIONS(4943), - [sym__single_quote_open] = ACTIONS(4943), - [sym__double_quote_open] = ACTIONS(4943), - [sym__superscript_open] = ACTIONS(4943), - [sym__subscript_open] = ACTIONS(4943), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4943), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4943), - [sym__cite_author_in_text] = ACTIONS(4943), - [sym__cite_suppress_author] = ACTIONS(4943), - [sym__shortcode_open_escaped] = ACTIONS(4943), - [sym__shortcode_open] = ACTIONS(4943), - [sym__unclosed_span] = ACTIONS(4943), - [sym__strong_emphasis_open_star] = ACTIONS(4943), - [sym__strong_emphasis_open_underscore] = ACTIONS(4943), + [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__strikeout_close] = 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(1532)] = { - [sym__backslash_escape] = ACTIONS(4947), - [sym_entity_reference] = ACTIONS(4947), - [sym_numeric_character_reference] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_DQUOTE] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [sym__newline_token] = ACTIONS(4947), - [aux_sym_insert_token1] = ACTIONS(4947), - [aux_sym_delete_token1] = ACTIONS(4947), - [aux_sym_highlight_token1] = ACTIONS(4947), - [aux_sym_edit_comment_token1] = ACTIONS(4947), - [anon_sym_CARET_LBRACK] = ACTIONS(4947), - [anon_sym_LBRACK_CARET] = ACTIONS(4947), - [sym_uri_autolink] = ACTIONS(4947), - [sym_email_autolink] = ACTIONS(4947), - [sym__whitespace_ge_2] = ACTIONS(4947), - [aux_sym__whitespace_token1] = ACTIONS(4949), - [sym__word_no_digit] = ACTIONS(4947), - [sym__digits] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4947), - [sym__code_span_start] = ACTIONS(4947), - [sym__emphasis_open_star] = ACTIONS(4947), - [sym__emphasis_open_underscore] = ACTIONS(4947), - [sym__strikeout_open] = ACTIONS(4947), - [sym__strikeout_close] = ACTIONS(4947), - [sym__latex_span_start] = ACTIONS(4947), - [sym__single_quote_open] = ACTIONS(4947), - [sym__double_quote_open] = ACTIONS(4947), - [sym__superscript_open] = ACTIONS(4947), - [sym__subscript_open] = ACTIONS(4947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4947), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4947), - [sym__cite_author_in_text] = ACTIONS(4947), - [sym__cite_suppress_author] = ACTIONS(4947), - [sym__shortcode_open_escaped] = ACTIONS(4947), - [sym__shortcode_open] = ACTIONS(4947), - [sym__unclosed_span] = ACTIONS(4947), - [sym__strong_emphasis_open_star] = ACTIONS(4947), - [sym__strong_emphasis_open_underscore] = ACTIONS(4947), + [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__strikeout_close] = 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(1533)] = { - [ts_builtin_sym_end] = ACTIONS(4963), - [sym__backslash_escape] = ACTIONS(4963), - [sym_entity_reference] = ACTIONS(4963), - [sym_numeric_character_reference] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_DQUOTE] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4963), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_RPAREN] = ACTIONS(4963), - [sym__newline_token] = ACTIONS(4963), - [aux_sym_insert_token1] = ACTIONS(4963), - [aux_sym_delete_token1] = ACTIONS(4963), - [aux_sym_highlight_token1] = ACTIONS(4963), - [aux_sym_edit_comment_token1] = ACTIONS(4963), - [anon_sym_CARET_LBRACK] = ACTIONS(4963), - [anon_sym_LBRACK_CARET] = ACTIONS(4963), - [sym_uri_autolink] = ACTIONS(4963), - [sym_email_autolink] = ACTIONS(4963), - [sym__whitespace_ge_2] = ACTIONS(4963), - [aux_sym__whitespace_token1] = ACTIONS(4965), - [sym__word_no_digit] = ACTIONS(4963), - [sym__digits] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4963), - [sym__code_span_start] = ACTIONS(4963), - [sym__emphasis_open_star] = ACTIONS(4963), - [sym__emphasis_open_underscore] = ACTIONS(4963), - [sym__strikeout_open] = ACTIONS(4963), - [sym__latex_span_start] = ACTIONS(4963), - [sym__single_quote_open] = ACTIONS(4963), - [sym__double_quote_open] = ACTIONS(4963), - [sym__superscript_open] = ACTIONS(4963), - [sym__subscript_open] = ACTIONS(4963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4963), - [sym__cite_author_in_text] = ACTIONS(4963), - [sym__cite_suppress_author] = ACTIONS(4963), - [sym__shortcode_open_escaped] = ACTIONS(4963), - [sym__shortcode_open] = ACTIONS(4963), - [sym__unclosed_span] = ACTIONS(4963), - [sym__strong_emphasis_open_star] = ACTIONS(4963), - [sym__strong_emphasis_open_underscore] = ACTIONS(4963), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__strikeout_close] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(1534)] = { - [ts_builtin_sym_end] = ACTIONS(4797), - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__strikeout_close] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(1535)] = { - [sym__backslash_escape] = ACTIONS(4951), - [sym_entity_reference] = ACTIONS(4951), - [sym_numeric_character_reference] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [sym__newline_token] = ACTIONS(4951), - [aux_sym_insert_token1] = ACTIONS(4951), - [aux_sym_delete_token1] = ACTIONS(4951), - [aux_sym_highlight_token1] = ACTIONS(4951), - [aux_sym_edit_comment_token1] = ACTIONS(4951), - [anon_sym_CARET_LBRACK] = ACTIONS(4951), - [anon_sym_LBRACK_CARET] = ACTIONS(4951), - [sym_uri_autolink] = ACTIONS(4951), - [sym_email_autolink] = ACTIONS(4951), - [sym__whitespace_ge_2] = ACTIONS(4951), - [aux_sym__whitespace_token1] = ACTIONS(4953), - [sym__word_no_digit] = ACTIONS(4951), - [sym__digits] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4951), - [sym__code_span_start] = ACTIONS(4951), - [sym__emphasis_open_star] = ACTIONS(4951), - [sym__emphasis_open_underscore] = ACTIONS(4951), - [sym__strikeout_open] = ACTIONS(4951), - [sym__strikeout_close] = ACTIONS(4951), - [sym__latex_span_start] = ACTIONS(4951), - [sym__single_quote_open] = ACTIONS(4951), - [sym__double_quote_open] = ACTIONS(4951), - [sym__superscript_open] = ACTIONS(4951), - [sym__subscript_open] = ACTIONS(4951), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4951), - [sym__cite_author_in_text] = ACTIONS(4951), - [sym__cite_suppress_author] = ACTIONS(4951), - [sym__shortcode_open_escaped] = ACTIONS(4951), - [sym__shortcode_open] = ACTIONS(4951), - [sym__unclosed_span] = ACTIONS(4951), - [sym__strong_emphasis_open_star] = ACTIONS(4951), - [sym__strong_emphasis_open_underscore] = ACTIONS(4951), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__strikeout_close] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(1536)] = { - [sym__backslash_escape] = ACTIONS(4955), - [sym_entity_reference] = ACTIONS(4955), - [sym_numeric_character_reference] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_DQUOTE] = ACTIONS(4955), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4957), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [sym__newline_token] = ACTIONS(4955), - [aux_sym_insert_token1] = ACTIONS(4955), - [aux_sym_delete_token1] = ACTIONS(4955), - [aux_sym_highlight_token1] = ACTIONS(4955), - [aux_sym_edit_comment_token1] = ACTIONS(4955), - [anon_sym_CARET_LBRACK] = ACTIONS(4955), - [anon_sym_LBRACK_CARET] = ACTIONS(4955), - [sym_uri_autolink] = ACTIONS(4955), - [sym_email_autolink] = ACTIONS(4955), - [sym__whitespace_ge_2] = ACTIONS(4955), - [aux_sym__whitespace_token1] = ACTIONS(4957), - [sym__word_no_digit] = ACTIONS(4955), - [sym__digits] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4955), - [sym__code_span_start] = ACTIONS(4955), - [sym__emphasis_open_star] = ACTIONS(4955), - [sym__emphasis_open_underscore] = ACTIONS(4955), - [sym__strikeout_open] = ACTIONS(4955), - [sym__strikeout_close] = ACTIONS(4955), - [sym__latex_span_start] = ACTIONS(4955), - [sym__single_quote_open] = ACTIONS(4955), - [sym__double_quote_open] = ACTIONS(4955), - [sym__superscript_open] = ACTIONS(4955), - [sym__subscript_open] = ACTIONS(4955), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4955), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4955), - [sym__cite_author_in_text] = ACTIONS(4955), - [sym__cite_suppress_author] = ACTIONS(4955), - [sym__shortcode_open_escaped] = ACTIONS(4955), - [sym__shortcode_open] = ACTIONS(4955), - [sym__unclosed_span] = ACTIONS(4955), - [sym__strong_emphasis_open_star] = ACTIONS(4955), - [sym__strong_emphasis_open_underscore] = ACTIONS(4955), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__strikeout_close] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(1537)] = { - [sym__backslash_escape] = ACTIONS(4959), - [sym_entity_reference] = ACTIONS(4959), - [sym_numeric_character_reference] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_DQUOTE] = ACTIONS(4959), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4961), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_TILDE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4959), - [sym__newline_token] = ACTIONS(4959), - [aux_sym_insert_token1] = ACTIONS(4959), - [aux_sym_delete_token1] = ACTIONS(4959), - [aux_sym_highlight_token1] = ACTIONS(4959), - [aux_sym_edit_comment_token1] = ACTIONS(4959), - [anon_sym_CARET_LBRACK] = ACTIONS(4959), - [anon_sym_LBRACK_CARET] = ACTIONS(4959), - [sym_uri_autolink] = ACTIONS(4959), - [sym_email_autolink] = ACTIONS(4959), - [sym__whitespace_ge_2] = ACTIONS(4959), - [aux_sym__whitespace_token1] = ACTIONS(4961), - [sym__word_no_digit] = ACTIONS(4959), - [sym__digits] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4959), - [sym__code_span_start] = ACTIONS(4959), - [sym__emphasis_open_star] = ACTIONS(4959), - [sym__emphasis_open_underscore] = ACTIONS(4959), - [sym__strikeout_open] = ACTIONS(4959), - [sym__strikeout_close] = ACTIONS(4959), - [sym__latex_span_start] = ACTIONS(4959), - [sym__single_quote_open] = ACTIONS(4959), - [sym__double_quote_open] = ACTIONS(4959), - [sym__superscript_open] = ACTIONS(4959), - [sym__subscript_open] = ACTIONS(4959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4959), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4959), - [sym__cite_author_in_text] = ACTIONS(4959), - [sym__cite_suppress_author] = ACTIONS(4959), - [sym__shortcode_open_escaped] = ACTIONS(4959), - [sym__shortcode_open] = ACTIONS(4959), - [sym__unclosed_span] = ACTIONS(4959), - [sym__strong_emphasis_open_star] = ACTIONS(4959), - [sym__strong_emphasis_open_underscore] = ACTIONS(4959), + [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__strikeout_close] = 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(1538)] = { - [sym__backslash_escape] = ACTIONS(4963), - [sym_entity_reference] = ACTIONS(4963), - [sym_numeric_character_reference] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_DQUOTE] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4963), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_RPAREN] = ACTIONS(4963), - [sym__newline_token] = ACTIONS(4963), - [aux_sym_insert_token1] = ACTIONS(4963), - [aux_sym_delete_token1] = ACTIONS(4963), - [aux_sym_highlight_token1] = ACTIONS(4963), - [aux_sym_edit_comment_token1] = ACTIONS(4963), - [anon_sym_CARET_LBRACK] = ACTIONS(4963), - [anon_sym_LBRACK_CARET] = ACTIONS(4963), - [sym_uri_autolink] = ACTIONS(4963), - [sym_email_autolink] = ACTIONS(4963), - [sym__whitespace_ge_2] = ACTIONS(4963), - [aux_sym__whitespace_token1] = ACTIONS(4965), - [sym__word_no_digit] = ACTIONS(4963), - [sym__digits] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4963), - [sym__code_span_start] = ACTIONS(4963), - [sym__emphasis_open_star] = ACTIONS(4963), - [sym__emphasis_open_underscore] = ACTIONS(4963), - [sym__strikeout_open] = ACTIONS(4963), - [sym__strikeout_close] = ACTIONS(4963), - [sym__latex_span_start] = ACTIONS(4963), - [sym__single_quote_open] = ACTIONS(4963), - [sym__double_quote_open] = ACTIONS(4963), - [sym__superscript_open] = ACTIONS(4963), - [sym__subscript_open] = ACTIONS(4963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4963), - [sym__cite_author_in_text] = ACTIONS(4963), - [sym__cite_suppress_author] = ACTIONS(4963), - [sym__shortcode_open_escaped] = ACTIONS(4963), - [sym__shortcode_open] = ACTIONS(4963), - [sym__unclosed_span] = ACTIONS(4963), - [sym__strong_emphasis_open_star] = ACTIONS(4963), - [sym__strong_emphasis_open_underscore] = ACTIONS(4963), + [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__strikeout_open] = ACTIONS(4559), + [sym__strikeout_close] = 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(1539)] = { - [sym__backslash_escape] = ACTIONS(4967), - [sym_entity_reference] = ACTIONS(4967), - [sym_numeric_character_reference] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_BQUOTE] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [sym__newline_token] = ACTIONS(4967), - [aux_sym_insert_token1] = ACTIONS(4967), - [aux_sym_delete_token1] = ACTIONS(4967), - [aux_sym_highlight_token1] = ACTIONS(4967), - [aux_sym_edit_comment_token1] = ACTIONS(4967), - [anon_sym_CARET_LBRACK] = ACTIONS(4967), - [anon_sym_LBRACK_CARET] = ACTIONS(4967), - [sym_uri_autolink] = ACTIONS(4967), - [sym_email_autolink] = ACTIONS(4967), - [sym__whitespace_ge_2] = ACTIONS(4967), - [aux_sym__whitespace_token1] = ACTIONS(4969), - [sym__word_no_digit] = ACTIONS(4967), - [sym__digits] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [sym__code_span_start] = ACTIONS(4967), - [sym__emphasis_open_star] = ACTIONS(4967), - [sym__emphasis_open_underscore] = ACTIONS(4967), - [sym__strikeout_open] = ACTIONS(4967), - [sym__strikeout_close] = ACTIONS(4967), - [sym__latex_span_start] = ACTIONS(4967), - [sym__single_quote_open] = ACTIONS(4967), - [sym__double_quote_open] = ACTIONS(4967), - [sym__superscript_open] = ACTIONS(4967), - [sym__subscript_open] = ACTIONS(4967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4967), - [sym__cite_author_in_text] = ACTIONS(4967), - [sym__cite_suppress_author] = ACTIONS(4967), - [sym__shortcode_open_escaped] = ACTIONS(4967), - [sym__shortcode_open] = ACTIONS(4967), - [sym__unclosed_span] = ACTIONS(4967), - [sym__strong_emphasis_open_star] = ACTIONS(4967), - [sym__strong_emphasis_open_underscore] = ACTIONS(4967), + [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__superscript_close] = 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(1540)] = { - [sym__backslash_escape] = ACTIONS(4971), - [sym_entity_reference] = ACTIONS(4971), - [sym_numeric_character_reference] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym_BQUOTE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [sym__newline_token] = ACTIONS(4971), - [aux_sym_insert_token1] = ACTIONS(4971), - [aux_sym_delete_token1] = ACTIONS(4971), - [aux_sym_highlight_token1] = ACTIONS(4971), - [aux_sym_edit_comment_token1] = ACTIONS(4971), - [anon_sym_CARET_LBRACK] = ACTIONS(4971), - [anon_sym_LBRACK_CARET] = ACTIONS(4971), - [sym_uri_autolink] = ACTIONS(4971), - [sym_email_autolink] = ACTIONS(4971), - [sym__whitespace_ge_2] = ACTIONS(4971), - [aux_sym__whitespace_token1] = ACTIONS(4973), - [sym__word_no_digit] = ACTIONS(4971), - [sym__digits] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4971), - [sym__code_span_start] = ACTIONS(4971), - [sym__emphasis_open_star] = ACTIONS(4971), - [sym__emphasis_open_underscore] = ACTIONS(4971), - [sym__strikeout_open] = ACTIONS(4971), - [sym__strikeout_close] = ACTIONS(4971), - [sym__latex_span_start] = ACTIONS(4971), - [sym__single_quote_open] = ACTIONS(4971), - [sym__double_quote_open] = ACTIONS(4971), - [sym__superscript_open] = ACTIONS(4971), - [sym__subscript_open] = ACTIONS(4971), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4971), - [sym__cite_author_in_text] = ACTIONS(4971), - [sym__cite_suppress_author] = ACTIONS(4971), - [sym__shortcode_open_escaped] = ACTIONS(4971), - [sym__shortcode_open] = ACTIONS(4971), - [sym__unclosed_span] = ACTIONS(4971), - [sym__strong_emphasis_open_star] = ACTIONS(4971), - [sym__strong_emphasis_open_underscore] = ACTIONS(4971), + [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__double_quote_close] = 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(4975), - [sym_entity_reference] = ACTIONS(4975), - [sym_numeric_character_reference] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [sym__newline_token] = ACTIONS(4975), - [aux_sym_insert_token1] = ACTIONS(4975), - [aux_sym_delete_token1] = ACTIONS(4975), - [aux_sym_highlight_token1] = ACTIONS(4975), - [aux_sym_edit_comment_token1] = ACTIONS(4975), - [anon_sym_CARET_LBRACK] = ACTIONS(4975), - [anon_sym_LBRACK_CARET] = ACTIONS(4975), - [sym_uri_autolink] = ACTIONS(4975), - [sym_email_autolink] = ACTIONS(4975), - [sym__whitespace_ge_2] = ACTIONS(4975), - [aux_sym__whitespace_token1] = ACTIONS(4977), - [sym__word_no_digit] = ACTIONS(4975), - [sym__digits] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [sym__code_span_start] = ACTIONS(4975), - [sym__emphasis_open_star] = ACTIONS(4975), - [sym__emphasis_open_underscore] = ACTIONS(4975), - [sym__strikeout_open] = ACTIONS(4975), - [sym__strikeout_close] = ACTIONS(4975), - [sym__latex_span_start] = ACTIONS(4975), - [sym__single_quote_open] = ACTIONS(4975), - [sym__double_quote_open] = ACTIONS(4975), - [sym__superscript_open] = ACTIONS(4975), - [sym__subscript_open] = ACTIONS(4975), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4975), - [sym__cite_author_in_text] = ACTIONS(4975), - [sym__cite_suppress_author] = ACTIONS(4975), - [sym__shortcode_open_escaped] = ACTIONS(4975), - [sym__shortcode_open] = ACTIONS(4975), - [sym__unclosed_span] = ACTIONS(4975), - [sym__strong_emphasis_open_star] = ACTIONS(4975), - [sym__strong_emphasis_open_underscore] = ACTIONS(4975), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__superscript_close] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(1542)] = { - [sym__backslash_escape] = ACTIONS(4979), - [sym_entity_reference] = ACTIONS(4979), - [sym_numeric_character_reference] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_COLON] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), - [sym__newline_token] = ACTIONS(4979), - [aux_sym_insert_token1] = ACTIONS(4979), - [aux_sym_delete_token1] = ACTIONS(4979), - [aux_sym_highlight_token1] = ACTIONS(4979), - [aux_sym_edit_comment_token1] = ACTIONS(4979), - [anon_sym_CARET_LBRACK] = ACTIONS(4979), - [anon_sym_LBRACK_CARET] = ACTIONS(4979), - [sym_uri_autolink] = ACTIONS(4979), - [sym_email_autolink] = ACTIONS(4979), - [sym__whitespace_ge_2] = ACTIONS(4979), - [aux_sym__whitespace_token1] = ACTIONS(4981), - [sym__word_no_digit] = ACTIONS(4979), - [sym__digits] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4979), - [sym__code_span_start] = ACTIONS(4979), - [sym__emphasis_open_star] = ACTIONS(4979), - [sym__emphasis_open_underscore] = ACTIONS(4979), - [sym__strikeout_open] = ACTIONS(4979), - [sym__strikeout_close] = ACTIONS(4979), - [sym__latex_span_start] = ACTIONS(4979), - [sym__single_quote_open] = ACTIONS(4979), - [sym__double_quote_open] = ACTIONS(4979), - [sym__superscript_open] = ACTIONS(4979), - [sym__subscript_open] = ACTIONS(4979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4979), - [sym__cite_author_in_text] = ACTIONS(4979), - [sym__cite_suppress_author] = ACTIONS(4979), - [sym__shortcode_open_escaped] = ACTIONS(4979), - [sym__shortcode_open] = ACTIONS(4979), - [sym__unclosed_span] = ACTIONS(4979), - [sym__strong_emphasis_open_star] = ACTIONS(4979), - [sym__strong_emphasis_open_underscore] = ACTIONS(4979), + [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__double_quote_close] = 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(1543)] = { - [ts_builtin_sym_end] = ACTIONS(5183), - [sym__backslash_escape] = ACTIONS(5183), - [sym_entity_reference] = ACTIONS(5183), - [sym_numeric_character_reference] = ACTIONS(5183), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5183), - [anon_sym_BANG] = ACTIONS(5183), - [anon_sym_DQUOTE] = ACTIONS(5183), - [anon_sym_POUND] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5183), - [anon_sym_PERCENT] = ACTIONS(5183), - [anon_sym_AMP] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5183), - [anon_sym_STAR] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_DOT] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5183), - [anon_sym_COLON] = ACTIONS(5183), - [anon_sym_SEMI] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_QMARK] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5185), - [anon_sym_BSLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym_BQUOTE] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [anon_sym_PIPE] = ACTIONS(5183), - [anon_sym_TILDE] = ACTIONS(5183), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [sym__newline_token] = ACTIONS(5183), - [aux_sym_insert_token1] = ACTIONS(5183), - [aux_sym_delete_token1] = ACTIONS(5183), - [aux_sym_highlight_token1] = ACTIONS(5183), - [aux_sym_edit_comment_token1] = ACTIONS(5183), - [anon_sym_CARET_LBRACK] = ACTIONS(5183), - [anon_sym_LBRACK_CARET] = ACTIONS(5183), - [sym_uri_autolink] = ACTIONS(5183), - [sym_email_autolink] = ACTIONS(5183), - [sym__whitespace_ge_2] = ACTIONS(5183), - [aux_sym__whitespace_token1] = ACTIONS(5185), - [sym__word_no_digit] = ACTIONS(5183), - [sym__digits] = ACTIONS(5183), - [anon_sym_DASH_DASH] = ACTIONS(5185), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5183), - [sym__code_span_start] = ACTIONS(5183), - [sym__emphasis_open_star] = ACTIONS(5183), - [sym__emphasis_open_underscore] = ACTIONS(5183), - [sym__strikeout_open] = ACTIONS(5183), - [sym__latex_span_start] = ACTIONS(5183), - [sym__single_quote_open] = ACTIONS(5183), - [sym__double_quote_open] = ACTIONS(5183), - [sym__superscript_open] = ACTIONS(5183), - [sym__subscript_open] = ACTIONS(5183), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5183), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5183), - [sym__cite_author_in_text] = ACTIONS(5183), - [sym__cite_suppress_author] = ACTIONS(5183), - [sym__shortcode_open_escaped] = ACTIONS(5183), - [sym__shortcode_open] = ACTIONS(5183), - [sym__unclosed_span] = ACTIONS(5183), - [sym__strong_emphasis_open_star] = ACTIONS(5183), - [sym__strong_emphasis_open_underscore] = ACTIONS(5183), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__single_quote_close] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(1544)] = { - [sym__backslash_escape] = ACTIONS(4983), - [sym_entity_reference] = ACTIONS(4983), - [sym_numeric_character_reference] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [sym__newline_token] = ACTIONS(4983), - [aux_sym_insert_token1] = ACTIONS(4983), - [aux_sym_delete_token1] = ACTIONS(4983), - [aux_sym_highlight_token1] = ACTIONS(4983), - [aux_sym_edit_comment_token1] = ACTIONS(4983), - [anon_sym_CARET_LBRACK] = ACTIONS(4983), - [anon_sym_LBRACK_CARET] = ACTIONS(4983), - [sym_uri_autolink] = ACTIONS(4983), - [sym_email_autolink] = ACTIONS(4983), - [sym__whitespace_ge_2] = ACTIONS(4983), - [aux_sym__whitespace_token1] = ACTIONS(4985), - [sym__word_no_digit] = ACTIONS(4983), - [sym__digits] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4983), - [sym__code_span_start] = ACTIONS(4983), - [sym__emphasis_open_star] = ACTIONS(4983), - [sym__emphasis_open_underscore] = ACTIONS(4983), - [sym__strikeout_open] = ACTIONS(4983), - [sym__strikeout_close] = ACTIONS(4983), - [sym__latex_span_start] = ACTIONS(4983), - [sym__single_quote_open] = ACTIONS(4983), - [sym__double_quote_open] = ACTIONS(4983), - [sym__superscript_open] = ACTIONS(4983), - [sym__subscript_open] = ACTIONS(4983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4983), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4983), - [sym__cite_author_in_text] = ACTIONS(4983), - [sym__cite_suppress_author] = ACTIONS(4983), - [sym__shortcode_open_escaped] = ACTIONS(4983), - [sym__shortcode_open] = ACTIONS(4983), - [sym__unclosed_span] = ACTIONS(4983), - [sym__strong_emphasis_open_star] = ACTIONS(4983), - [sym__strong_emphasis_open_underscore] = ACTIONS(4983), + [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(1545)] = { - [sym__backslash_escape] = ACTIONS(4987), - [sym_entity_reference] = ACTIONS(4987), - [sym_numeric_character_reference] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym__newline_token] = ACTIONS(4987), - [aux_sym_insert_token1] = ACTIONS(4987), - [aux_sym_delete_token1] = ACTIONS(4987), - [aux_sym_highlight_token1] = ACTIONS(4987), - [aux_sym_edit_comment_token1] = ACTIONS(4987), - [anon_sym_CARET_LBRACK] = ACTIONS(4987), - [anon_sym_LBRACK_CARET] = ACTIONS(4987), - [sym_uri_autolink] = ACTIONS(4987), - [sym_email_autolink] = ACTIONS(4987), - [sym__whitespace_ge_2] = ACTIONS(4987), - [aux_sym__whitespace_token1] = ACTIONS(4989), - [sym__word_no_digit] = ACTIONS(4987), - [sym__digits] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4987), - [sym__code_span_start] = ACTIONS(4987), - [sym__emphasis_open_star] = ACTIONS(4987), - [sym__emphasis_open_underscore] = ACTIONS(4987), - [sym__strikeout_open] = ACTIONS(4987), - [sym__strikeout_close] = ACTIONS(4987), - [sym__latex_span_start] = ACTIONS(4987), - [sym__single_quote_open] = ACTIONS(4987), - [sym__double_quote_open] = ACTIONS(4987), - [sym__superscript_open] = ACTIONS(4987), - [sym__subscript_open] = ACTIONS(4987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4987), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4987), - [sym__cite_author_in_text] = ACTIONS(4987), - [sym__cite_suppress_author] = ACTIONS(4987), - [sym__shortcode_open_escaped] = ACTIONS(4987), - [sym__shortcode_open] = ACTIONS(4987), - [sym__unclosed_span] = ACTIONS(4987), - [sym__strong_emphasis_open_star] = ACTIONS(4987), - [sym__strong_emphasis_open_underscore] = ACTIONS(4987), + [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__single_quote_close] = 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(1546)] = { - [sym__backslash_escape] = ACTIONS(5179), - [sym_entity_reference] = ACTIONS(5179), - [sym_numeric_character_reference] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_QMARK] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_BSLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [sym__newline_token] = ACTIONS(5179), - [aux_sym_insert_token1] = ACTIONS(5179), - [aux_sym_delete_token1] = ACTIONS(5179), - [aux_sym_highlight_token1] = ACTIONS(5179), - [aux_sym_edit_comment_token1] = ACTIONS(5179), - [anon_sym_CARET_LBRACK] = ACTIONS(5179), - [anon_sym_LBRACK_CARET] = ACTIONS(5179), - [sym_uri_autolink] = ACTIONS(5179), - [sym_email_autolink] = ACTIONS(5179), - [sym__whitespace_ge_2] = ACTIONS(5179), - [aux_sym__whitespace_token1] = ACTIONS(5181), - [sym__word_no_digit] = ACTIONS(5179), - [sym__digits] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5181), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5179), - [sym__code_span_start] = ACTIONS(5179), - [sym__emphasis_open_star] = ACTIONS(5179), - [sym__emphasis_open_underscore] = ACTIONS(5179), - [sym__emphasis_close_underscore] = ACTIONS(5179), - [sym__strikeout_open] = ACTIONS(5179), - [sym__latex_span_start] = ACTIONS(5179), - [sym__single_quote_open] = ACTIONS(5179), - [sym__double_quote_open] = ACTIONS(5179), - [sym__superscript_open] = ACTIONS(5179), - [sym__subscript_open] = ACTIONS(5179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5179), - [sym__cite_author_in_text] = ACTIONS(5179), - [sym__cite_suppress_author] = ACTIONS(5179), - [sym__shortcode_open_escaped] = ACTIONS(5179), - [sym__shortcode_open] = ACTIONS(5179), - [sym__unclosed_span] = ACTIONS(5179), - [sym__strong_emphasis_open_star] = ACTIONS(5179), - [sym__strong_emphasis_open_underscore] = ACTIONS(5179), + [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(1547)] = { - [sym__backslash_escape] = ACTIONS(4991), - [sym_entity_reference] = ACTIONS(4991), - [sym_numeric_character_reference] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH] = ACTIONS(4993), - [anon_sym_CARET] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym__newline_token] = ACTIONS(4991), - [aux_sym_insert_token1] = ACTIONS(4991), - [aux_sym_delete_token1] = ACTIONS(4991), - [aux_sym_highlight_token1] = ACTIONS(4991), - [aux_sym_edit_comment_token1] = ACTIONS(4991), - [anon_sym_CARET_LBRACK] = ACTIONS(4991), - [anon_sym_LBRACK_CARET] = ACTIONS(4991), - [sym_uri_autolink] = ACTIONS(4991), - [sym_email_autolink] = ACTIONS(4991), - [sym__whitespace_ge_2] = ACTIONS(4991), - [aux_sym__whitespace_token1] = ACTIONS(4993), - [sym__word_no_digit] = ACTIONS(4991), - [sym__digits] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), - [sym__code_span_start] = ACTIONS(4991), - [sym__emphasis_open_star] = ACTIONS(4991), - [sym__emphasis_open_underscore] = ACTIONS(4991), - [sym__strikeout_open] = ACTIONS(4991), - [sym__strikeout_close] = ACTIONS(4991), - [sym__latex_span_start] = ACTIONS(4991), - [sym__single_quote_open] = ACTIONS(4991), - [sym__double_quote_open] = ACTIONS(4991), - [sym__superscript_open] = ACTIONS(4991), - [sym__subscript_open] = ACTIONS(4991), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4991), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4991), - [sym__cite_author_in_text] = ACTIONS(4991), - [sym__cite_suppress_author] = ACTIONS(4991), - [sym__shortcode_open_escaped] = ACTIONS(4991), - [sym__shortcode_open] = ACTIONS(4991), - [sym__unclosed_span] = ACTIONS(4991), - [sym__strong_emphasis_open_star] = ACTIONS(4991), - [sym__strong_emphasis_open_underscore] = ACTIONS(4991), + [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__single_quote_close] = 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(1548)] = { - [sym__backslash_escape] = ACTIONS(4995), - [sym_entity_reference] = ACTIONS(4995), - [sym_numeric_character_reference] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym__newline_token] = ACTIONS(4995), - [aux_sym_insert_token1] = ACTIONS(4995), - [aux_sym_delete_token1] = ACTIONS(4995), - [aux_sym_highlight_token1] = ACTIONS(4995), - [aux_sym_edit_comment_token1] = ACTIONS(4995), - [anon_sym_CARET_LBRACK] = ACTIONS(4995), - [anon_sym_LBRACK_CARET] = ACTIONS(4995), - [sym_uri_autolink] = ACTIONS(4995), - [sym_email_autolink] = ACTIONS(4995), - [sym__whitespace_ge_2] = ACTIONS(4995), - [aux_sym__whitespace_token1] = ACTIONS(4997), - [sym__word_no_digit] = ACTIONS(4995), - [sym__digits] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4995), - [sym__code_span_start] = ACTIONS(4995), - [sym__emphasis_open_star] = ACTIONS(4995), - [sym__emphasis_open_underscore] = ACTIONS(4995), - [sym__strikeout_open] = ACTIONS(4995), - [sym__strikeout_close] = ACTIONS(4995), - [sym__latex_span_start] = ACTIONS(4995), - [sym__single_quote_open] = ACTIONS(4995), - [sym__double_quote_open] = ACTIONS(4995), - [sym__superscript_open] = ACTIONS(4995), - [sym__subscript_open] = ACTIONS(4995), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4995), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4995), - [sym__cite_author_in_text] = ACTIONS(4995), - [sym__cite_suppress_author] = ACTIONS(4995), - [sym__shortcode_open_escaped] = ACTIONS(4995), - [sym__shortcode_open] = ACTIONS(4995), - [sym__unclosed_span] = ACTIONS(4995), - [sym__strong_emphasis_open_star] = ACTIONS(4995), - [sym__strong_emphasis_open_underscore] = ACTIONS(4995), + [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(1549)] = { - [sym__backslash_escape] = ACTIONS(4999), - [sym_entity_reference] = ACTIONS(4999), - [sym_numeric_character_reference] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [sym__newline_token] = ACTIONS(4999), - [aux_sym_insert_token1] = ACTIONS(4999), - [aux_sym_delete_token1] = ACTIONS(4999), - [aux_sym_highlight_token1] = ACTIONS(4999), - [aux_sym_edit_comment_token1] = ACTIONS(4999), - [anon_sym_CARET_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_CARET] = ACTIONS(4999), - [sym_uri_autolink] = ACTIONS(4999), - [sym_email_autolink] = ACTIONS(4999), - [sym__whitespace_ge_2] = ACTIONS(4999), - [aux_sym__whitespace_token1] = ACTIONS(5001), - [sym__word_no_digit] = ACTIONS(4999), - [sym__digits] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4999), - [sym__code_span_start] = ACTIONS(4999), - [sym__emphasis_open_star] = ACTIONS(4999), - [sym__emphasis_open_underscore] = ACTIONS(4999), - [sym__strikeout_open] = ACTIONS(4999), - [sym__strikeout_close] = ACTIONS(4999), - [sym__latex_span_start] = ACTIONS(4999), - [sym__single_quote_open] = ACTIONS(4999), - [sym__double_quote_open] = ACTIONS(4999), - [sym__superscript_open] = ACTIONS(4999), - [sym__subscript_open] = ACTIONS(4999), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4999), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4999), - [sym__cite_author_in_text] = ACTIONS(4999), - [sym__cite_suppress_author] = ACTIONS(4999), - [sym__shortcode_open_escaped] = ACTIONS(4999), - [sym__shortcode_open] = ACTIONS(4999), - [sym__unclosed_span] = ACTIONS(4999), - [sym__strong_emphasis_open_star] = ACTIONS(4999), - [sym__strong_emphasis_open_underscore] = ACTIONS(4999), + [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(1550)] = { - [sym__backslash_escape] = ACTIONS(5003), - [sym_entity_reference] = ACTIONS(5003), - [sym_numeric_character_reference] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym__newline_token] = ACTIONS(5003), - [aux_sym_insert_token1] = ACTIONS(5003), - [aux_sym_delete_token1] = ACTIONS(5003), - [aux_sym_highlight_token1] = ACTIONS(5003), - [aux_sym_edit_comment_token1] = ACTIONS(5003), - [anon_sym_CARET_LBRACK] = ACTIONS(5003), - [anon_sym_LBRACK_CARET] = ACTIONS(5003), - [sym_uri_autolink] = ACTIONS(5003), - [sym_email_autolink] = ACTIONS(5003), - [sym__whitespace_ge_2] = ACTIONS(5003), - [aux_sym__whitespace_token1] = ACTIONS(5005), - [sym__word_no_digit] = ACTIONS(5003), - [sym__digits] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [sym__code_span_start] = ACTIONS(5003), - [sym__emphasis_open_star] = ACTIONS(5003), - [sym__emphasis_open_underscore] = ACTIONS(5003), - [sym__strikeout_open] = ACTIONS(5003), - [sym__strikeout_close] = ACTIONS(5003), - [sym__latex_span_start] = ACTIONS(5003), - [sym__single_quote_open] = ACTIONS(5003), - [sym__double_quote_open] = ACTIONS(5003), - [sym__superscript_open] = ACTIONS(5003), - [sym__subscript_open] = ACTIONS(5003), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5003), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5003), - [sym__cite_author_in_text] = ACTIONS(5003), - [sym__cite_suppress_author] = ACTIONS(5003), - [sym__shortcode_open_escaped] = ACTIONS(5003), - [sym__shortcode_open] = ACTIONS(5003), - [sym__unclosed_span] = ACTIONS(5003), - [sym__strong_emphasis_open_star] = ACTIONS(5003), - [sym__strong_emphasis_open_underscore] = ACTIONS(5003), + [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__single_quote_close] = 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(1551)] = { - [ts_builtin_sym_end] = ACTIONS(5091), - [sym__backslash_escape] = ACTIONS(5091), - [sym_entity_reference] = ACTIONS(5091), - [sym_numeric_character_reference] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(5091), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_BSLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym_BQUOTE] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [sym__newline_token] = ACTIONS(5091), - [aux_sym_insert_token1] = ACTIONS(5091), - [aux_sym_delete_token1] = ACTIONS(5091), - [aux_sym_highlight_token1] = ACTIONS(5091), - [aux_sym_edit_comment_token1] = ACTIONS(5091), - [anon_sym_CARET_LBRACK] = ACTIONS(5091), - [anon_sym_LBRACK_CARET] = ACTIONS(5091), - [sym_uri_autolink] = ACTIONS(5091), - [sym_email_autolink] = ACTIONS(5091), - [sym__whitespace_ge_2] = ACTIONS(5091), - [aux_sym__whitespace_token1] = ACTIONS(5093), - [sym__word_no_digit] = ACTIONS(5091), - [sym__digits] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), - [sym__code_span_start] = ACTIONS(5091), - [sym__emphasis_open_star] = ACTIONS(5091), - [sym__emphasis_open_underscore] = ACTIONS(5091), - [sym__strikeout_open] = ACTIONS(5091), - [sym__latex_span_start] = ACTIONS(5091), - [sym__single_quote_open] = ACTIONS(5091), - [sym__double_quote_open] = ACTIONS(5091), - [sym__superscript_open] = ACTIONS(5091), - [sym__subscript_open] = ACTIONS(5091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5091), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5091), - [sym__cite_author_in_text] = ACTIONS(5091), - [sym__cite_suppress_author] = ACTIONS(5091), - [sym__shortcode_open_escaped] = ACTIONS(5091), - [sym__shortcode_open] = ACTIONS(5091), - [sym__unclosed_span] = ACTIONS(5091), - [sym__strong_emphasis_open_star] = ACTIONS(5091), - [sym__strong_emphasis_open_underscore] = ACTIONS(5091), + [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__single_quote_close] = 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(1552)] = { - [sym__backslash_escape] = ACTIONS(5007), - [sym_entity_reference] = ACTIONS(5007), - [sym_numeric_character_reference] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH] = ACTIONS(5009), - [anon_sym_CARET] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym__newline_token] = ACTIONS(5007), - [aux_sym_insert_token1] = ACTIONS(5007), - [aux_sym_delete_token1] = ACTIONS(5007), - [aux_sym_highlight_token1] = ACTIONS(5007), - [aux_sym_edit_comment_token1] = ACTIONS(5007), - [anon_sym_CARET_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_CARET] = ACTIONS(5007), - [sym_uri_autolink] = ACTIONS(5007), - [sym_email_autolink] = ACTIONS(5007), - [sym__whitespace_ge_2] = ACTIONS(5007), - [aux_sym__whitespace_token1] = ACTIONS(5009), - [sym__word_no_digit] = ACTIONS(5007), - [sym__digits] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), - [sym__code_span_start] = ACTIONS(5007), - [sym__emphasis_open_star] = ACTIONS(5007), - [sym__emphasis_open_underscore] = ACTIONS(5007), - [sym__emphasis_close_underscore] = ACTIONS(5007), - [sym__strikeout_open] = ACTIONS(5007), - [sym__latex_span_start] = ACTIONS(5007), - [sym__single_quote_open] = ACTIONS(5007), - [sym__double_quote_open] = ACTIONS(5007), - [sym__superscript_open] = ACTIONS(5007), - [sym__subscript_open] = ACTIONS(5007), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5007), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5007), - [sym__cite_author_in_text] = ACTIONS(5007), - [sym__cite_suppress_author] = ACTIONS(5007), - [sym__shortcode_open_escaped] = ACTIONS(5007), - [sym__shortcode_open] = ACTIONS(5007), - [sym__unclosed_span] = ACTIONS(5007), - [sym__strong_emphasis_open_star] = ACTIONS(5007), - [sym__strong_emphasis_open_underscore] = ACTIONS(5007), + [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__single_quote_close] = 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(1553)] = { - [sym__backslash_escape] = ACTIONS(5011), - [sym_entity_reference] = ACTIONS(5011), - [sym_numeric_character_reference] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_AMP] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym_BQUOTE] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym__newline_token] = ACTIONS(5011), - [aux_sym_insert_token1] = ACTIONS(5011), - [aux_sym_delete_token1] = ACTIONS(5011), - [aux_sym_highlight_token1] = ACTIONS(5011), - [aux_sym_edit_comment_token1] = ACTIONS(5011), - [anon_sym_CARET_LBRACK] = ACTIONS(5011), - [anon_sym_LBRACK_CARET] = ACTIONS(5011), - [sym_uri_autolink] = ACTIONS(5011), - [sym_email_autolink] = ACTIONS(5011), - [sym__whitespace_ge_2] = ACTIONS(5011), - [aux_sym__whitespace_token1] = ACTIONS(5013), - [sym__word_no_digit] = ACTIONS(5011), - [sym__digits] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5011), - [sym__code_span_start] = ACTIONS(5011), - [sym__emphasis_open_star] = ACTIONS(5011), - [sym__emphasis_open_underscore] = ACTIONS(5011), - [sym__strikeout_open] = ACTIONS(5011), - [sym__strikeout_close] = ACTIONS(5011), - [sym__latex_span_start] = ACTIONS(5011), - [sym__single_quote_open] = ACTIONS(5011), - [sym__double_quote_open] = ACTIONS(5011), - [sym__superscript_open] = ACTIONS(5011), - [sym__subscript_open] = ACTIONS(5011), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5011), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5011), - [sym__cite_author_in_text] = ACTIONS(5011), - [sym__cite_suppress_author] = ACTIONS(5011), - [sym__shortcode_open_escaped] = ACTIONS(5011), - [sym__shortcode_open] = ACTIONS(5011), - [sym__unclosed_span] = ACTIONS(5011), - [sym__strong_emphasis_open_star] = ACTIONS(5011), - [sym__strong_emphasis_open_underscore] = ACTIONS(5011), + [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__single_quote_close] = 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(1554)] = { - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__strikeout_close] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [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__single_quote_close] = 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(1555)] = { - [sym__backslash_escape] = ACTIONS(5015), - [sym_entity_reference] = ACTIONS(5015), - [sym_numeric_character_reference] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym_BQUOTE] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__newline_token] = ACTIONS(5015), - [aux_sym_insert_token1] = ACTIONS(5015), - [aux_sym_delete_token1] = ACTIONS(5015), - [aux_sym_highlight_token1] = ACTIONS(5015), - [aux_sym_edit_comment_token1] = ACTIONS(5015), - [anon_sym_CARET_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_CARET] = ACTIONS(5015), - [sym_uri_autolink] = ACTIONS(5015), - [sym_email_autolink] = ACTIONS(5015), - [sym__whitespace_ge_2] = ACTIONS(5015), - [aux_sym__whitespace_token1] = ACTIONS(5017), - [sym__word_no_digit] = ACTIONS(5015), - [sym__digits] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5015), - [sym__code_span_start] = ACTIONS(5015), - [sym__emphasis_open_star] = ACTIONS(5015), - [sym__emphasis_open_underscore] = ACTIONS(5015), - [sym__strikeout_open] = ACTIONS(5015), - [sym__strikeout_close] = ACTIONS(5015), - [sym__latex_span_start] = ACTIONS(5015), - [sym__single_quote_open] = ACTIONS(5015), - [sym__double_quote_open] = ACTIONS(5015), - [sym__superscript_open] = ACTIONS(5015), - [sym__subscript_open] = ACTIONS(5015), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5015), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5015), - [sym__cite_author_in_text] = ACTIONS(5015), - [sym__cite_suppress_author] = ACTIONS(5015), - [sym__shortcode_open_escaped] = ACTIONS(5015), - [sym__shortcode_open] = ACTIONS(5015), - [sym__unclosed_span] = ACTIONS(5015), - [sym__strong_emphasis_open_star] = ACTIONS(5015), - [sym__strong_emphasis_open_underscore] = ACTIONS(5015), + [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__single_quote_close] = 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(1556)] = { - [sym__backslash_escape] = ACTIONS(5019), - [sym_entity_reference] = ACTIONS(5019), - [sym_numeric_character_reference] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_DQUOTE] = ACTIONS(5019), - [anon_sym_POUND] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym__newline_token] = ACTIONS(5019), - [aux_sym_insert_token1] = ACTIONS(5019), - [aux_sym_delete_token1] = ACTIONS(5019), - [aux_sym_highlight_token1] = ACTIONS(5019), - [aux_sym_edit_comment_token1] = ACTIONS(5019), - [anon_sym_CARET_LBRACK] = ACTIONS(5019), - [anon_sym_LBRACK_CARET] = ACTIONS(5019), - [sym_uri_autolink] = ACTIONS(5019), - [sym_email_autolink] = ACTIONS(5019), - [sym__whitespace_ge_2] = ACTIONS(5019), - [aux_sym__whitespace_token1] = ACTIONS(5021), - [sym__word_no_digit] = ACTIONS(5019), - [sym__digits] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [sym__code_span_start] = ACTIONS(5019), - [sym__emphasis_open_star] = ACTIONS(5019), - [sym__emphasis_open_underscore] = ACTIONS(5019), - [sym__strikeout_open] = ACTIONS(5019), - [sym__strikeout_close] = ACTIONS(5019), - [sym__latex_span_start] = ACTIONS(5019), - [sym__single_quote_open] = ACTIONS(5019), - [sym__double_quote_open] = ACTIONS(5019), - [sym__superscript_open] = ACTIONS(5019), - [sym__subscript_open] = ACTIONS(5019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5019), - [sym__cite_author_in_text] = ACTIONS(5019), - [sym__cite_suppress_author] = ACTIONS(5019), - [sym__shortcode_open_escaped] = ACTIONS(5019), - [sym__shortcode_open] = ACTIONS(5019), - [sym__unclosed_span] = ACTIONS(5019), - [sym__strong_emphasis_open_star] = ACTIONS(5019), - [sym__strong_emphasis_open_underscore] = ACTIONS(5019), + [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__strikeout_close] = 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(1557)] = { - [sym__backslash_escape] = ACTIONS(5023), - [sym_entity_reference] = ACTIONS(5023), - [sym_numeric_character_reference] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [sym__newline_token] = ACTIONS(5023), - [aux_sym_insert_token1] = ACTIONS(5023), - [aux_sym_delete_token1] = ACTIONS(5023), - [aux_sym_highlight_token1] = ACTIONS(5023), - [aux_sym_edit_comment_token1] = ACTIONS(5023), - [anon_sym_CARET_LBRACK] = ACTIONS(5023), - [anon_sym_LBRACK_CARET] = ACTIONS(5023), - [sym_uri_autolink] = ACTIONS(5023), - [sym_email_autolink] = ACTIONS(5023), - [sym__whitespace_ge_2] = ACTIONS(5023), - [aux_sym__whitespace_token1] = ACTIONS(5025), - [sym__word_no_digit] = ACTIONS(5023), - [sym__digits] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5023), - [sym__code_span_start] = ACTIONS(5023), - [sym__emphasis_open_star] = ACTIONS(5023), - [sym__emphasis_open_underscore] = ACTIONS(5023), - [sym__strikeout_open] = ACTIONS(5023), - [sym__strikeout_close] = ACTIONS(5023), - [sym__latex_span_start] = ACTIONS(5023), - [sym__single_quote_open] = ACTIONS(5023), - [sym__double_quote_open] = ACTIONS(5023), - [sym__superscript_open] = ACTIONS(5023), - [sym__subscript_open] = ACTIONS(5023), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5023), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5023), - [sym__cite_author_in_text] = ACTIONS(5023), - [sym__cite_suppress_author] = ACTIONS(5023), - [sym__shortcode_open_escaped] = ACTIONS(5023), - [sym__shortcode_open] = ACTIONS(5023), - [sym__unclosed_span] = ACTIONS(5023), - [sym__strong_emphasis_open_star] = ACTIONS(5023), - [sym__strong_emphasis_open_underscore] = ACTIONS(5023), + [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__single_quote_close] = 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(1558)] = { - [sym__backslash_escape] = ACTIONS(5027), - [sym_entity_reference] = ACTIONS(5027), - [sym_numeric_character_reference] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [sym__newline_token] = ACTIONS(5027), - [aux_sym_insert_token1] = ACTIONS(5027), - [aux_sym_delete_token1] = ACTIONS(5027), - [aux_sym_highlight_token1] = ACTIONS(5027), - [aux_sym_edit_comment_token1] = ACTIONS(5027), - [anon_sym_CARET_LBRACK] = ACTIONS(5027), - [anon_sym_LBRACK_CARET] = ACTIONS(5027), - [sym_uri_autolink] = ACTIONS(5027), - [sym_email_autolink] = ACTIONS(5027), - [sym__whitespace_ge_2] = ACTIONS(5027), - [aux_sym__whitespace_token1] = ACTIONS(5029), - [sym__word_no_digit] = ACTIONS(5027), - [sym__digits] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5027), - [sym__code_span_start] = ACTIONS(5027), - [sym__emphasis_open_star] = ACTIONS(5027), - [sym__emphasis_open_underscore] = ACTIONS(5027), - [sym__strikeout_open] = ACTIONS(5027), - [sym__strikeout_close] = ACTIONS(5027), - [sym__latex_span_start] = ACTIONS(5027), - [sym__single_quote_open] = ACTIONS(5027), - [sym__double_quote_open] = ACTIONS(5027), - [sym__superscript_open] = ACTIONS(5027), - [sym__subscript_open] = ACTIONS(5027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5027), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5027), - [sym__cite_author_in_text] = ACTIONS(5027), - [sym__cite_suppress_author] = ACTIONS(5027), - [sym__shortcode_open_escaped] = ACTIONS(5027), - [sym__shortcode_open] = ACTIONS(5027), - [sym__unclosed_span] = ACTIONS(5027), - [sym__strong_emphasis_open_star] = ACTIONS(5027), - [sym__strong_emphasis_open_underscore] = ACTIONS(5027), + [sym__backslash_escape] = ACTIONS(4495), + [sym_entity_reference] = ACTIONS(4495), + [sym_numeric_character_reference] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_QMARK] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_BSLASH] = ACTIONS(4497), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_BQUOTE] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [sym__newline_token] = ACTIONS(4495), + [aux_sym_insert_token1] = ACTIONS(4495), + [aux_sym_delete_token1] = ACTIONS(4495), + [aux_sym_highlight_token1] = ACTIONS(4495), + [aux_sym_edit_comment_token1] = ACTIONS(4495), + [anon_sym_CARET_LBRACK] = ACTIONS(4495), + [anon_sym_LBRACK_CARET] = ACTIONS(4495), + [sym_uri_autolink] = ACTIONS(4495), + [sym_email_autolink] = ACTIONS(4495), + [sym__whitespace_ge_2] = ACTIONS(4495), + [aux_sym__whitespace_token1] = ACTIONS(4497), + [sym__word_no_digit] = ACTIONS(4495), + [sym__digits] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4495), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(4495), + [sym__emphasis_open_underscore] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4495), + [sym__latex_span_start] = ACTIONS(4495), + [sym__single_quote_open] = ACTIONS(4495), + [sym__single_quote_close] = ACTIONS(4495), + [sym__double_quote_open] = ACTIONS(4495), + [sym__superscript_open] = ACTIONS(4495), + [sym__subscript_open] = ACTIONS(4495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4495), + [sym__cite_author_in_text] = ACTIONS(4495), + [sym__cite_suppress_author] = ACTIONS(4495), + [sym__shortcode_open_escaped] = ACTIONS(4495), + [sym__shortcode_open] = ACTIONS(4495), + [sym__unclosed_span] = ACTIONS(4495), + [sym__strong_emphasis_open_star] = ACTIONS(4495), + [sym__strong_emphasis_open_underscore] = ACTIONS(4495), }, [STATE(1559)] = { - [sym__backslash_escape] = ACTIONS(5031), - [sym_entity_reference] = ACTIONS(5031), - [sym_numeric_character_reference] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_BSLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_BQUOTE] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [sym__newline_token] = ACTIONS(5031), - [aux_sym_insert_token1] = ACTIONS(5031), - [aux_sym_delete_token1] = ACTIONS(5031), - [aux_sym_highlight_token1] = ACTIONS(5031), - [aux_sym_edit_comment_token1] = ACTIONS(5031), - [anon_sym_CARET_LBRACK] = ACTIONS(5031), - [anon_sym_LBRACK_CARET] = ACTIONS(5031), - [sym_uri_autolink] = ACTIONS(5031), - [sym_email_autolink] = ACTIONS(5031), - [sym__whitespace_ge_2] = ACTIONS(5031), - [aux_sym__whitespace_token1] = ACTIONS(5033), - [sym__word_no_digit] = ACTIONS(5031), - [sym__digits] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [sym__code_span_start] = ACTIONS(5031), - [sym__emphasis_open_star] = ACTIONS(5031), - [sym__emphasis_open_underscore] = ACTIONS(5031), - [sym__strikeout_open] = ACTIONS(5031), - [sym__strikeout_close] = ACTIONS(5031), - [sym__latex_span_start] = ACTIONS(5031), - [sym__single_quote_open] = ACTIONS(5031), - [sym__double_quote_open] = ACTIONS(5031), - [sym__superscript_open] = ACTIONS(5031), - [sym__subscript_open] = ACTIONS(5031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5031), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5031), - [sym__cite_author_in_text] = ACTIONS(5031), - [sym__cite_suppress_author] = ACTIONS(5031), - [sym__shortcode_open_escaped] = ACTIONS(5031), - [sym__shortcode_open] = ACTIONS(5031), - [sym__unclosed_span] = ACTIONS(5031), - [sym__strong_emphasis_open_star] = ACTIONS(5031), - [sym__strong_emphasis_open_underscore] = ACTIONS(5031), + [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(1560)] = { - [sym__backslash_escape] = ACTIONS(5035), - [sym_entity_reference] = ACTIONS(5035), - [sym_numeric_character_reference] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_DQUOTE] = ACTIONS(5035), - [anon_sym_POUND] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_BSLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [sym__newline_token] = ACTIONS(5035), - [aux_sym_insert_token1] = ACTIONS(5035), - [aux_sym_delete_token1] = ACTIONS(5035), - [aux_sym_highlight_token1] = ACTIONS(5035), - [aux_sym_edit_comment_token1] = ACTIONS(5035), - [anon_sym_CARET_LBRACK] = ACTIONS(5035), - [anon_sym_LBRACK_CARET] = ACTIONS(5035), - [sym_uri_autolink] = ACTIONS(5035), - [sym_email_autolink] = ACTIONS(5035), - [sym__whitespace_ge_2] = ACTIONS(5035), - [aux_sym__whitespace_token1] = ACTIONS(5037), - [sym__word_no_digit] = ACTIONS(5035), - [sym__digits] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5035), - [sym__code_span_start] = ACTIONS(5035), - [sym__emphasis_open_star] = ACTIONS(5035), - [sym__emphasis_open_underscore] = ACTIONS(5035), - [sym__strikeout_open] = ACTIONS(5035), - [sym__strikeout_close] = ACTIONS(5035), - [sym__latex_span_start] = ACTIONS(5035), - [sym__single_quote_open] = ACTIONS(5035), - [sym__double_quote_open] = ACTIONS(5035), - [sym__superscript_open] = ACTIONS(5035), - [sym__subscript_open] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5035), - [sym__cite_author_in_text] = ACTIONS(5035), - [sym__cite_suppress_author] = ACTIONS(5035), - [sym__shortcode_open_escaped] = ACTIONS(5035), - [sym__shortcode_open] = ACTIONS(5035), - [sym__unclosed_span] = ACTIONS(5035), - [sym__strong_emphasis_open_star] = ACTIONS(5035), - [sym__strong_emphasis_open_underscore] = ACTIONS(5035), + [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__single_quote_close] = 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(1561)] = { - [sym__backslash_escape] = ACTIONS(5039), - [sym_entity_reference] = ACTIONS(5039), - [sym_numeric_character_reference] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(5039), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_BSLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [sym__newline_token] = ACTIONS(5039), - [aux_sym_insert_token1] = ACTIONS(5039), - [aux_sym_delete_token1] = ACTIONS(5039), - [aux_sym_highlight_token1] = ACTIONS(5039), - [aux_sym_edit_comment_token1] = ACTIONS(5039), - [anon_sym_CARET_LBRACK] = ACTIONS(5039), - [anon_sym_LBRACK_CARET] = ACTIONS(5039), - [sym_uri_autolink] = ACTIONS(5039), - [sym_email_autolink] = ACTIONS(5039), - [sym__whitespace_ge_2] = ACTIONS(5039), - [aux_sym__whitespace_token1] = ACTIONS(5041), - [sym__word_no_digit] = ACTIONS(5039), - [sym__digits] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5039), - [sym__code_span_start] = ACTIONS(5039), - [sym__emphasis_open_star] = ACTIONS(5039), - [sym__emphasis_open_underscore] = ACTIONS(5039), - [sym__strikeout_open] = ACTIONS(5039), - [sym__strikeout_close] = ACTIONS(5039), - [sym__latex_span_start] = ACTIONS(5039), - [sym__single_quote_open] = ACTIONS(5039), - [sym__double_quote_open] = ACTIONS(5039), - [sym__superscript_open] = ACTIONS(5039), - [sym__subscript_open] = ACTIONS(5039), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5039), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5039), - [sym__cite_author_in_text] = ACTIONS(5039), - [sym__cite_suppress_author] = ACTIONS(5039), - [sym__shortcode_open_escaped] = ACTIONS(5039), - [sym__shortcode_open] = ACTIONS(5039), - [sym__unclosed_span] = ACTIONS(5039), - [sym__strong_emphasis_open_star] = ACTIONS(5039), - [sym__strong_emphasis_open_underscore] = ACTIONS(5039), + [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__superscript_close] = 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(1562)] = { - [sym__backslash_escape] = ACTIONS(5043), - [sym_entity_reference] = ACTIONS(5043), - [sym_numeric_character_reference] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_DQUOTE] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_QMARK] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_BSLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [sym__newline_token] = ACTIONS(5043), - [aux_sym_insert_token1] = ACTIONS(5043), - [aux_sym_delete_token1] = ACTIONS(5043), - [aux_sym_highlight_token1] = ACTIONS(5043), - [aux_sym_edit_comment_token1] = ACTIONS(5043), - [anon_sym_CARET_LBRACK] = ACTIONS(5043), - [anon_sym_LBRACK_CARET] = ACTIONS(5043), - [sym_uri_autolink] = ACTIONS(5043), - [sym_email_autolink] = ACTIONS(5043), - [sym__whitespace_ge_2] = ACTIONS(5043), - [aux_sym__whitespace_token1] = ACTIONS(5045), - [sym__word_no_digit] = ACTIONS(5043), - [sym__digits] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), - [sym__code_span_start] = ACTIONS(5043), - [sym__emphasis_open_star] = ACTIONS(5043), - [sym__emphasis_open_underscore] = ACTIONS(5043), - [sym__strikeout_open] = ACTIONS(5043), - [sym__strikeout_close] = ACTIONS(5043), - [sym__latex_span_start] = ACTIONS(5043), - [sym__single_quote_open] = ACTIONS(5043), - [sym__double_quote_open] = ACTIONS(5043), - [sym__superscript_open] = ACTIONS(5043), - [sym__subscript_open] = ACTIONS(5043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5043), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5043), - [sym__cite_author_in_text] = ACTIONS(5043), - [sym__cite_suppress_author] = ACTIONS(5043), - [sym__shortcode_open_escaped] = ACTIONS(5043), - [sym__shortcode_open] = ACTIONS(5043), - [sym__unclosed_span] = ACTIONS(5043), - [sym__strong_emphasis_open_star] = ACTIONS(5043), - [sym__strong_emphasis_open_underscore] = ACTIONS(5043), + [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__strikeout_close] = 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(1563)] = { - [sym__backslash_escape] = ACTIONS(5047), - [sym_entity_reference] = ACTIONS(5047), - [sym_numeric_character_reference] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(5047), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [sym__newline_token] = ACTIONS(5047), - [aux_sym_insert_token1] = ACTIONS(5047), - [aux_sym_delete_token1] = ACTIONS(5047), - [aux_sym_highlight_token1] = ACTIONS(5047), - [aux_sym_edit_comment_token1] = ACTIONS(5047), - [anon_sym_CARET_LBRACK] = ACTIONS(5047), - [anon_sym_LBRACK_CARET] = ACTIONS(5047), - [sym_uri_autolink] = ACTIONS(5047), - [sym_email_autolink] = ACTIONS(5047), - [sym__whitespace_ge_2] = ACTIONS(5047), - [aux_sym__whitespace_token1] = ACTIONS(5049), - [sym__word_no_digit] = ACTIONS(5047), - [sym__digits] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5047), - [sym__code_span_start] = ACTIONS(5047), - [sym__emphasis_open_star] = ACTIONS(5047), - [sym__emphasis_open_underscore] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5047), - [sym__strikeout_close] = ACTIONS(5047), - [sym__latex_span_start] = ACTIONS(5047), - [sym__single_quote_open] = ACTIONS(5047), - [sym__double_quote_open] = ACTIONS(5047), - [sym__superscript_open] = ACTIONS(5047), - [sym__subscript_open] = ACTIONS(5047), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5047), - [sym__cite_author_in_text] = ACTIONS(5047), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__shortcode_open_escaped] = ACTIONS(5047), - [sym__shortcode_open] = ACTIONS(5047), - [sym__unclosed_span] = ACTIONS(5047), - [sym__strong_emphasis_open_star] = ACTIONS(5047), - [sym__strong_emphasis_open_underscore] = ACTIONS(5047), - }, - [STATE(1564)] = { - [sym__backslash_escape] = ACTIONS(5051), - [sym_entity_reference] = ACTIONS(5051), - [sym_numeric_character_reference] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_BSLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [sym__newline_token] = ACTIONS(5051), - [aux_sym_insert_token1] = ACTIONS(5051), - [aux_sym_delete_token1] = ACTIONS(5051), - [aux_sym_highlight_token1] = ACTIONS(5051), - [aux_sym_edit_comment_token1] = ACTIONS(5051), - [anon_sym_CARET_LBRACK] = ACTIONS(5051), - [anon_sym_LBRACK_CARET] = ACTIONS(5051), - [sym_uri_autolink] = ACTIONS(5051), - [sym_email_autolink] = ACTIONS(5051), - [sym__whitespace_ge_2] = ACTIONS(5051), - [aux_sym__whitespace_token1] = ACTIONS(5053), - [sym__word_no_digit] = ACTIONS(5051), - [sym__digits] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5051), - [sym__code_span_start] = ACTIONS(5051), - [sym__emphasis_open_star] = ACTIONS(5051), - [sym__emphasis_open_underscore] = ACTIONS(5051), - [sym__strikeout_open] = ACTIONS(5051), - [sym__strikeout_close] = ACTIONS(5051), - [sym__latex_span_start] = ACTIONS(5051), - [sym__single_quote_open] = ACTIONS(5051), - [sym__double_quote_open] = ACTIONS(5051), - [sym__superscript_open] = ACTIONS(5051), - [sym__subscript_open] = ACTIONS(5051), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5051), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5051), - [sym__cite_author_in_text] = ACTIONS(5051), - [sym__cite_suppress_author] = ACTIONS(5051), - [sym__shortcode_open_escaped] = ACTIONS(5051), - [sym__shortcode_open] = ACTIONS(5051), - [sym__unclosed_span] = ACTIONS(5051), - [sym__strong_emphasis_open_star] = ACTIONS(5051), - [sym__strong_emphasis_open_underscore] = ACTIONS(5051), - }, - [STATE(1565)] = { - [sym__backslash_escape] = ACTIONS(5055), - [sym_entity_reference] = ACTIONS(5055), - [sym_numeric_character_reference] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(5055), - [anon_sym_POUND] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_BSLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_BQUOTE] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [sym__newline_token] = ACTIONS(5055), - [aux_sym_insert_token1] = ACTIONS(5055), - [aux_sym_delete_token1] = ACTIONS(5055), - [aux_sym_highlight_token1] = ACTIONS(5055), - [aux_sym_edit_comment_token1] = ACTIONS(5055), - [anon_sym_CARET_LBRACK] = ACTIONS(5055), - [anon_sym_LBRACK_CARET] = ACTIONS(5055), - [sym_uri_autolink] = ACTIONS(5055), - [sym_email_autolink] = ACTIONS(5055), - [sym__whitespace_ge_2] = ACTIONS(5055), - [aux_sym__whitespace_token1] = ACTIONS(5057), - [sym__word_no_digit] = ACTIONS(5055), - [sym__digits] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5055), - [sym__code_span_start] = ACTIONS(5055), - [sym__emphasis_open_star] = ACTIONS(5055), - [sym__emphasis_open_underscore] = ACTIONS(5055), - [sym__strikeout_open] = ACTIONS(5055), - [sym__strikeout_close] = ACTIONS(5055), - [sym__latex_span_start] = ACTIONS(5055), - [sym__single_quote_open] = ACTIONS(5055), - [sym__double_quote_open] = ACTIONS(5055), - [sym__superscript_open] = ACTIONS(5055), - [sym__subscript_open] = ACTIONS(5055), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5055), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5055), - [sym__cite_author_in_text] = ACTIONS(5055), - [sym__cite_suppress_author] = ACTIONS(5055), - [sym__shortcode_open_escaped] = ACTIONS(5055), - [sym__shortcode_open] = ACTIONS(5055), - [sym__unclosed_span] = ACTIONS(5055), - [sym__strong_emphasis_open_star] = ACTIONS(5055), - [sym__strong_emphasis_open_underscore] = ACTIONS(5055), - }, - [STATE(1566)] = { - [sym__backslash_escape] = ACTIONS(5059), - [sym_entity_reference] = ACTIONS(5059), - [sym_numeric_character_reference] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_DQUOTE] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_BSLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [sym__newline_token] = ACTIONS(5059), - [aux_sym_insert_token1] = ACTIONS(5059), - [aux_sym_delete_token1] = ACTIONS(5059), - [aux_sym_highlight_token1] = ACTIONS(5059), - [aux_sym_edit_comment_token1] = ACTIONS(5059), - [anon_sym_CARET_LBRACK] = ACTIONS(5059), - [anon_sym_LBRACK_CARET] = ACTIONS(5059), - [sym_uri_autolink] = ACTIONS(5059), - [sym_email_autolink] = ACTIONS(5059), - [sym__whitespace_ge_2] = ACTIONS(5059), - [aux_sym__whitespace_token1] = ACTIONS(5061), - [sym__word_no_digit] = ACTIONS(5059), - [sym__digits] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5059), - [sym__code_span_start] = ACTIONS(5059), - [sym__emphasis_open_star] = ACTIONS(5059), - [sym__emphasis_open_underscore] = ACTIONS(5059), - [sym__strikeout_open] = ACTIONS(5059), - [sym__strikeout_close] = ACTIONS(5059), - [sym__latex_span_start] = ACTIONS(5059), - [sym__single_quote_open] = ACTIONS(5059), - [sym__double_quote_open] = ACTIONS(5059), - [sym__superscript_open] = ACTIONS(5059), - [sym__subscript_open] = ACTIONS(5059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5059), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5059), - [sym__cite_author_in_text] = ACTIONS(5059), - [sym__cite_suppress_author] = ACTIONS(5059), - [sym__shortcode_open_escaped] = ACTIONS(5059), - [sym__shortcode_open] = ACTIONS(5059), - [sym__unclosed_span] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5059), - [sym__strong_emphasis_open_underscore] = ACTIONS(5059), - }, - [STATE(1567)] = { - [sym__backslash_escape] = ACTIONS(5063), - [sym_entity_reference] = ACTIONS(5063), - [sym_numeric_character_reference] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_BSLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_BQUOTE] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [sym__newline_token] = ACTIONS(5063), - [aux_sym_insert_token1] = ACTIONS(5063), - [aux_sym_delete_token1] = ACTIONS(5063), - [aux_sym_highlight_token1] = ACTIONS(5063), - [aux_sym_edit_comment_token1] = ACTIONS(5063), - [anon_sym_CARET_LBRACK] = ACTIONS(5063), - [anon_sym_LBRACK_CARET] = ACTIONS(5063), - [sym_uri_autolink] = ACTIONS(5063), - [sym_email_autolink] = ACTIONS(5063), - [sym__whitespace_ge_2] = ACTIONS(5063), - [aux_sym__whitespace_token1] = ACTIONS(5065), - [sym__word_no_digit] = ACTIONS(5063), - [sym__digits] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5063), - [sym__code_span_start] = ACTIONS(5063), - [sym__emphasis_open_star] = ACTIONS(5063), - [sym__emphasis_open_underscore] = ACTIONS(5063), - [sym__strikeout_open] = ACTIONS(5063), - [sym__strikeout_close] = ACTIONS(5063), - [sym__latex_span_start] = ACTIONS(5063), - [sym__single_quote_open] = ACTIONS(5063), - [sym__double_quote_open] = ACTIONS(5063), - [sym__superscript_open] = ACTIONS(5063), - [sym__subscript_open] = ACTIONS(5063), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5063), - [sym__cite_author_in_text] = ACTIONS(5063), - [sym__cite_suppress_author] = ACTIONS(5063), - [sym__shortcode_open_escaped] = ACTIONS(5063), - [sym__shortcode_open] = ACTIONS(5063), - [sym__unclosed_span] = ACTIONS(5063), - [sym__strong_emphasis_open_star] = ACTIONS(5063), - [sym__strong_emphasis_open_underscore] = ACTIONS(5063), - }, - [STATE(1568)] = { - [sym__backslash_escape] = ACTIONS(5067), - [sym_entity_reference] = ACTIONS(5067), - [sym_numeric_character_reference] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DQUOTE] = ACTIONS(5067), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_COLON] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [sym__newline_token] = ACTIONS(5067), - [aux_sym_insert_token1] = ACTIONS(5067), - [aux_sym_delete_token1] = ACTIONS(5067), - [aux_sym_highlight_token1] = ACTIONS(5067), - [aux_sym_edit_comment_token1] = ACTIONS(5067), - [anon_sym_CARET_LBRACK] = ACTIONS(5067), - [anon_sym_LBRACK_CARET] = ACTIONS(5067), - [sym_uri_autolink] = ACTIONS(5067), - [sym_email_autolink] = ACTIONS(5067), - [sym__whitespace_ge_2] = ACTIONS(5067), - [aux_sym__whitespace_token1] = ACTIONS(5069), - [sym__word_no_digit] = ACTIONS(5067), - [sym__digits] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5067), - [sym__code_span_start] = ACTIONS(5067), - [sym__emphasis_open_star] = ACTIONS(5067), - [sym__emphasis_open_underscore] = ACTIONS(5067), - [sym__strikeout_open] = ACTIONS(5067), - [sym__strikeout_close] = ACTIONS(5067), - [sym__latex_span_start] = ACTIONS(5067), - [sym__single_quote_open] = ACTIONS(5067), - [sym__double_quote_open] = ACTIONS(5067), - [sym__superscript_open] = ACTIONS(5067), - [sym__subscript_open] = ACTIONS(5067), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5067), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5067), - [sym__cite_author_in_text] = ACTIONS(5067), - [sym__cite_suppress_author] = ACTIONS(5067), - [sym__shortcode_open_escaped] = ACTIONS(5067), - [sym__shortcode_open] = ACTIONS(5067), - [sym__unclosed_span] = ACTIONS(5067), - [sym__strong_emphasis_open_star] = ACTIONS(5067), - [sym__strong_emphasis_open_underscore] = ACTIONS(5067), - }, - [STATE(1569)] = { - [sym__backslash_escape] = ACTIONS(5071), - [sym_entity_reference] = ACTIONS(5071), - [sym_numeric_character_reference] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_POUND] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [sym__newline_token] = ACTIONS(5071), - [aux_sym_insert_token1] = ACTIONS(5071), - [aux_sym_delete_token1] = ACTIONS(5071), - [aux_sym_highlight_token1] = ACTIONS(5071), - [aux_sym_edit_comment_token1] = ACTIONS(5071), - [anon_sym_CARET_LBRACK] = ACTIONS(5071), - [anon_sym_LBRACK_CARET] = ACTIONS(5071), - [sym_uri_autolink] = ACTIONS(5071), - [sym_email_autolink] = ACTIONS(5071), - [sym__whitespace_ge_2] = ACTIONS(5071), - [aux_sym__whitespace_token1] = ACTIONS(5073), - [sym__word_no_digit] = ACTIONS(5071), - [sym__digits] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5071), - [sym__code_span_start] = ACTIONS(5071), - [sym__emphasis_open_star] = ACTIONS(5071), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym__strikeout_open] = ACTIONS(5071), - [sym__strikeout_close] = ACTIONS(5071), - [sym__latex_span_start] = ACTIONS(5071), - [sym__single_quote_open] = ACTIONS(5071), - [sym__double_quote_open] = ACTIONS(5071), - [sym__superscript_open] = ACTIONS(5071), - [sym__subscript_open] = ACTIONS(5071), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5071), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5071), - [sym__cite_author_in_text] = ACTIONS(5071), - [sym__cite_suppress_author] = ACTIONS(5071), - [sym__shortcode_open_escaped] = ACTIONS(5071), - [sym__shortcode_open] = ACTIONS(5071), - [sym__unclosed_span] = ACTIONS(5071), - [sym__strong_emphasis_open_star] = ACTIONS(5071), - [sym__strong_emphasis_open_underscore] = ACTIONS(5071), - }, - [STATE(1570)] = { - [sym__backslash_escape] = ACTIONS(5075), - [sym_entity_reference] = ACTIONS(5075), - [sym_numeric_character_reference] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_QMARK] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_BSLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [sym__newline_token] = ACTIONS(5075), - [aux_sym_insert_token1] = ACTIONS(5075), - [aux_sym_delete_token1] = ACTIONS(5075), - [aux_sym_highlight_token1] = ACTIONS(5075), - [aux_sym_edit_comment_token1] = ACTIONS(5075), - [anon_sym_CARET_LBRACK] = ACTIONS(5075), - [anon_sym_LBRACK_CARET] = ACTIONS(5075), - [sym_uri_autolink] = ACTIONS(5075), - [sym_email_autolink] = ACTIONS(5075), - [sym__whitespace_ge_2] = ACTIONS(5075), - [aux_sym__whitespace_token1] = ACTIONS(5077), - [sym__word_no_digit] = ACTIONS(5075), - [sym__digits] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5075), - [sym__code_span_start] = ACTIONS(5075), - [sym__emphasis_open_star] = ACTIONS(5075), - [sym__emphasis_open_underscore] = ACTIONS(5075), - [sym__strikeout_open] = ACTIONS(5075), - [sym__strikeout_close] = ACTIONS(5075), - [sym__latex_span_start] = ACTIONS(5075), - [sym__single_quote_open] = ACTIONS(5075), - [sym__double_quote_open] = ACTIONS(5075), - [sym__superscript_open] = ACTIONS(5075), - [sym__subscript_open] = ACTIONS(5075), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5075), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5075), - [sym__cite_author_in_text] = ACTIONS(5075), - [sym__cite_suppress_author] = ACTIONS(5075), - [sym__shortcode_open_escaped] = ACTIONS(5075), - [sym__shortcode_open] = ACTIONS(5075), - [sym__unclosed_span] = ACTIONS(5075), - [sym__strong_emphasis_open_star] = ACTIONS(5075), - [sym__strong_emphasis_open_underscore] = ACTIONS(5075), - }, - [STATE(1571)] = { - [sym__backslash_escape] = ACTIONS(5079), - [sym_entity_reference] = ACTIONS(5079), - [sym_numeric_character_reference] = ACTIONS(5079), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_DQUOTE] = ACTIONS(5079), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_QMARK] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BSLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5079), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [sym__newline_token] = ACTIONS(5079), - [aux_sym_insert_token1] = ACTIONS(5079), - [aux_sym_delete_token1] = ACTIONS(5079), - [aux_sym_highlight_token1] = ACTIONS(5079), - [aux_sym_edit_comment_token1] = ACTIONS(5079), - [anon_sym_CARET_LBRACK] = ACTIONS(5079), - [anon_sym_LBRACK_CARET] = ACTIONS(5079), - [sym_uri_autolink] = ACTIONS(5079), - [sym_email_autolink] = ACTIONS(5079), - [sym__whitespace_ge_2] = ACTIONS(5079), - [aux_sym__whitespace_token1] = ACTIONS(5081), - [sym__word_no_digit] = ACTIONS(5079), - [sym__digits] = ACTIONS(5079), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5079), - [sym__code_span_start] = ACTIONS(5079), - [sym__emphasis_open_star] = ACTIONS(5079), - [sym__emphasis_open_underscore] = ACTIONS(5079), - [sym__strikeout_open] = ACTIONS(5079), - [sym__strikeout_close] = ACTIONS(5079), - [sym__latex_span_start] = ACTIONS(5079), - [sym__single_quote_open] = ACTIONS(5079), - [sym__double_quote_open] = ACTIONS(5079), - [sym__superscript_open] = ACTIONS(5079), - [sym__subscript_open] = ACTIONS(5079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5079), - [sym__cite_author_in_text] = ACTIONS(5079), - [sym__cite_suppress_author] = ACTIONS(5079), - [sym__shortcode_open_escaped] = ACTIONS(5079), - [sym__shortcode_open] = ACTIONS(5079), - [sym__unclosed_span] = ACTIONS(5079), - [sym__strong_emphasis_open_star] = ACTIONS(5079), - [sym__strong_emphasis_open_underscore] = ACTIONS(5079), - }, - [STATE(1572)] = { - [sym__backslash_escape] = ACTIONS(5083), - [sym_entity_reference] = ACTIONS(5083), - [sym_numeric_character_reference] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOT] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_QMARK] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_BSLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym_BQUOTE] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [sym__newline_token] = ACTIONS(5083), - [aux_sym_insert_token1] = ACTIONS(5083), - [aux_sym_delete_token1] = ACTIONS(5083), - [aux_sym_highlight_token1] = ACTIONS(5083), - [aux_sym_edit_comment_token1] = ACTIONS(5083), - [anon_sym_CARET_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_CARET] = ACTIONS(5083), - [sym_uri_autolink] = ACTIONS(5083), - [sym_email_autolink] = ACTIONS(5083), - [sym__whitespace_ge_2] = ACTIONS(5083), - [aux_sym__whitespace_token1] = ACTIONS(5085), - [sym__word_no_digit] = ACTIONS(5083), - [sym__digits] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5083), - [sym__code_span_start] = ACTIONS(5083), - [sym__emphasis_open_star] = ACTIONS(5083), - [sym__emphasis_open_underscore] = ACTIONS(5083), - [sym__strikeout_open] = ACTIONS(5083), - [sym__strikeout_close] = ACTIONS(5083), - [sym__latex_span_start] = ACTIONS(5083), - [sym__single_quote_open] = ACTIONS(5083), - [sym__double_quote_open] = ACTIONS(5083), - [sym__superscript_open] = ACTIONS(5083), - [sym__subscript_open] = ACTIONS(5083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5083), - [sym__cite_author_in_text] = ACTIONS(5083), - [sym__cite_suppress_author] = ACTIONS(5083), - [sym__shortcode_open_escaped] = ACTIONS(5083), - [sym__shortcode_open] = ACTIONS(5083), - [sym__unclosed_span] = ACTIONS(5083), - [sym__strong_emphasis_open_star] = ACTIONS(5083), - [sym__strong_emphasis_open_underscore] = ACTIONS(5083), - }, - [STATE(1573)] = { - [sym__backslash_escape] = ACTIONS(5087), - [sym_entity_reference] = ACTIONS(5087), - [sym_numeric_character_reference] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_DQUOTE] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_AMP] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_QMARK] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym_BQUOTE] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_PIPE] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [sym__newline_token] = ACTIONS(5087), - [aux_sym_insert_token1] = ACTIONS(5087), - [aux_sym_delete_token1] = ACTIONS(5087), - [aux_sym_highlight_token1] = ACTIONS(5087), - [aux_sym_edit_comment_token1] = ACTIONS(5087), - [anon_sym_CARET_LBRACK] = ACTIONS(5087), - [anon_sym_LBRACK_CARET] = ACTIONS(5087), - [sym_uri_autolink] = ACTIONS(5087), - [sym_email_autolink] = ACTIONS(5087), - [sym__whitespace_ge_2] = ACTIONS(5087), - [aux_sym__whitespace_token1] = ACTIONS(5089), - [sym__word_no_digit] = ACTIONS(5087), - [sym__digits] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5087), - [sym__code_span_start] = ACTIONS(5087), - [sym__emphasis_open_star] = ACTIONS(5087), - [sym__emphasis_open_underscore] = ACTIONS(5087), - [sym__strikeout_open] = ACTIONS(5087), - [sym__strikeout_close] = ACTIONS(5087), - [sym__latex_span_start] = ACTIONS(5087), - [sym__single_quote_open] = ACTIONS(5087), - [sym__double_quote_open] = ACTIONS(5087), - [sym__superscript_open] = ACTIONS(5087), - [sym__subscript_open] = ACTIONS(5087), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5087), - [sym__cite_author_in_text] = ACTIONS(5087), - [sym__cite_suppress_author] = ACTIONS(5087), - [sym__shortcode_open_escaped] = ACTIONS(5087), - [sym__shortcode_open] = ACTIONS(5087), - [sym__unclosed_span] = ACTIONS(5087), - [sym__strong_emphasis_open_star] = ACTIONS(5087), - [sym__strong_emphasis_open_underscore] = ACTIONS(5087), - }, - [STATE(1574)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__strikeout_open] = ACTIONS(4797), - [sym__strikeout_close] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), - }, - [STATE(1575)] = { - [sym__backslash_escape] = ACTIONS(5091), - [sym_entity_reference] = ACTIONS(5091), - [sym_numeric_character_reference] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(5091), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_BSLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym_BQUOTE] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [sym__newline_token] = ACTIONS(5091), - [aux_sym_insert_token1] = ACTIONS(5091), - [aux_sym_delete_token1] = ACTIONS(5091), - [aux_sym_highlight_token1] = ACTIONS(5091), - [aux_sym_edit_comment_token1] = ACTIONS(5091), - [anon_sym_CARET_LBRACK] = ACTIONS(5091), - [anon_sym_LBRACK_CARET] = ACTIONS(5091), - [sym_uri_autolink] = ACTIONS(5091), - [sym_email_autolink] = ACTIONS(5091), - [sym__whitespace_ge_2] = ACTIONS(5091), - [aux_sym__whitespace_token1] = ACTIONS(5093), - [sym__word_no_digit] = ACTIONS(5091), - [sym__digits] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), - [sym__code_span_start] = ACTIONS(5091), - [sym__emphasis_open_star] = ACTIONS(5091), - [sym__emphasis_open_underscore] = ACTIONS(5091), - [sym__strikeout_open] = ACTIONS(5091), - [sym__strikeout_close] = ACTIONS(5091), - [sym__latex_span_start] = ACTIONS(5091), - [sym__single_quote_open] = ACTIONS(5091), - [sym__double_quote_open] = ACTIONS(5091), - [sym__superscript_open] = ACTIONS(5091), - [sym__subscript_open] = ACTIONS(5091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5091), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5091), - [sym__cite_author_in_text] = ACTIONS(5091), - [sym__cite_suppress_author] = ACTIONS(5091), - [sym__shortcode_open_escaped] = ACTIONS(5091), - [sym__shortcode_open] = ACTIONS(5091), - [sym__unclosed_span] = ACTIONS(5091), - [sym__strong_emphasis_open_star] = ACTIONS(5091), - [sym__strong_emphasis_open_underscore] = ACTIONS(5091), - }, - [STATE(1576)] = { - [sym__backslash_escape] = ACTIONS(5095), - [sym_entity_reference] = ACTIONS(5095), - [sym_numeric_character_reference] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_BSLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym_BQUOTE] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [sym__newline_token] = ACTIONS(5095), - [aux_sym_insert_token1] = ACTIONS(5095), - [aux_sym_delete_token1] = ACTIONS(5095), - [aux_sym_highlight_token1] = ACTIONS(5095), - [aux_sym_edit_comment_token1] = ACTIONS(5095), - [anon_sym_CARET_LBRACK] = ACTIONS(5095), - [anon_sym_LBRACK_CARET] = ACTIONS(5095), - [sym_uri_autolink] = ACTIONS(5095), - [sym_email_autolink] = ACTIONS(5095), - [sym__whitespace_ge_2] = ACTIONS(5095), - [aux_sym__whitespace_token1] = ACTIONS(5097), - [sym__word_no_digit] = ACTIONS(5095), - [sym__digits] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5095), - [sym__code_span_start] = ACTIONS(5095), - [sym__emphasis_open_star] = ACTIONS(5095), - [sym__emphasis_open_underscore] = ACTIONS(5095), - [sym__strikeout_open] = ACTIONS(5095), - [sym__strikeout_close] = ACTIONS(5095), - [sym__latex_span_start] = ACTIONS(5095), - [sym__single_quote_open] = ACTIONS(5095), - [sym__double_quote_open] = ACTIONS(5095), - [sym__superscript_open] = ACTIONS(5095), - [sym__subscript_open] = ACTIONS(5095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5095), - [sym__cite_author_in_text] = ACTIONS(5095), - [sym__cite_suppress_author] = ACTIONS(5095), - [sym__shortcode_open_escaped] = ACTIONS(5095), - [sym__shortcode_open] = ACTIONS(5095), - [sym__unclosed_span] = ACTIONS(5095), - [sym__strong_emphasis_open_star] = ACTIONS(5095), - [sym__strong_emphasis_open_underscore] = ACTIONS(5095), - }, - [STATE(1577)] = { - [sym__backslash_escape] = ACTIONS(5099), - [sym_entity_reference] = ACTIONS(5099), - [sym_numeric_character_reference] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [sym__newline_token] = ACTIONS(5099), - [aux_sym_insert_token1] = ACTIONS(5099), - [aux_sym_delete_token1] = ACTIONS(5099), - [aux_sym_highlight_token1] = ACTIONS(5099), - [aux_sym_edit_comment_token1] = ACTIONS(5099), - [anon_sym_CARET_LBRACK] = ACTIONS(5099), - [anon_sym_LBRACK_CARET] = ACTIONS(5099), - [sym_uri_autolink] = ACTIONS(5099), - [sym_email_autolink] = ACTIONS(5099), - [sym__whitespace_ge_2] = ACTIONS(5099), - [aux_sym__whitespace_token1] = ACTIONS(5101), - [sym__word_no_digit] = ACTIONS(5099), - [sym__digits] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5099), - [sym__code_span_start] = ACTIONS(5099), - [sym__emphasis_open_star] = ACTIONS(5099), - [sym__emphasis_open_underscore] = ACTIONS(5099), - [sym__strikeout_open] = ACTIONS(5099), - [sym__strikeout_close] = ACTIONS(5099), - [sym__latex_span_start] = ACTIONS(5099), - [sym__single_quote_open] = ACTIONS(5099), - [sym__double_quote_open] = ACTIONS(5099), - [sym__superscript_open] = ACTIONS(5099), - [sym__subscript_open] = ACTIONS(5099), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5099), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5099), - [sym__cite_author_in_text] = ACTIONS(5099), - [sym__cite_suppress_author] = ACTIONS(5099), - [sym__shortcode_open_escaped] = ACTIONS(5099), - [sym__shortcode_open] = ACTIONS(5099), - [sym__unclosed_span] = ACTIONS(5099), - [sym__strong_emphasis_open_star] = ACTIONS(5099), - [sym__strong_emphasis_open_underscore] = ACTIONS(5099), - }, - [STATE(1578)] = { - [sym__backslash_escape] = ACTIONS(5103), - [sym_entity_reference] = ACTIONS(5103), - [sym_numeric_character_reference] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(5103), - [anon_sym_POUND] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_BSLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [sym__newline_token] = ACTIONS(5103), - [aux_sym_insert_token1] = ACTIONS(5103), - [aux_sym_delete_token1] = ACTIONS(5103), - [aux_sym_highlight_token1] = ACTIONS(5103), - [aux_sym_edit_comment_token1] = ACTIONS(5103), - [anon_sym_CARET_LBRACK] = ACTIONS(5103), - [anon_sym_LBRACK_CARET] = ACTIONS(5103), - [sym_uri_autolink] = ACTIONS(5103), - [sym_email_autolink] = ACTIONS(5103), - [sym__whitespace_ge_2] = ACTIONS(5103), - [aux_sym__whitespace_token1] = ACTIONS(5105), - [sym__word_no_digit] = ACTIONS(5103), - [sym__digits] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5103), - [sym__code_span_start] = ACTIONS(5103), - [sym__emphasis_open_star] = ACTIONS(5103), - [sym__emphasis_open_underscore] = ACTIONS(5103), - [sym__strikeout_open] = ACTIONS(5103), - [sym__strikeout_close] = ACTIONS(5103), - [sym__latex_span_start] = ACTIONS(5103), - [sym__single_quote_open] = ACTIONS(5103), - [sym__double_quote_open] = ACTIONS(5103), - [sym__superscript_open] = ACTIONS(5103), - [sym__subscript_open] = ACTIONS(5103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5103), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5103), - [sym__cite_author_in_text] = ACTIONS(5103), - [sym__cite_suppress_author] = ACTIONS(5103), - [sym__shortcode_open_escaped] = ACTIONS(5103), - [sym__shortcode_open] = ACTIONS(5103), - [sym__unclosed_span] = ACTIONS(5103), - [sym__strong_emphasis_open_star] = ACTIONS(5103), - [sym__strong_emphasis_open_underscore] = ACTIONS(5103), - }, - [STATE(1579)] = { - [sym__backslash_escape] = ACTIONS(5107), - [sym_entity_reference] = ACTIONS(5107), - [sym_numeric_character_reference] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_COLON] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_BSLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_BQUOTE] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_PIPE] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [sym__newline_token] = ACTIONS(5107), - [aux_sym_insert_token1] = ACTIONS(5107), - [aux_sym_delete_token1] = ACTIONS(5107), - [aux_sym_highlight_token1] = ACTIONS(5107), - [aux_sym_edit_comment_token1] = ACTIONS(5107), - [anon_sym_CARET_LBRACK] = ACTIONS(5107), - [anon_sym_LBRACK_CARET] = ACTIONS(5107), - [sym_uri_autolink] = ACTIONS(5107), - [sym_email_autolink] = ACTIONS(5107), - [sym__whitespace_ge_2] = ACTIONS(5107), - [aux_sym__whitespace_token1] = ACTIONS(5109), - [sym__word_no_digit] = ACTIONS(5107), - [sym__digits] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5107), - [sym__code_span_start] = ACTIONS(5107), - [sym__emphasis_open_star] = ACTIONS(5107), - [sym__emphasis_open_underscore] = ACTIONS(5107), - [sym__strikeout_open] = ACTIONS(5107), - [sym__strikeout_close] = ACTIONS(5107), - [sym__latex_span_start] = ACTIONS(5107), - [sym__single_quote_open] = ACTIONS(5107), - [sym__double_quote_open] = ACTIONS(5107), - [sym__superscript_open] = ACTIONS(5107), - [sym__subscript_open] = ACTIONS(5107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5107), - [sym__cite_author_in_text] = ACTIONS(5107), - [sym__cite_suppress_author] = ACTIONS(5107), - [sym__shortcode_open_escaped] = ACTIONS(5107), - [sym__shortcode_open] = ACTIONS(5107), - [sym__unclosed_span] = ACTIONS(5107), - [sym__strong_emphasis_open_star] = ACTIONS(5107), - [sym__strong_emphasis_open_underscore] = ACTIONS(5107), - }, - [STATE(1580)] = { - [sym__backslash_escape] = ACTIONS(5111), - [sym_entity_reference] = ACTIONS(5111), - [sym_numeric_character_reference] = ACTIONS(5111), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym_BQUOTE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [sym__newline_token] = ACTIONS(5111), - [aux_sym_insert_token1] = ACTIONS(5111), - [aux_sym_delete_token1] = ACTIONS(5111), - [aux_sym_highlight_token1] = ACTIONS(5111), - [aux_sym_edit_comment_token1] = ACTIONS(5111), - [anon_sym_CARET_LBRACK] = ACTIONS(5111), - [anon_sym_LBRACK_CARET] = ACTIONS(5111), - [sym_uri_autolink] = ACTIONS(5111), - [sym_email_autolink] = ACTIONS(5111), - [sym__whitespace_ge_2] = ACTIONS(5111), - [aux_sym__whitespace_token1] = ACTIONS(5113), - [sym__word_no_digit] = ACTIONS(5111), - [sym__digits] = ACTIONS(5111), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [sym__code_span_start] = ACTIONS(5111), - [sym__emphasis_open_star] = ACTIONS(5111), - [sym__emphasis_open_underscore] = ACTIONS(5111), - [sym__strikeout_open] = ACTIONS(5111), - [sym__strikeout_close] = ACTIONS(5111), - [sym__latex_span_start] = ACTIONS(5111), - [sym__single_quote_open] = ACTIONS(5111), - [sym__double_quote_open] = ACTIONS(5111), - [sym__superscript_open] = ACTIONS(5111), - [sym__subscript_open] = ACTIONS(5111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5111), - [sym__cite_author_in_text] = ACTIONS(5111), - [sym__cite_suppress_author] = ACTIONS(5111), - [sym__shortcode_open_escaped] = ACTIONS(5111), - [sym__shortcode_open] = ACTIONS(5111), - [sym__unclosed_span] = ACTIONS(5111), - [sym__strong_emphasis_open_star] = ACTIONS(5111), - [sym__strong_emphasis_open_underscore] = ACTIONS(5111), - }, - [STATE(1581)] = { - [sym__backslash_escape] = ACTIONS(5115), - [sym_entity_reference] = ACTIONS(5115), - [sym_numeric_character_reference] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(5115), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_QMARK] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym_BQUOTE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [sym__newline_token] = ACTIONS(5115), - [aux_sym_insert_token1] = ACTIONS(5115), - [aux_sym_delete_token1] = ACTIONS(5115), - [aux_sym_highlight_token1] = ACTIONS(5115), - [aux_sym_edit_comment_token1] = ACTIONS(5115), - [anon_sym_CARET_LBRACK] = ACTIONS(5115), - [anon_sym_LBRACK_CARET] = ACTIONS(5115), - [sym_uri_autolink] = ACTIONS(5115), - [sym_email_autolink] = ACTIONS(5115), - [sym__whitespace_ge_2] = ACTIONS(5115), - [aux_sym__whitespace_token1] = ACTIONS(5117), - [sym__word_no_digit] = ACTIONS(5115), - [sym__digits] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5115), - [sym__code_span_start] = ACTIONS(5115), - [sym__emphasis_open_star] = ACTIONS(5115), - [sym__emphasis_open_underscore] = ACTIONS(5115), - [sym__strikeout_open] = ACTIONS(5115), - [sym__strikeout_close] = ACTIONS(5115), - [sym__latex_span_start] = ACTIONS(5115), - [sym__single_quote_open] = ACTIONS(5115), - [sym__double_quote_open] = ACTIONS(5115), - [sym__superscript_open] = ACTIONS(5115), - [sym__subscript_open] = ACTIONS(5115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5115), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5115), - [sym__cite_author_in_text] = ACTIONS(5115), - [sym__cite_suppress_author] = ACTIONS(5115), - [sym__shortcode_open_escaped] = ACTIONS(5115), - [sym__shortcode_open] = ACTIONS(5115), - [sym__unclosed_span] = ACTIONS(5115), - [sym__strong_emphasis_open_star] = ACTIONS(5115), - [sym__strong_emphasis_open_underscore] = ACTIONS(5115), - }, - [STATE(1582)] = { - [sym__backslash_escape] = ACTIONS(5119), - [sym_entity_reference] = ACTIONS(5119), - [sym_numeric_character_reference] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_AMP] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [sym__newline_token] = ACTIONS(5119), - [aux_sym_insert_token1] = ACTIONS(5119), - [aux_sym_delete_token1] = ACTIONS(5119), - [aux_sym_highlight_token1] = ACTIONS(5119), - [aux_sym_edit_comment_token1] = ACTIONS(5119), - [anon_sym_CARET_LBRACK] = ACTIONS(5119), - [anon_sym_LBRACK_CARET] = ACTIONS(5119), - [sym_uri_autolink] = ACTIONS(5119), - [sym_email_autolink] = ACTIONS(5119), - [sym__whitespace_ge_2] = ACTIONS(5119), - [aux_sym__whitespace_token1] = ACTIONS(5121), - [sym__word_no_digit] = ACTIONS(5119), - [sym__digits] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5119), - [sym__code_span_start] = ACTIONS(5119), - [sym__emphasis_open_star] = ACTIONS(5119), - [sym__emphasis_open_underscore] = ACTIONS(5119), - [sym__strikeout_open] = ACTIONS(5119), - [sym__strikeout_close] = ACTIONS(5119), - [sym__latex_span_start] = ACTIONS(5119), - [sym__single_quote_open] = ACTIONS(5119), - [sym__double_quote_open] = ACTIONS(5119), - [sym__superscript_open] = ACTIONS(5119), - [sym__subscript_open] = ACTIONS(5119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5119), - [sym__cite_author_in_text] = ACTIONS(5119), - [sym__cite_suppress_author] = ACTIONS(5119), - [sym__shortcode_open_escaped] = ACTIONS(5119), - [sym__shortcode_open] = ACTIONS(5119), - [sym__unclosed_span] = ACTIONS(5119), - [sym__strong_emphasis_open_star] = ACTIONS(5119), - [sym__strong_emphasis_open_underscore] = ACTIONS(5119), - }, - [STATE(1583)] = { - [sym__backslash_escape] = ACTIONS(5123), - [sym_entity_reference] = ACTIONS(5123), - [sym_numeric_character_reference] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_DQUOTE] = ACTIONS(5123), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym_BQUOTE] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [sym__newline_token] = ACTIONS(5123), - [aux_sym_insert_token1] = ACTIONS(5123), - [aux_sym_delete_token1] = ACTIONS(5123), - [aux_sym_highlight_token1] = ACTIONS(5123), - [aux_sym_edit_comment_token1] = ACTIONS(5123), - [anon_sym_CARET_LBRACK] = ACTIONS(5123), - [anon_sym_LBRACK_CARET] = ACTIONS(5123), - [sym_uri_autolink] = ACTIONS(5123), - [sym_email_autolink] = ACTIONS(5123), - [sym__whitespace_ge_2] = ACTIONS(5123), - [aux_sym__whitespace_token1] = ACTIONS(5125), - [sym__word_no_digit] = ACTIONS(5123), - [sym__digits] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), - [sym__code_span_start] = ACTIONS(5123), - [sym__emphasis_open_star] = ACTIONS(5123), - [sym__emphasis_open_underscore] = ACTIONS(5123), - [sym__strikeout_open] = ACTIONS(5123), - [sym__strikeout_close] = ACTIONS(5123), - [sym__latex_span_start] = ACTIONS(5123), - [sym__single_quote_open] = ACTIONS(5123), - [sym__double_quote_open] = ACTIONS(5123), - [sym__superscript_open] = ACTIONS(5123), - [sym__subscript_open] = ACTIONS(5123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5123), - [sym__cite_author_in_text] = ACTIONS(5123), - [sym__cite_suppress_author] = ACTIONS(5123), - [sym__shortcode_open_escaped] = ACTIONS(5123), - [sym__shortcode_open] = ACTIONS(5123), - [sym__unclosed_span] = ACTIONS(5123), - [sym__strong_emphasis_open_star] = ACTIONS(5123), - [sym__strong_emphasis_open_underscore] = ACTIONS(5123), - }, - [STATE(1584)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -155689,7 +152674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(4631), [anon_sym_AMP] = ACTIONS(4633), [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_STAR] = ACTIONS(4631), [anon_sym_PLUS] = ACTIONS(4631), [anon_sym_COMMA] = ACTIONS(4631), [anon_sym_DASH] = ACTIONS(4633), @@ -155728,9 +152712,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(4631), [sym__emphasis_open_underscore] = ACTIONS(4631), [sym__strikeout_open] = ACTIONS(4631), - [sym__strikeout_close] = ACTIONS(4631), [sym__latex_span_start] = ACTIONS(4631), [sym__single_quote_open] = ACTIONS(4631), + [sym__single_quote_close] = ACTIONS(4631), [sym__double_quote_open] = ACTIONS(4631), [sym__superscript_open] = ACTIONS(4631), [sym__subscript_open] = ACTIONS(4631), @@ -155744,5447 +152728,5769 @@ 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(1564)] = { + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__single_quote_close] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), + }, + [STATE(1565)] = { + [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__single_quote_close] = 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(1566)] = { + [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(1567)] = { + [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__single_quote_close] = 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(1568)] = { + [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__single_quote_close] = 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(1569)] = { + [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__single_quote_close] = 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(1570)] = { + [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__single_quote_close] = 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(1571)] = { + [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__single_quote_close] = 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(1572)] = { + [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__single_quote_close] = 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(1573)] = { + [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__strikeout_open] = ACTIONS(4667), + [sym__latex_span_start] = ACTIONS(4667), + [sym__single_quote_open] = ACTIONS(4667), + [sym__single_quote_close] = 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(1574)] = { + [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__single_quote_close] = 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(1575)] = { + [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__single_quote_close] = 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(1576)] = { + [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__single_quote_close] = 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(1577)] = { + [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__single_quote_close] = 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(1578)] = { + [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__single_quote_close] = 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(1579)] = { + [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__single_quote_close] = 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(1580)] = { + [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__single_quote_close] = 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(1581)] = { + [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__single_quote_close] = 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(1582)] = { + [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__single_quote_close] = 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(1583)] = { + [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__single_quote_close] = 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(1584)] = { + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__single_quote_close] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), + }, [STATE(1585)] = { - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__strikeout_close] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [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__single_quote_close] = 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(1586)] = { - [ts_builtin_sym_end] = ACTIONS(4967), - [sym__backslash_escape] = ACTIONS(4967), - [sym_entity_reference] = ACTIONS(4967), - [sym_numeric_character_reference] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_BQUOTE] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [sym__newline_token] = ACTIONS(4967), - [aux_sym_insert_token1] = ACTIONS(4967), - [aux_sym_delete_token1] = ACTIONS(4967), - [aux_sym_highlight_token1] = ACTIONS(4967), - [aux_sym_edit_comment_token1] = ACTIONS(4967), - [anon_sym_CARET_LBRACK] = ACTIONS(4967), - [anon_sym_LBRACK_CARET] = ACTIONS(4967), - [sym_uri_autolink] = ACTIONS(4967), - [sym_email_autolink] = ACTIONS(4967), - [sym__whitespace_ge_2] = ACTIONS(4967), - [aux_sym__whitespace_token1] = ACTIONS(4969), - [sym__word_no_digit] = ACTIONS(4967), - [sym__digits] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [sym__code_span_start] = ACTIONS(4967), - [sym__emphasis_open_star] = ACTIONS(4967), - [sym__emphasis_open_underscore] = ACTIONS(4967), - [sym__strikeout_open] = ACTIONS(4967), - [sym__latex_span_start] = ACTIONS(4967), - [sym__single_quote_open] = ACTIONS(4967), - [sym__double_quote_open] = ACTIONS(4967), - [sym__superscript_open] = ACTIONS(4967), - [sym__subscript_open] = ACTIONS(4967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4967), - [sym__cite_author_in_text] = ACTIONS(4967), - [sym__cite_suppress_author] = ACTIONS(4967), - [sym__shortcode_open_escaped] = ACTIONS(4967), - [sym__shortcode_open] = ACTIONS(4967), - [sym__unclosed_span] = ACTIONS(4967), - [sym__strong_emphasis_open_star] = ACTIONS(4967), - [sym__strong_emphasis_open_underscore] = ACTIONS(4967), + [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__single_quote_close] = 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(1587)] = { - [sym__backslash_escape] = ACTIONS(5127), - [sym_entity_reference] = ACTIONS(5127), - [sym_numeric_character_reference] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_DQUOTE] = ACTIONS(5127), - [anon_sym_POUND] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_PERCENT] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_QMARK] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym_BQUOTE] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym__newline_token] = ACTIONS(5127), - [aux_sym_insert_token1] = ACTIONS(5127), - [aux_sym_delete_token1] = ACTIONS(5127), - [aux_sym_highlight_token1] = ACTIONS(5127), - [aux_sym_edit_comment_token1] = ACTIONS(5127), - [anon_sym_CARET_LBRACK] = ACTIONS(5127), - [anon_sym_LBRACK_CARET] = ACTIONS(5127), - [sym_uri_autolink] = ACTIONS(5127), - [sym_email_autolink] = ACTIONS(5127), - [sym__whitespace_ge_2] = ACTIONS(5127), - [aux_sym__whitespace_token1] = ACTIONS(5129), - [sym__word_no_digit] = ACTIONS(5127), - [sym__digits] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5127), - [sym__code_span_start] = ACTIONS(5127), - [sym__emphasis_open_star] = ACTIONS(5127), - [sym__emphasis_open_underscore] = ACTIONS(5127), - [sym__strikeout_open] = ACTIONS(5127), - [sym__strikeout_close] = ACTIONS(5127), - [sym__latex_span_start] = ACTIONS(5127), - [sym__single_quote_open] = ACTIONS(5127), - [sym__double_quote_open] = ACTIONS(5127), - [sym__superscript_open] = ACTIONS(5127), - [sym__subscript_open] = ACTIONS(5127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5127), - [sym__cite_author_in_text] = ACTIONS(5127), - [sym__cite_suppress_author] = ACTIONS(5127), - [sym__shortcode_open_escaped] = ACTIONS(5127), - [sym__shortcode_open] = ACTIONS(5127), - [sym__unclosed_span] = ACTIONS(5127), - [sym__strong_emphasis_open_star] = ACTIONS(5127), - [sym__strong_emphasis_open_underscore] = ACTIONS(5127), + [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__single_quote_close] = 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(1588)] = { - [sym__backslash_escape] = ACTIONS(5131), - [sym_entity_reference] = ACTIONS(5131), - [sym_numeric_character_reference] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(5131), - [anon_sym_POUND] = ACTIONS(5131), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(5133), - [anon_sym_SQUOTE] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_QMARK] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(5133), - [anon_sym_BQUOTE] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_PIPE] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [sym__newline_token] = ACTIONS(5131), - [aux_sym_insert_token1] = ACTIONS(5131), - [aux_sym_delete_token1] = ACTIONS(5131), - [aux_sym_highlight_token1] = ACTIONS(5131), - [aux_sym_edit_comment_token1] = ACTIONS(5131), - [anon_sym_CARET_LBRACK] = ACTIONS(5131), - [anon_sym_LBRACK_CARET] = ACTIONS(5131), - [sym_uri_autolink] = ACTIONS(5131), - [sym_email_autolink] = ACTIONS(5131), - [sym__whitespace_ge_2] = ACTIONS(5131), - [aux_sym__whitespace_token1] = ACTIONS(5133), - [sym__word_no_digit] = ACTIONS(5131), - [sym__digits] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), - [sym__code_span_start] = ACTIONS(5131), - [sym__emphasis_open_star] = ACTIONS(5131), - [sym__emphasis_open_underscore] = ACTIONS(5131), - [sym__strikeout_open] = ACTIONS(5131), - [sym__strikeout_close] = ACTIONS(5131), - [sym__latex_span_start] = ACTIONS(5131), - [sym__single_quote_open] = ACTIONS(5131), - [sym__double_quote_open] = ACTIONS(5131), - [sym__superscript_open] = ACTIONS(5131), - [sym__subscript_open] = ACTIONS(5131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5131), - [sym__cite_author_in_text] = ACTIONS(5131), - [sym__cite_suppress_author] = ACTIONS(5131), - [sym__shortcode_open_escaped] = ACTIONS(5131), - [sym__shortcode_open] = ACTIONS(5131), - [sym__unclosed_span] = ACTIONS(5131), - [sym__strong_emphasis_open_star] = ACTIONS(5131), - [sym__strong_emphasis_open_underscore] = ACTIONS(5131), + [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__single_quote_close] = 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(1589)] = { - [sym__backslash_escape] = ACTIONS(5135), - [sym_entity_reference] = ACTIONS(5135), - [sym_numeric_character_reference] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_AMP] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_QMARK] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH] = ACTIONS(5137), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [sym__newline_token] = ACTIONS(5135), - [aux_sym_insert_token1] = ACTIONS(5135), - [aux_sym_delete_token1] = ACTIONS(5135), - [aux_sym_highlight_token1] = ACTIONS(5135), - [aux_sym_edit_comment_token1] = ACTIONS(5135), - [anon_sym_CARET_LBRACK] = ACTIONS(5135), - [anon_sym_LBRACK_CARET] = ACTIONS(5135), - [sym_uri_autolink] = ACTIONS(5135), - [sym_email_autolink] = ACTIONS(5135), - [sym__whitespace_ge_2] = ACTIONS(5135), - [aux_sym__whitespace_token1] = ACTIONS(5137), - [sym__word_no_digit] = ACTIONS(5135), - [sym__digits] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5135), - [sym__code_span_start] = ACTIONS(5135), - [sym__emphasis_open_star] = ACTIONS(5135), - [sym__emphasis_open_underscore] = ACTIONS(5135), - [sym__strikeout_open] = ACTIONS(5135), - [sym__strikeout_close] = ACTIONS(5135), - [sym__latex_span_start] = ACTIONS(5135), - [sym__single_quote_open] = ACTIONS(5135), - [sym__double_quote_open] = ACTIONS(5135), - [sym__superscript_open] = ACTIONS(5135), - [sym__subscript_open] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5135), - [sym__cite_author_in_text] = ACTIONS(5135), - [sym__cite_suppress_author] = ACTIONS(5135), - [sym__shortcode_open_escaped] = ACTIONS(5135), - [sym__shortcode_open] = ACTIONS(5135), - [sym__unclosed_span] = ACTIONS(5135), - [sym__strong_emphasis_open_star] = ACTIONS(5135), - [sym__strong_emphasis_open_underscore] = ACTIONS(5135), + [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__single_quote_close] = 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(1590)] = { - [sym__backslash_escape] = ACTIONS(5139), - [sym_entity_reference] = ACTIONS(5139), - [sym_numeric_character_reference] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_DQUOTE] = ACTIONS(5139), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH] = ACTIONS(5141), - [anon_sym_CARET] = ACTIONS(5141), - [anon_sym_BQUOTE] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_RPAREN] = ACTIONS(5139), - [sym__newline_token] = ACTIONS(5139), - [aux_sym_insert_token1] = ACTIONS(5139), - [aux_sym_delete_token1] = ACTIONS(5139), - [aux_sym_highlight_token1] = ACTIONS(5139), - [aux_sym_edit_comment_token1] = ACTIONS(5139), - [anon_sym_CARET_LBRACK] = ACTIONS(5139), - [anon_sym_LBRACK_CARET] = ACTIONS(5139), - [sym_uri_autolink] = ACTIONS(5139), - [sym_email_autolink] = ACTIONS(5139), - [sym__whitespace_ge_2] = ACTIONS(5139), - [aux_sym__whitespace_token1] = ACTIONS(5141), - [sym__word_no_digit] = ACTIONS(5139), - [sym__digits] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5141), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5139), - [sym__code_span_start] = ACTIONS(5139), - [sym__emphasis_open_star] = ACTIONS(5139), - [sym__emphasis_open_underscore] = ACTIONS(5139), - [sym__strikeout_open] = ACTIONS(5139), - [sym__strikeout_close] = ACTIONS(5139), - [sym__latex_span_start] = ACTIONS(5139), - [sym__single_quote_open] = ACTIONS(5139), - [sym__double_quote_open] = ACTIONS(5139), - [sym__superscript_open] = ACTIONS(5139), - [sym__subscript_open] = ACTIONS(5139), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5139), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5139), - [sym__cite_author_in_text] = ACTIONS(5139), - [sym__cite_suppress_author] = ACTIONS(5139), - [sym__shortcode_open_escaped] = ACTIONS(5139), - [sym__shortcode_open] = ACTIONS(5139), - [sym__unclosed_span] = ACTIONS(5139), - [sym__strong_emphasis_open_star] = ACTIONS(5139), - [sym__strong_emphasis_open_underscore] = ACTIONS(5139), + [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__single_quote_close] = 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(1591)] = { - [sym__backslash_escape] = ACTIONS(5143), - [sym_entity_reference] = ACTIONS(5143), - [sym_numeric_character_reference] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_DQUOTE] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_PERCENT] = ACTIONS(5143), - [anon_sym_AMP] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH] = ACTIONS(5145), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym_BQUOTE] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [sym__newline_token] = ACTIONS(5143), - [aux_sym_insert_token1] = ACTIONS(5143), - [aux_sym_delete_token1] = ACTIONS(5143), - [aux_sym_highlight_token1] = ACTIONS(5143), - [aux_sym_edit_comment_token1] = ACTIONS(5143), - [anon_sym_CARET_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_CARET] = ACTIONS(5143), - [sym_uri_autolink] = ACTIONS(5143), - [sym_email_autolink] = ACTIONS(5143), - [sym__whitespace_ge_2] = ACTIONS(5143), - [aux_sym__whitespace_token1] = ACTIONS(5145), - [sym__word_no_digit] = ACTIONS(5143), - [sym__digits] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5143), - [sym__code_span_start] = ACTIONS(5143), - [sym__emphasis_open_star] = ACTIONS(5143), - [sym__emphasis_open_underscore] = ACTIONS(5143), - [sym__strikeout_open] = ACTIONS(5143), - [sym__strikeout_close] = ACTIONS(5143), - [sym__latex_span_start] = ACTIONS(5143), - [sym__single_quote_open] = ACTIONS(5143), - [sym__double_quote_open] = ACTIONS(5143), - [sym__superscript_open] = ACTIONS(5143), - [sym__subscript_open] = ACTIONS(5143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5143), - [sym__cite_author_in_text] = ACTIONS(5143), - [sym__cite_suppress_author] = ACTIONS(5143), - [sym__shortcode_open_escaped] = ACTIONS(5143), - [sym__shortcode_open] = ACTIONS(5143), - [sym__unclosed_span] = ACTIONS(5143), - [sym__strong_emphasis_open_star] = ACTIONS(5143), - [sym__strong_emphasis_open_underscore] = ACTIONS(5143), + [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__superscript_close] = 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(1592)] = { - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__strikeout_close] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [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__single_quote_close] = 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(1593)] = { - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__strikeout_close] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [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__single_quote_close] = 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(1594)] = { - [sym__backslash_escape] = ACTIONS(5147), - [sym_entity_reference] = ACTIONS(5147), - [sym_numeric_character_reference] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_DQUOTE] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [sym__newline_token] = ACTIONS(5147), - [aux_sym_insert_token1] = ACTIONS(5147), - [aux_sym_delete_token1] = ACTIONS(5147), - [aux_sym_highlight_token1] = ACTIONS(5147), - [aux_sym_edit_comment_token1] = ACTIONS(5147), - [anon_sym_CARET_LBRACK] = ACTIONS(5147), - [anon_sym_LBRACK_CARET] = ACTIONS(5147), - [sym_uri_autolink] = ACTIONS(5147), - [sym_email_autolink] = ACTIONS(5147), - [sym__whitespace_ge_2] = ACTIONS(5147), - [aux_sym__whitespace_token1] = ACTIONS(5149), - [sym__word_no_digit] = ACTIONS(5147), - [sym__digits] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5147), - [sym__code_span_start] = ACTIONS(5147), - [sym__emphasis_open_star] = ACTIONS(5147), - [sym__emphasis_open_underscore] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5147), - [sym__strikeout_close] = ACTIONS(5147), - [sym__latex_span_start] = ACTIONS(5147), - [sym__single_quote_open] = ACTIONS(5147), - [sym__double_quote_open] = ACTIONS(5147), - [sym__superscript_open] = ACTIONS(5147), - [sym__subscript_open] = ACTIONS(5147), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5147), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5147), - [sym__cite_author_in_text] = ACTIONS(5147), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__shortcode_open_escaped] = ACTIONS(5147), - [sym__shortcode_open] = ACTIONS(5147), - [sym__unclosed_span] = ACTIONS(5147), - [sym__strong_emphasis_open_star] = ACTIONS(5147), - [sym__strong_emphasis_open_underscore] = ACTIONS(5147), + [sym__backslash_escape] = ACTIONS(4499), + [sym_entity_reference] = ACTIONS(4499), + [sym_numeric_character_reference] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4501), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_BSLASH] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_PIPE] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [sym__newline_token] = ACTIONS(4499), + [aux_sym_insert_token1] = ACTIONS(4499), + [aux_sym_delete_token1] = ACTIONS(4499), + [aux_sym_highlight_token1] = ACTIONS(4499), + [aux_sym_edit_comment_token1] = ACTIONS(4499), + [anon_sym_CARET_LBRACK] = ACTIONS(4499), + [anon_sym_LBRACK_CARET] = ACTIONS(4499), + [sym_uri_autolink] = ACTIONS(4499), + [sym_email_autolink] = ACTIONS(4499), + [sym__whitespace_ge_2] = ACTIONS(4499), + [aux_sym__whitespace_token1] = ACTIONS(4501), + [sym__word_no_digit] = ACTIONS(4499), + [sym__digits] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4499), + [sym__code_span_start] = ACTIONS(4499), + [sym__emphasis_open_star] = ACTIONS(4499), + [sym__emphasis_open_underscore] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4499), + [sym__latex_span_start] = ACTIONS(4499), + [sym__single_quote_open] = ACTIONS(4499), + [sym__single_quote_close] = ACTIONS(4499), + [sym__double_quote_open] = ACTIONS(4499), + [sym__superscript_open] = ACTIONS(4499), + [sym__subscript_open] = ACTIONS(4499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4499), + [sym__cite_author_in_text] = ACTIONS(4499), + [sym__cite_suppress_author] = ACTIONS(4499), + [sym__shortcode_open_escaped] = ACTIONS(4499), + [sym__shortcode_open] = ACTIONS(4499), + [sym__unclosed_span] = ACTIONS(4499), + [sym__strong_emphasis_open_star] = ACTIONS(4499), + [sym__strong_emphasis_open_underscore] = ACTIONS(4499), }, [STATE(1595)] = { - [sym__backslash_escape] = ACTIONS(5151), - [sym_entity_reference] = ACTIONS(5151), - [sym_numeric_character_reference] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_DQUOTE] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_PERCENT] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_QMARK] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [sym__newline_token] = ACTIONS(5151), - [aux_sym_insert_token1] = ACTIONS(5151), - [aux_sym_delete_token1] = ACTIONS(5151), - [aux_sym_highlight_token1] = ACTIONS(5151), - [aux_sym_edit_comment_token1] = ACTIONS(5151), - [anon_sym_CARET_LBRACK] = ACTIONS(5151), - [anon_sym_LBRACK_CARET] = ACTIONS(5151), - [sym_uri_autolink] = ACTIONS(5151), - [sym_email_autolink] = ACTIONS(5151), - [sym__whitespace_ge_2] = ACTIONS(5151), - [aux_sym__whitespace_token1] = ACTIONS(5153), - [sym__word_no_digit] = ACTIONS(5151), - [sym__digits] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5151), - [sym__code_span_start] = ACTIONS(5151), - [sym__emphasis_open_star] = ACTIONS(5151), - [sym__emphasis_open_underscore] = ACTIONS(5151), - [sym__strikeout_open] = ACTIONS(5151), - [sym__strikeout_close] = ACTIONS(5151), - [sym__latex_span_start] = ACTIONS(5151), - [sym__single_quote_open] = ACTIONS(5151), - [sym__double_quote_open] = ACTIONS(5151), - [sym__superscript_open] = ACTIONS(5151), - [sym__subscript_open] = ACTIONS(5151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5151), - [sym__cite_author_in_text] = ACTIONS(5151), - [sym__cite_suppress_author] = ACTIONS(5151), - [sym__shortcode_open_escaped] = ACTIONS(5151), - [sym__shortcode_open] = ACTIONS(5151), - [sym__unclosed_span] = ACTIONS(5151), - [sym__strong_emphasis_open_star] = ACTIONS(5151), - [sym__strong_emphasis_open_underscore] = ACTIONS(5151), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__single_quote_close] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(1596)] = { - [sym__backslash_escape] = ACTIONS(5155), - [sym_entity_reference] = ACTIONS(5155), - [sym_numeric_character_reference] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_QMARK] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [sym__newline_token] = ACTIONS(5155), - [aux_sym_insert_token1] = ACTIONS(5155), - [aux_sym_delete_token1] = ACTIONS(5155), - [aux_sym_highlight_token1] = ACTIONS(5155), - [aux_sym_edit_comment_token1] = ACTIONS(5155), - [anon_sym_CARET_LBRACK] = ACTIONS(5155), - [anon_sym_LBRACK_CARET] = ACTIONS(5155), - [sym_uri_autolink] = ACTIONS(5155), - [sym_email_autolink] = ACTIONS(5155), - [sym__whitespace_ge_2] = ACTIONS(5155), - [aux_sym__whitespace_token1] = ACTIONS(5157), - [sym__word_no_digit] = ACTIONS(5155), - [sym__digits] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5155), - [sym__code_span_start] = ACTIONS(5155), - [sym__emphasis_open_star] = ACTIONS(5155), - [sym__emphasis_open_underscore] = ACTIONS(5155), - [sym__strikeout_open] = ACTIONS(5155), - [sym__strikeout_close] = ACTIONS(5155), - [sym__latex_span_start] = ACTIONS(5155), - [sym__single_quote_open] = ACTIONS(5155), - [sym__double_quote_open] = ACTIONS(5155), - [sym__superscript_open] = ACTIONS(5155), - [sym__subscript_open] = ACTIONS(5155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5155), - [sym__cite_author_in_text] = ACTIONS(5155), - [sym__cite_suppress_author] = ACTIONS(5155), - [sym__shortcode_open_escaped] = ACTIONS(5155), - [sym__shortcode_open] = ACTIONS(5155), - [sym__unclosed_span] = ACTIONS(5155), - [sym__strong_emphasis_open_star] = ACTIONS(5155), - [sym__strong_emphasis_open_underscore] = ACTIONS(5155), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__single_quote_close] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(1597)] = { - [sym__backslash_escape] = ACTIONS(5159), - [sym_entity_reference] = ACTIONS(5159), - [sym_numeric_character_reference] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_DQUOTE] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_QMARK] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym__newline_token] = ACTIONS(5159), - [aux_sym_insert_token1] = ACTIONS(5159), - [aux_sym_delete_token1] = ACTIONS(5159), - [aux_sym_highlight_token1] = ACTIONS(5159), - [aux_sym_edit_comment_token1] = ACTIONS(5159), - [anon_sym_CARET_LBRACK] = ACTIONS(5159), - [anon_sym_LBRACK_CARET] = ACTIONS(5159), - [sym_uri_autolink] = ACTIONS(5159), - [sym_email_autolink] = ACTIONS(5159), - [sym__whitespace_ge_2] = ACTIONS(5159), - [aux_sym__whitespace_token1] = ACTIONS(5161), - [sym__word_no_digit] = ACTIONS(5159), - [sym__digits] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5159), - [sym__code_span_start] = ACTIONS(5159), - [sym__emphasis_open_star] = ACTIONS(5159), - [sym__emphasis_open_underscore] = ACTIONS(5159), - [sym__strikeout_open] = ACTIONS(5159), - [sym__strikeout_close] = ACTIONS(5159), - [sym__latex_span_start] = ACTIONS(5159), - [sym__single_quote_open] = ACTIONS(5159), - [sym__double_quote_open] = ACTIONS(5159), - [sym__superscript_open] = ACTIONS(5159), - [sym__subscript_open] = ACTIONS(5159), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5159), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5159), - [sym__cite_author_in_text] = ACTIONS(5159), - [sym__cite_suppress_author] = ACTIONS(5159), - [sym__shortcode_open_escaped] = ACTIONS(5159), - [sym__shortcode_open] = ACTIONS(5159), - [sym__unclosed_span] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5159), - [sym__strong_emphasis_open_underscore] = ACTIONS(5159), + [sym__backslash_escape] = ACTIONS(4507), + [sym_entity_reference] = ACTIONS(4507), + [sym_numeric_character_reference] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(4507), + [anon_sym_DOLLAR] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_QMARK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_BSLASH] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [sym__newline_token] = ACTIONS(4507), + [aux_sym_insert_token1] = ACTIONS(4507), + [aux_sym_delete_token1] = ACTIONS(4507), + [aux_sym_highlight_token1] = ACTIONS(4507), + [aux_sym_edit_comment_token1] = ACTIONS(4507), + [anon_sym_CARET_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK_CARET] = ACTIONS(4507), + [sym_uri_autolink] = ACTIONS(4507), + [sym_email_autolink] = ACTIONS(4507), + [sym__whitespace_ge_2] = ACTIONS(4507), + [aux_sym__whitespace_token1] = ACTIONS(4509), + [sym__word_no_digit] = ACTIONS(4507), + [sym__digits] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4507), + [sym__code_span_start] = ACTIONS(4507), + [sym__emphasis_open_star] = ACTIONS(4507), + [sym__emphasis_open_underscore] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4507), + [sym__latex_span_start] = ACTIONS(4507), + [sym__single_quote_open] = ACTIONS(4507), + [sym__single_quote_close] = ACTIONS(4507), + [sym__double_quote_open] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4507), + [sym__subscript_open] = ACTIONS(4507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4507), + [sym__cite_author_in_text] = ACTIONS(4507), + [sym__cite_suppress_author] = ACTIONS(4507), + [sym__shortcode_open_escaped] = ACTIONS(4507), + [sym__shortcode_open] = ACTIONS(4507), + [sym__unclosed_span] = ACTIONS(4507), + [sym__strong_emphasis_open_star] = ACTIONS(4507), + [sym__strong_emphasis_open_underscore] = ACTIONS(4507), }, [STATE(1598)] = { - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__strikeout_close] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [sym__backslash_escape] = ACTIONS(4511), + [sym_entity_reference] = ACTIONS(4511), + [sym_numeric_character_reference] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4511), + [anon_sym_POUND] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_COMMA] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_QMARK] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_BQUOTE] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(4511), + [sym__newline_token] = ACTIONS(4511), + [aux_sym_insert_token1] = ACTIONS(4511), + [aux_sym_delete_token1] = ACTIONS(4511), + [aux_sym_highlight_token1] = ACTIONS(4511), + [aux_sym_edit_comment_token1] = ACTIONS(4511), + [anon_sym_CARET_LBRACK] = ACTIONS(4511), + [anon_sym_LBRACK_CARET] = ACTIONS(4511), + [sym_uri_autolink] = ACTIONS(4511), + [sym_email_autolink] = ACTIONS(4511), + [sym__whitespace_ge_2] = ACTIONS(4511), + [aux_sym__whitespace_token1] = ACTIONS(4513), + [sym__word_no_digit] = ACTIONS(4511), + [sym__digits] = ACTIONS(4511), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), + [sym__code_span_start] = ACTIONS(4511), + [sym__emphasis_open_star] = ACTIONS(4511), + [sym__emphasis_open_underscore] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4511), + [sym__latex_span_start] = ACTIONS(4511), + [sym__single_quote_open] = ACTIONS(4511), + [sym__single_quote_close] = ACTIONS(4511), + [sym__double_quote_open] = ACTIONS(4511), + [sym__superscript_open] = ACTIONS(4511), + [sym__subscript_open] = ACTIONS(4511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), + [sym__cite_author_in_text] = ACTIONS(4511), + [sym__cite_suppress_author] = ACTIONS(4511), + [sym__shortcode_open_escaped] = ACTIONS(4511), + [sym__shortcode_open] = ACTIONS(4511), + [sym__unclosed_span] = ACTIONS(4511), + [sym__strong_emphasis_open_star] = ACTIONS(4511), + [sym__strong_emphasis_open_underscore] = ACTIONS(4511), }, [STATE(1599)] = { - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__strikeout_close] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [sym__backslash_escape] = ACTIONS(4515), + [sym_entity_reference] = ACTIONS(4515), + [sym_numeric_character_reference] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4515), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_BSLASH] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_RPAREN] = ACTIONS(4515), + [sym__newline_token] = ACTIONS(4515), + [aux_sym_insert_token1] = ACTIONS(4515), + [aux_sym_delete_token1] = ACTIONS(4515), + [aux_sym_highlight_token1] = ACTIONS(4515), + [aux_sym_edit_comment_token1] = ACTIONS(4515), + [anon_sym_CARET_LBRACK] = ACTIONS(4515), + [anon_sym_LBRACK_CARET] = ACTIONS(4515), + [sym_uri_autolink] = ACTIONS(4515), + [sym_email_autolink] = ACTIONS(4515), + [sym__whitespace_ge_2] = ACTIONS(4515), + [aux_sym__whitespace_token1] = ACTIONS(4517), + [sym__word_no_digit] = ACTIONS(4515), + [sym__digits] = ACTIONS(4515), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4515), + [sym__code_span_start] = ACTIONS(4515), + [sym__emphasis_open_star] = ACTIONS(4515), + [sym__emphasis_open_underscore] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4515), + [sym__latex_span_start] = ACTIONS(4515), + [sym__single_quote_open] = ACTIONS(4515), + [sym__single_quote_close] = ACTIONS(4515), + [sym__double_quote_open] = ACTIONS(4515), + [sym__superscript_open] = ACTIONS(4515), + [sym__subscript_open] = ACTIONS(4515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4515), + [sym__cite_author_in_text] = ACTIONS(4515), + [sym__cite_suppress_author] = ACTIONS(4515), + [sym__shortcode_open_escaped] = ACTIONS(4515), + [sym__shortcode_open] = ACTIONS(4515), + [sym__unclosed_span] = ACTIONS(4515), + [sym__strong_emphasis_open_star] = ACTIONS(4515), + [sym__strong_emphasis_open_underscore] = ACTIONS(4515), }, [STATE(1600)] = { - [sym__backslash_escape] = ACTIONS(5163), - [sym_entity_reference] = ACTIONS(5163), - [sym_numeric_character_reference] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_PERCENT] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym_BQUOTE] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [sym__newline_token] = ACTIONS(5163), - [aux_sym_insert_token1] = ACTIONS(5163), - [aux_sym_delete_token1] = ACTIONS(5163), - [aux_sym_highlight_token1] = ACTIONS(5163), - [aux_sym_edit_comment_token1] = ACTIONS(5163), - [anon_sym_CARET_LBRACK] = ACTIONS(5163), - [anon_sym_LBRACK_CARET] = ACTIONS(5163), - [sym_uri_autolink] = ACTIONS(5163), - [sym_email_autolink] = ACTIONS(5163), - [sym__whitespace_ge_2] = ACTIONS(5163), - [aux_sym__whitespace_token1] = ACTIONS(5165), - [sym__word_no_digit] = ACTIONS(5163), - [sym__digits] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5163), - [sym__code_span_start] = ACTIONS(5163), - [sym__emphasis_open_star] = ACTIONS(5163), - [sym__emphasis_open_underscore] = ACTIONS(5163), - [sym__strikeout_open] = ACTIONS(5163), - [sym__strikeout_close] = ACTIONS(5163), - [sym__latex_span_start] = ACTIONS(5163), - [sym__single_quote_open] = ACTIONS(5163), - [sym__double_quote_open] = ACTIONS(5163), - [sym__superscript_open] = ACTIONS(5163), - [sym__subscript_open] = ACTIONS(5163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5163), - [sym__cite_author_in_text] = ACTIONS(5163), - [sym__cite_suppress_author] = ACTIONS(5163), - [sym__shortcode_open_escaped] = ACTIONS(5163), - [sym__shortcode_open] = ACTIONS(5163), - [sym__unclosed_span] = ACTIONS(5163), - [sym__strong_emphasis_open_star] = ACTIONS(5163), - [sym__strong_emphasis_open_underscore] = ACTIONS(5163), + [sym__backslash_escape] = ACTIONS(4519), + [sym_entity_reference] = ACTIONS(4519), + [sym_numeric_character_reference] = ACTIONS(4519), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4519), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_BSLASH] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_BQUOTE] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [sym__newline_token] = ACTIONS(4519), + [aux_sym_insert_token1] = ACTIONS(4519), + [aux_sym_delete_token1] = ACTIONS(4519), + [aux_sym_highlight_token1] = ACTIONS(4519), + [aux_sym_edit_comment_token1] = ACTIONS(4519), + [anon_sym_CARET_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_CARET] = ACTIONS(4519), + [sym_uri_autolink] = ACTIONS(4519), + [sym_email_autolink] = ACTIONS(4519), + [sym__whitespace_ge_2] = ACTIONS(4519), + [aux_sym__whitespace_token1] = ACTIONS(4521), + [sym__word_no_digit] = ACTIONS(4519), + [sym__digits] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [sym__code_span_start] = ACTIONS(4519), + [sym__emphasis_open_star] = ACTIONS(4519), + [sym__emphasis_open_underscore] = ACTIONS(4519), + [sym__strikeout_open] = ACTIONS(4519), + [sym__latex_span_start] = ACTIONS(4519), + [sym__single_quote_open] = ACTIONS(4519), + [sym__single_quote_close] = ACTIONS(4519), + [sym__double_quote_open] = ACTIONS(4519), + [sym__superscript_open] = ACTIONS(4519), + [sym__subscript_open] = ACTIONS(4519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4519), + [sym__cite_suppress_author] = ACTIONS(4519), + [sym__shortcode_open_escaped] = ACTIONS(4519), + [sym__shortcode_open] = ACTIONS(4519), + [sym__unclosed_span] = ACTIONS(4519), + [sym__strong_emphasis_open_star] = ACTIONS(4519), + [sym__strong_emphasis_open_underscore] = ACTIONS(4519), }, [STATE(1601)] = { - [sym__backslash_escape] = ACTIONS(5167), - [sym_entity_reference] = ACTIONS(5167), - [sym_numeric_character_reference] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_POUND] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_PERCENT] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_QMARK] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [sym__newline_token] = ACTIONS(5167), - [aux_sym_insert_token1] = ACTIONS(5167), - [aux_sym_delete_token1] = ACTIONS(5167), - [aux_sym_highlight_token1] = ACTIONS(5167), - [aux_sym_edit_comment_token1] = ACTIONS(5167), - [anon_sym_CARET_LBRACK] = ACTIONS(5167), - [anon_sym_LBRACK_CARET] = ACTIONS(5167), - [sym_uri_autolink] = ACTIONS(5167), - [sym_email_autolink] = ACTIONS(5167), - [sym__whitespace_ge_2] = ACTIONS(5167), - [aux_sym__whitespace_token1] = ACTIONS(5169), - [sym__word_no_digit] = ACTIONS(5167), - [sym__digits] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5169), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), - [sym__code_span_start] = ACTIONS(5167), - [sym__emphasis_open_star] = ACTIONS(5167), - [sym__emphasis_open_underscore] = ACTIONS(5167), - [sym__strikeout_open] = ACTIONS(5167), - [sym__strikeout_close] = ACTIONS(5167), - [sym__latex_span_start] = ACTIONS(5167), - [sym__single_quote_open] = ACTIONS(5167), - [sym__double_quote_open] = ACTIONS(5167), - [sym__superscript_open] = ACTIONS(5167), - [sym__subscript_open] = ACTIONS(5167), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5167), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5167), - [sym__cite_author_in_text] = ACTIONS(5167), - [sym__cite_suppress_author] = ACTIONS(5167), - [sym__shortcode_open_escaped] = ACTIONS(5167), - [sym__shortcode_open] = ACTIONS(5167), - [sym__unclosed_span] = ACTIONS(5167), - [sym__strong_emphasis_open_star] = ACTIONS(5167), - [sym__strong_emphasis_open_underscore] = ACTIONS(5167), + [sym__backslash_escape] = ACTIONS(4523), + [sym_entity_reference] = ACTIONS(4523), + [sym_numeric_character_reference] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_BSLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [sym__newline_token] = ACTIONS(4523), + [aux_sym_insert_token1] = ACTIONS(4523), + [aux_sym_delete_token1] = ACTIONS(4523), + [aux_sym_highlight_token1] = ACTIONS(4523), + [aux_sym_edit_comment_token1] = ACTIONS(4523), + [anon_sym_CARET_LBRACK] = ACTIONS(4523), + [anon_sym_LBRACK_CARET] = ACTIONS(4523), + [sym_uri_autolink] = ACTIONS(4523), + [sym_email_autolink] = ACTIONS(4523), + [sym__whitespace_ge_2] = ACTIONS(4523), + [aux_sym__whitespace_token1] = ACTIONS(4525), + [sym__word_no_digit] = ACTIONS(4523), + [sym__digits] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4523), + [sym__code_span_start] = ACTIONS(4523), + [sym__emphasis_open_star] = ACTIONS(4523), + [sym__emphasis_open_underscore] = ACTIONS(4523), + [sym__strikeout_open] = ACTIONS(4523), + [sym__latex_span_start] = ACTIONS(4523), + [sym__single_quote_open] = ACTIONS(4523), + [sym__single_quote_close] = ACTIONS(4523), + [sym__double_quote_open] = ACTIONS(4523), + [sym__superscript_open] = ACTIONS(4523), + [sym__subscript_open] = ACTIONS(4523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4523), + [sym__cite_author_in_text] = ACTIONS(4523), + [sym__cite_suppress_author] = ACTIONS(4523), + [sym__shortcode_open_escaped] = ACTIONS(4523), + [sym__shortcode_open] = ACTIONS(4523), + [sym__unclosed_span] = ACTIONS(4523), + [sym__strong_emphasis_open_star] = ACTIONS(4523), + [sym__strong_emphasis_open_underscore] = ACTIONS(4523), }, [STATE(1602)] = { - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__strikeout_close] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__backslash_escape] = ACTIONS(4243), + [sym_entity_reference] = ACTIONS(4243), + [sym_numeric_character_reference] = ACTIONS(4243), + [anon_sym_LT] = ACTIONS(4245), + [anon_sym_GT] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4245), + [anon_sym_SQUOTE] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_COMMA] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4245), + [anon_sym_DOT] = ACTIONS(4245), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_COLON] = ACTIONS(4243), + [anon_sym_SEMI] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_LBRACK] = ACTIONS(4245), + [anon_sym_BSLASH] = ACTIONS(4245), + [anon_sym_CARET] = ACTIONS(4245), + [anon_sym_BQUOTE] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_PIPE] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym_RPAREN] = ACTIONS(4243), + [sym__newline_token] = ACTIONS(4243), + [aux_sym_insert_token1] = ACTIONS(4243), + [aux_sym_delete_token1] = ACTIONS(4243), + [aux_sym_highlight_token1] = ACTIONS(4243), + [aux_sym_edit_comment_token1] = ACTIONS(4243), + [anon_sym_CARET_LBRACK] = ACTIONS(4243), + [anon_sym_LBRACK_CARET] = ACTIONS(4243), + [sym_uri_autolink] = ACTIONS(4243), + [sym_email_autolink] = ACTIONS(4243), + [sym__whitespace_ge_2] = ACTIONS(4243), + [aux_sym__whitespace_token1] = ACTIONS(4245), + [sym__word_no_digit] = ACTIONS(4243), + [sym__digits] = ACTIONS(4243), + [anon_sym_DASH_DASH] = ACTIONS(4245), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4243), + [sym__code_span_start] = ACTIONS(4243), + [sym__emphasis_open_star] = ACTIONS(4243), + [sym__emphasis_open_underscore] = ACTIONS(4243), + [sym__strikeout_open] = ACTIONS(4243), + [sym__latex_span_start] = ACTIONS(4243), + [sym__single_quote_open] = ACTIONS(4243), + [sym__single_quote_close] = ACTIONS(4243), + [sym__double_quote_open] = ACTIONS(4243), + [sym__superscript_open] = ACTIONS(4243), + [sym__subscript_open] = ACTIONS(4243), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4243), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4243), + [sym__cite_author_in_text] = ACTIONS(4243), + [sym__cite_suppress_author] = ACTIONS(4243), + [sym__shortcode_open_escaped] = ACTIONS(4243), + [sym__shortcode_open] = ACTIONS(4243), + [sym__unclosed_span] = ACTIONS(4243), + [sym__strong_emphasis_open_star] = ACTIONS(4243), + [sym__strong_emphasis_open_underscore] = ACTIONS(4243), }, [STATE(1603)] = { - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__strikeout_close] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__backslash_escape] = ACTIONS(4247), + [sym_entity_reference] = ACTIONS(4247), + [sym_numeric_character_reference] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(4249), + [anon_sym_GT] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4249), + [anon_sym_SQUOTE] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_COMMA] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_DOT] = ACTIONS(4249), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_LBRACK] = ACTIONS(4249), + [anon_sym_BSLASH] = ACTIONS(4249), + [anon_sym_CARET] = ACTIONS(4249), + [anon_sym_BQUOTE] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym_RPAREN] = ACTIONS(4247), + [sym__newline_token] = ACTIONS(4247), + [aux_sym_insert_token1] = ACTIONS(4247), + [aux_sym_delete_token1] = ACTIONS(4247), + [aux_sym_highlight_token1] = ACTIONS(4247), + [aux_sym_edit_comment_token1] = ACTIONS(4247), + [anon_sym_CARET_LBRACK] = ACTIONS(4247), + [anon_sym_LBRACK_CARET] = ACTIONS(4247), + [sym_uri_autolink] = ACTIONS(4247), + [sym_email_autolink] = ACTIONS(4247), + [sym__whitespace_ge_2] = ACTIONS(4247), + [aux_sym__whitespace_token1] = ACTIONS(4249), + [sym__word_no_digit] = ACTIONS(4247), + [sym__digits] = ACTIONS(4247), + [anon_sym_DASH_DASH] = ACTIONS(4249), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4247), + [sym__code_span_start] = ACTIONS(4247), + [sym__emphasis_open_star] = ACTIONS(4247), + [sym__emphasis_open_underscore] = ACTIONS(4247), + [sym__strikeout_open] = ACTIONS(4247), + [sym__latex_span_start] = ACTIONS(4247), + [sym__single_quote_open] = ACTIONS(4247), + [sym__single_quote_close] = ACTIONS(4247), + [sym__double_quote_open] = ACTIONS(4247), + [sym__superscript_open] = ACTIONS(4247), + [sym__subscript_open] = ACTIONS(4247), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4247), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4247), + [sym__cite_author_in_text] = ACTIONS(4247), + [sym__cite_suppress_author] = ACTIONS(4247), + [sym__shortcode_open_escaped] = ACTIONS(4247), + [sym__shortcode_open] = ACTIONS(4247), + [sym__unclosed_span] = ACTIONS(4247), + [sym__strong_emphasis_open_star] = ACTIONS(4247), + [sym__strong_emphasis_open_underscore] = ACTIONS(4247), }, [STATE(1604)] = { - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__strikeout_close] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [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(1605)] = { - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__strikeout_close] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [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__single_quote_close] = 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(1606)] = { - [ts_builtin_sym_end] = ACTIONS(5095), - [sym__backslash_escape] = ACTIONS(5095), - [sym_entity_reference] = ACTIONS(5095), - [sym_numeric_character_reference] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_BSLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym_BQUOTE] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [sym__newline_token] = ACTIONS(5095), - [aux_sym_insert_token1] = ACTIONS(5095), - [aux_sym_delete_token1] = ACTIONS(5095), - [aux_sym_highlight_token1] = ACTIONS(5095), - [aux_sym_edit_comment_token1] = ACTIONS(5095), - [anon_sym_CARET_LBRACK] = ACTIONS(5095), - [anon_sym_LBRACK_CARET] = ACTIONS(5095), - [sym_uri_autolink] = ACTIONS(5095), - [sym_email_autolink] = ACTIONS(5095), - [sym__whitespace_ge_2] = ACTIONS(5095), - [aux_sym__whitespace_token1] = ACTIONS(5097), - [sym__word_no_digit] = ACTIONS(5095), - [sym__digits] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5095), - [sym__code_span_start] = ACTIONS(5095), - [sym__emphasis_open_star] = ACTIONS(5095), - [sym__emphasis_open_underscore] = ACTIONS(5095), - [sym__strikeout_open] = ACTIONS(5095), - [sym__latex_span_start] = ACTIONS(5095), - [sym__single_quote_open] = ACTIONS(5095), - [sym__double_quote_open] = ACTIONS(5095), - [sym__superscript_open] = ACTIONS(5095), - [sym__subscript_open] = ACTIONS(5095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5095), - [sym__cite_author_in_text] = ACTIONS(5095), - [sym__cite_suppress_author] = ACTIONS(5095), - [sym__shortcode_open_escaped] = ACTIONS(5095), - [sym__shortcode_open] = ACTIONS(5095), - [sym__unclosed_span] = ACTIONS(5095), - [sym__strong_emphasis_open_star] = ACTIONS(5095), - [sym__strong_emphasis_open_underscore] = ACTIONS(5095), + [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__strikeout_open] = ACTIONS(4539), + [sym__latex_span_start] = ACTIONS(4539), + [sym__single_quote_open] = ACTIONS(4539), + [sym__single_quote_close] = 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(1607)] = { - [sym__backslash_escape] = ACTIONS(5171), - [sym_entity_reference] = ACTIONS(5171), - [sym_numeric_character_reference] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [anon_sym_POUND] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_QMARK] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH] = ACTIONS(5173), - [anon_sym_CARET] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [sym__newline_token] = ACTIONS(5171), - [aux_sym_insert_token1] = ACTIONS(5171), - [aux_sym_delete_token1] = ACTIONS(5171), - [aux_sym_highlight_token1] = ACTIONS(5171), - [aux_sym_edit_comment_token1] = ACTIONS(5171), - [anon_sym_CARET_LBRACK] = ACTIONS(5171), - [anon_sym_LBRACK_CARET] = ACTIONS(5171), - [sym_uri_autolink] = ACTIONS(5171), - [sym_email_autolink] = ACTIONS(5171), - [sym__whitespace_ge_2] = ACTIONS(5171), - [aux_sym__whitespace_token1] = ACTIONS(5173), - [sym__word_no_digit] = ACTIONS(5171), - [sym__digits] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5171), - [sym__code_span_start] = ACTIONS(5171), - [sym__emphasis_open_star] = ACTIONS(5171), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym__strikeout_open] = ACTIONS(5171), - [sym__strikeout_close] = ACTIONS(5171), - [sym__latex_span_start] = ACTIONS(5171), - [sym__single_quote_open] = ACTIONS(5171), - [sym__double_quote_open] = ACTIONS(5171), - [sym__superscript_open] = ACTIONS(5171), - [sym__subscript_open] = ACTIONS(5171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5171), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5171), - [sym__cite_author_in_text] = ACTIONS(5171), - [sym__cite_suppress_author] = ACTIONS(5171), - [sym__shortcode_open_escaped] = ACTIONS(5171), - [sym__shortcode_open] = ACTIONS(5171), - [sym__unclosed_span] = ACTIONS(5171), - [sym__strong_emphasis_open_star] = ACTIONS(5171), - [sym__strong_emphasis_open_underscore] = ACTIONS(5171), + [sym__backslash_escape] = ACTIONS(4503), + [sym_entity_reference] = ACTIONS(4503), + [sym_numeric_character_reference] = ACTIONS(4503), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_BSLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_BQUOTE] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_PIPE] = ACTIONS(4503), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [sym__newline_token] = ACTIONS(4503), + [aux_sym_insert_token1] = ACTIONS(4503), + [aux_sym_delete_token1] = ACTIONS(4503), + [aux_sym_highlight_token1] = ACTIONS(4503), + [aux_sym_edit_comment_token1] = ACTIONS(4503), + [anon_sym_CARET_LBRACK] = ACTIONS(4503), + [anon_sym_LBRACK_CARET] = ACTIONS(4503), + [sym_uri_autolink] = ACTIONS(4503), + [sym_email_autolink] = ACTIONS(4503), + [sym__whitespace_ge_2] = ACTIONS(4503), + [aux_sym__whitespace_token1] = ACTIONS(4505), + [sym__word_no_digit] = ACTIONS(4503), + [sym__digits] = ACTIONS(4503), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4503), + [sym__code_span_start] = ACTIONS(4503), + [sym__emphasis_open_star] = ACTIONS(4503), + [sym__emphasis_open_underscore] = ACTIONS(4503), + [sym__strikeout_open] = ACTIONS(4503), + [sym__latex_span_start] = ACTIONS(4503), + [sym__single_quote_open] = ACTIONS(4503), + [sym__single_quote_close] = ACTIONS(4503), + [sym__double_quote_open] = ACTIONS(4503), + [sym__superscript_open] = ACTIONS(4503), + [sym__subscript_open] = ACTIONS(4503), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4503), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4503), + [sym__cite_author_in_text] = ACTIONS(4503), + [sym__cite_suppress_author] = ACTIONS(4503), + [sym__shortcode_open_escaped] = ACTIONS(4503), + [sym__shortcode_open] = ACTIONS(4503), + [sym__unclosed_span] = ACTIONS(4503), + [sym__strong_emphasis_open_star] = ACTIONS(4503), + [sym__strong_emphasis_open_underscore] = ACTIONS(4503), }, [STATE(1608)] = { - [sym__backslash_escape] = ACTIONS(5175), - [sym_entity_reference] = ACTIONS(5175), - [sym_numeric_character_reference] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_QMARK] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [sym__newline_token] = ACTIONS(5175), - [aux_sym_insert_token1] = ACTIONS(5175), - [aux_sym_delete_token1] = ACTIONS(5175), - [aux_sym_highlight_token1] = ACTIONS(5175), - [aux_sym_edit_comment_token1] = ACTIONS(5175), - [anon_sym_CARET_LBRACK] = ACTIONS(5175), - [anon_sym_LBRACK_CARET] = ACTIONS(5175), - [sym_uri_autolink] = ACTIONS(5175), - [sym_email_autolink] = ACTIONS(5175), - [sym__whitespace_ge_2] = ACTIONS(5175), - [aux_sym__whitespace_token1] = ACTIONS(5177), - [sym__word_no_digit] = ACTIONS(5175), - [sym__digits] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5177), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5175), - [sym__code_span_start] = ACTIONS(5175), - [sym__emphasis_open_star] = ACTIONS(5175), - [sym__emphasis_open_underscore] = ACTIONS(5175), - [sym__strikeout_open] = ACTIONS(5175), - [sym__strikeout_close] = ACTIONS(5175), - [sym__latex_span_start] = ACTIONS(5175), - [sym__single_quote_open] = ACTIONS(5175), - [sym__double_quote_open] = ACTIONS(5175), - [sym__superscript_open] = ACTIONS(5175), - [sym__subscript_open] = ACTIONS(5175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5175), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5175), - [sym__cite_author_in_text] = ACTIONS(5175), - [sym__cite_suppress_author] = ACTIONS(5175), - [sym__shortcode_open_escaped] = ACTIONS(5175), - [sym__shortcode_open] = ACTIONS(5175), - [sym__unclosed_span] = ACTIONS(5175), - [sym__strong_emphasis_open_star] = ACTIONS(5175), - [sym__strong_emphasis_open_underscore] = ACTIONS(5175), + [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(4251), + [anon_sym_PIPE] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [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(1609)] = { - [ts_builtin_sym_end] = ACTIONS(5099), - [sym__backslash_escape] = ACTIONS(5099), - [sym_entity_reference] = ACTIONS(5099), - [sym_numeric_character_reference] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [sym__newline_token] = ACTIONS(5099), - [aux_sym_insert_token1] = ACTIONS(5099), - [aux_sym_delete_token1] = ACTIONS(5099), - [aux_sym_highlight_token1] = ACTIONS(5099), - [aux_sym_edit_comment_token1] = ACTIONS(5099), - [anon_sym_CARET_LBRACK] = ACTIONS(5099), - [anon_sym_LBRACK_CARET] = ACTIONS(5099), - [sym_uri_autolink] = ACTIONS(5099), - [sym_email_autolink] = ACTIONS(5099), - [sym__whitespace_ge_2] = ACTIONS(5099), - [aux_sym__whitespace_token1] = ACTIONS(5101), - [sym__word_no_digit] = ACTIONS(5099), - [sym__digits] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5099), - [sym__code_span_start] = ACTIONS(5099), - [sym__emphasis_open_star] = ACTIONS(5099), - [sym__emphasis_open_underscore] = ACTIONS(5099), - [sym__strikeout_open] = ACTIONS(5099), - [sym__latex_span_start] = ACTIONS(5099), - [sym__single_quote_open] = ACTIONS(5099), - [sym__double_quote_open] = ACTIONS(5099), - [sym__superscript_open] = ACTIONS(5099), - [sym__subscript_open] = ACTIONS(5099), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5099), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5099), - [sym__cite_author_in_text] = ACTIONS(5099), - [sym__cite_suppress_author] = ACTIONS(5099), - [sym__shortcode_open_escaped] = ACTIONS(5099), - [sym__shortcode_open] = ACTIONS(5099), - [sym__unclosed_span] = ACTIONS(5099), - [sym__strong_emphasis_open_star] = ACTIONS(5099), - [sym__strong_emphasis_open_underscore] = ACTIONS(5099), + [sym__backslash_escape] = ACTIONS(4255), + [sym_entity_reference] = ACTIONS(4255), + [sym_numeric_character_reference] = ACTIONS(4255), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_DQUOTE] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_COMMA] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_DOT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_COLON] = ACTIONS(4255), + [anon_sym_SEMI] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_LBRACK] = ACTIONS(4257), + [anon_sym_BSLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym_BQUOTE] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_PIPE] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym_RPAREN] = ACTIONS(4255), + [sym__newline_token] = ACTIONS(4255), + [aux_sym_insert_token1] = ACTIONS(4255), + [aux_sym_delete_token1] = ACTIONS(4255), + [aux_sym_highlight_token1] = ACTIONS(4255), + [aux_sym_edit_comment_token1] = ACTIONS(4255), + [anon_sym_CARET_LBRACK] = ACTIONS(4255), + [anon_sym_LBRACK_CARET] = ACTIONS(4255), + [sym_uri_autolink] = ACTIONS(4255), + [sym_email_autolink] = ACTIONS(4255), + [sym__whitespace_ge_2] = ACTIONS(4255), + [aux_sym__whitespace_token1] = ACTIONS(4257), + [sym__word_no_digit] = ACTIONS(4255), + [sym__digits] = ACTIONS(4255), + [anon_sym_DASH_DASH] = ACTIONS(4257), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4255), + [sym__code_span_start] = ACTIONS(4255), + [sym__emphasis_open_star] = ACTIONS(4255), + [sym__emphasis_open_underscore] = ACTIONS(4255), + [sym__strikeout_open] = ACTIONS(4255), + [sym__latex_span_start] = ACTIONS(4255), + [sym__single_quote_open] = ACTIONS(4255), + [sym__single_quote_close] = ACTIONS(4255), + [sym__double_quote_open] = ACTIONS(4255), + [sym__superscript_open] = ACTIONS(4255), + [sym__subscript_open] = ACTIONS(4255), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4255), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4255), + [sym__cite_author_in_text] = ACTIONS(4255), + [sym__cite_suppress_author] = ACTIONS(4255), + [sym__shortcode_open_escaped] = ACTIONS(4255), + [sym__shortcode_open] = ACTIONS(4255), + [sym__unclosed_span] = ACTIONS(4255), + [sym__strong_emphasis_open_star] = ACTIONS(4255), + [sym__strong_emphasis_open_underscore] = ACTIONS(4255), }, [STATE(1610)] = { - [ts_builtin_sym_end] = ACTIONS(5103), - [sym__backslash_escape] = ACTIONS(5103), - [sym_entity_reference] = ACTIONS(5103), - [sym_numeric_character_reference] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(5103), - [anon_sym_POUND] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_BSLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [sym__newline_token] = ACTIONS(5103), - [aux_sym_insert_token1] = ACTIONS(5103), - [aux_sym_delete_token1] = ACTIONS(5103), - [aux_sym_highlight_token1] = ACTIONS(5103), - [aux_sym_edit_comment_token1] = ACTIONS(5103), - [anon_sym_CARET_LBRACK] = ACTIONS(5103), - [anon_sym_LBRACK_CARET] = ACTIONS(5103), - [sym_uri_autolink] = ACTIONS(5103), - [sym_email_autolink] = ACTIONS(5103), - [sym__whitespace_ge_2] = ACTIONS(5103), - [aux_sym__whitespace_token1] = ACTIONS(5105), - [sym__word_no_digit] = ACTIONS(5103), - [sym__digits] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5103), - [sym__code_span_start] = ACTIONS(5103), - [sym__emphasis_open_star] = ACTIONS(5103), - [sym__emphasis_open_underscore] = ACTIONS(5103), - [sym__strikeout_open] = ACTIONS(5103), - [sym__latex_span_start] = ACTIONS(5103), - [sym__single_quote_open] = ACTIONS(5103), - [sym__double_quote_open] = ACTIONS(5103), - [sym__superscript_open] = ACTIONS(5103), - [sym__subscript_open] = ACTIONS(5103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5103), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5103), - [sym__cite_author_in_text] = ACTIONS(5103), - [sym__cite_suppress_author] = ACTIONS(5103), - [sym__shortcode_open_escaped] = ACTIONS(5103), - [sym__shortcode_open] = ACTIONS(5103), - [sym__unclosed_span] = ACTIONS(5103), - [sym__strong_emphasis_open_star] = ACTIONS(5103), - [sym__strong_emphasis_open_underscore] = ACTIONS(5103), + [ts_builtin_sym_end] = ACTIONS(4235), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(1611)] = { - [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_STAR] = 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__single_quote_close] = 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), + [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__single_quote_close] = 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(1612)] = { - [ts_builtin_sym_end] = ACTIONS(5107), - [sym__backslash_escape] = ACTIONS(5107), - [sym_entity_reference] = ACTIONS(5107), - [sym_numeric_character_reference] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_COLON] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_BSLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_BQUOTE] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_PIPE] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [sym__newline_token] = ACTIONS(5107), - [aux_sym_insert_token1] = ACTIONS(5107), - [aux_sym_delete_token1] = ACTIONS(5107), - [aux_sym_highlight_token1] = ACTIONS(5107), - [aux_sym_edit_comment_token1] = ACTIONS(5107), - [anon_sym_CARET_LBRACK] = ACTIONS(5107), - [anon_sym_LBRACK_CARET] = ACTIONS(5107), - [sym_uri_autolink] = ACTIONS(5107), - [sym_email_autolink] = ACTIONS(5107), - [sym__whitespace_ge_2] = ACTIONS(5107), - [aux_sym__whitespace_token1] = ACTIONS(5109), - [sym__word_no_digit] = ACTIONS(5107), - [sym__digits] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5107), - [sym__code_span_start] = ACTIONS(5107), - [sym__emphasis_open_star] = ACTIONS(5107), - [sym__emphasis_open_underscore] = ACTIONS(5107), - [sym__strikeout_open] = ACTIONS(5107), - [sym__latex_span_start] = ACTIONS(5107), - [sym__single_quote_open] = ACTIONS(5107), - [sym__double_quote_open] = ACTIONS(5107), - [sym__superscript_open] = ACTIONS(5107), - [sym__subscript_open] = ACTIONS(5107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5107), - [sym__cite_author_in_text] = ACTIONS(5107), - [sym__cite_suppress_author] = ACTIONS(5107), - [sym__shortcode_open_escaped] = ACTIONS(5107), - [sym__shortcode_open] = ACTIONS(5107), - [sym__unclosed_span] = ACTIONS(5107), - [sym__strong_emphasis_open_star] = ACTIONS(5107), - [sym__strong_emphasis_open_underscore] = ACTIONS(5107), + [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__single_quote_close] = 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(1613)] = { - [sym__backslash_escape] = ACTIONS(4943), - [sym_entity_reference] = ACTIONS(4943), - [sym_numeric_character_reference] = ACTIONS(4943), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [anon_sym_POUND] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4943), - [anon_sym_PERCENT] = ACTIONS(4943), - [anon_sym_AMP] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4943), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4943), - [anon_sym_COLON] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_QMARK] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_BSLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [sym__newline_token] = ACTIONS(4943), - [aux_sym_insert_token1] = ACTIONS(4943), - [aux_sym_delete_token1] = ACTIONS(4943), - [aux_sym_highlight_token1] = ACTIONS(4943), - [aux_sym_edit_comment_token1] = ACTIONS(4943), - [anon_sym_CARET_LBRACK] = ACTIONS(4943), - [anon_sym_LBRACK_CARET] = ACTIONS(4943), - [sym_uri_autolink] = ACTIONS(4943), - [sym_email_autolink] = ACTIONS(4943), - [sym__whitespace_ge_2] = ACTIONS(4943), - [aux_sym__whitespace_token1] = ACTIONS(4945), - [sym__word_no_digit] = ACTIONS(4943), - [sym__digits] = ACTIONS(4943), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4943), - [sym__code_span_start] = ACTIONS(4943), - [sym__emphasis_open_star] = ACTIONS(4943), - [sym__emphasis_open_underscore] = ACTIONS(4943), - [sym__strikeout_open] = ACTIONS(4943), - [sym__latex_span_start] = ACTIONS(4943), - [sym__single_quote_open] = ACTIONS(4943), - [sym__single_quote_close] = ACTIONS(4943), - [sym__double_quote_open] = ACTIONS(4943), - [sym__superscript_open] = ACTIONS(4943), - [sym__subscript_open] = ACTIONS(4943), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4943), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4943), - [sym__cite_author_in_text] = ACTIONS(4943), - [sym__cite_suppress_author] = ACTIONS(4943), - [sym__shortcode_open_escaped] = ACTIONS(4943), - [sym__shortcode_open] = ACTIONS(4943), - [sym__unclosed_span] = ACTIONS(4943), - [sym__strong_emphasis_open_star] = ACTIONS(4943), - [sym__strong_emphasis_open_underscore] = ACTIONS(4943), + [sym__backslash_escape] = ACTIONS(4187), + [sym_entity_reference] = ACTIONS(4187), + [sym_numeric_character_reference] = ACTIONS(4187), + [anon_sym_LT] = ACTIONS(4189), + [anon_sym_GT] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4187), + [anon_sym_POUND] = ACTIONS(4187), + [anon_sym_DOLLAR] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_SQUOTE] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(4187), + [anon_sym_COMMA] = ACTIONS(4187), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(4187), + [anon_sym_SEMI] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4187), + [anon_sym_QMARK] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_BSLASH] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_BQUOTE] = ACTIONS(4187), + [anon_sym_LBRACE] = ACTIONS(4187), + [anon_sym_PIPE] = ACTIONS(4187), + [anon_sym_TILDE] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4187), + [anon_sym_RPAREN] = ACTIONS(4187), + [sym__newline_token] = ACTIONS(4187), + [aux_sym_insert_token1] = ACTIONS(4187), + [aux_sym_delete_token1] = ACTIONS(4187), + [aux_sym_highlight_token1] = ACTIONS(4187), + [aux_sym_edit_comment_token1] = ACTIONS(4187), + [anon_sym_CARET_LBRACK] = ACTIONS(4187), + [anon_sym_LBRACK_CARET] = ACTIONS(4187), + [sym_uri_autolink] = ACTIONS(4187), + [sym_email_autolink] = ACTIONS(4187), + [sym__whitespace_ge_2] = ACTIONS(4187), + [aux_sym__whitespace_token1] = ACTIONS(4189), + [sym__word_no_digit] = ACTIONS(4187), + [sym__digits] = ACTIONS(4187), + [anon_sym_DASH_DASH] = ACTIONS(4189), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4187), + [sym__code_span_start] = ACTIONS(4187), + [sym__emphasis_open_star] = ACTIONS(4187), + [sym__emphasis_open_underscore] = ACTIONS(4187), + [sym__strikeout_open] = ACTIONS(4187), + [sym__latex_span_start] = ACTIONS(4187), + [sym__single_quote_open] = ACTIONS(4187), + [sym__single_quote_close] = ACTIONS(4187), + [sym__double_quote_open] = ACTIONS(4187), + [sym__superscript_open] = ACTIONS(4187), + [sym__subscript_open] = ACTIONS(4187), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4187), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4187), + [sym__cite_author_in_text] = ACTIONS(4187), + [sym__cite_suppress_author] = ACTIONS(4187), + [sym__shortcode_open_escaped] = ACTIONS(4187), + [sym__shortcode_open] = ACTIONS(4187), + [sym__unclosed_span] = ACTIONS(4187), + [sym__strong_emphasis_open_star] = ACTIONS(4187), + [sym__strong_emphasis_open_underscore] = ACTIONS(4187), }, [STATE(1614)] = { - [sym__backslash_escape] = ACTIONS(4947), - [sym_entity_reference] = ACTIONS(4947), - [sym_numeric_character_reference] = ACTIONS(4947), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_DQUOTE] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_PERCENT] = ACTIONS(4947), - [anon_sym_AMP] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4947), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4947), - [anon_sym_COLON] = ACTIONS(4947), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_QMARK] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4949), - [anon_sym_BSLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_PIPE] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [sym__newline_token] = ACTIONS(4947), - [aux_sym_insert_token1] = ACTIONS(4947), - [aux_sym_delete_token1] = ACTIONS(4947), - [aux_sym_highlight_token1] = ACTIONS(4947), - [aux_sym_edit_comment_token1] = ACTIONS(4947), - [anon_sym_CARET_LBRACK] = ACTIONS(4947), - [anon_sym_LBRACK_CARET] = ACTIONS(4947), - [sym_uri_autolink] = ACTIONS(4947), - [sym_email_autolink] = ACTIONS(4947), - [sym__whitespace_ge_2] = ACTIONS(4947), - [aux_sym__whitespace_token1] = ACTIONS(4949), - [sym__word_no_digit] = ACTIONS(4947), - [sym__digits] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4949), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4947), - [sym__code_span_start] = ACTIONS(4947), - [sym__emphasis_open_star] = ACTIONS(4947), - [sym__emphasis_open_underscore] = ACTIONS(4947), - [sym__strikeout_open] = ACTIONS(4947), - [sym__latex_span_start] = ACTIONS(4947), - [sym__single_quote_open] = ACTIONS(4947), - [sym__single_quote_close] = ACTIONS(4947), - [sym__double_quote_open] = ACTIONS(4947), - [sym__superscript_open] = ACTIONS(4947), - [sym__subscript_open] = ACTIONS(4947), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4947), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4947), - [sym__cite_author_in_text] = ACTIONS(4947), - [sym__cite_suppress_author] = ACTIONS(4947), - [sym__shortcode_open_escaped] = ACTIONS(4947), - [sym__shortcode_open] = ACTIONS(4947), - [sym__unclosed_span] = ACTIONS(4947), - [sym__strong_emphasis_open_star] = ACTIONS(4947), - [sym__strong_emphasis_open_underscore] = ACTIONS(4947), + [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(1615)] = { - [sym__backslash_escape] = ACTIONS(4951), - [sym_entity_reference] = ACTIONS(4951), - [sym_numeric_character_reference] = ACTIONS(4951), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [anon_sym_POUND] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4951), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_DOT] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4951), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_QMARK] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_BSLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [sym__newline_token] = ACTIONS(4951), - [aux_sym_insert_token1] = ACTIONS(4951), - [aux_sym_delete_token1] = ACTIONS(4951), - [aux_sym_highlight_token1] = ACTIONS(4951), - [aux_sym_edit_comment_token1] = ACTIONS(4951), - [anon_sym_CARET_LBRACK] = ACTIONS(4951), - [anon_sym_LBRACK_CARET] = ACTIONS(4951), - [sym_uri_autolink] = ACTIONS(4951), - [sym_email_autolink] = ACTIONS(4951), - [sym__whitespace_ge_2] = ACTIONS(4951), - [aux_sym__whitespace_token1] = ACTIONS(4953), - [sym__word_no_digit] = ACTIONS(4951), - [sym__digits] = ACTIONS(4951), - [anon_sym_DASH_DASH] = ACTIONS(4953), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4951), - [sym__code_span_start] = ACTIONS(4951), - [sym__emphasis_open_star] = ACTIONS(4951), - [sym__emphasis_open_underscore] = ACTIONS(4951), - [sym__strikeout_open] = ACTIONS(4951), - [sym__latex_span_start] = ACTIONS(4951), - [sym__single_quote_open] = ACTIONS(4951), - [sym__single_quote_close] = ACTIONS(4951), - [sym__double_quote_open] = ACTIONS(4951), - [sym__superscript_open] = ACTIONS(4951), - [sym__subscript_open] = ACTIONS(4951), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4951), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4951), - [sym__cite_author_in_text] = ACTIONS(4951), - [sym__cite_suppress_author] = ACTIONS(4951), - [sym__shortcode_open_escaped] = ACTIONS(4951), - [sym__shortcode_open] = ACTIONS(4951), - [sym__unclosed_span] = ACTIONS(4951), - [sym__strong_emphasis_open_star] = ACTIONS(4951), - [sym__strong_emphasis_open_underscore] = ACTIONS(4951), + [sym__backslash_escape] = ACTIONS(4193), + [sym_entity_reference] = ACTIONS(4193), + [sym_numeric_character_reference] = ACTIONS(4193), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_PERCENT] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4195), + [anon_sym_SQUOTE] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_COMMA] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(4193), + [anon_sym_SEMI] = ACTIONS(4193), + [anon_sym_EQ] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4195), + [anon_sym_BSLASH] = ACTIONS(4195), + [anon_sym_CARET] = ACTIONS(4195), + [anon_sym_BQUOTE] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_PIPE] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_RPAREN] = ACTIONS(4193), + [sym__newline_token] = ACTIONS(4193), + [aux_sym_insert_token1] = ACTIONS(4193), + [aux_sym_delete_token1] = ACTIONS(4193), + [aux_sym_highlight_token1] = ACTIONS(4193), + [aux_sym_edit_comment_token1] = ACTIONS(4193), + [anon_sym_CARET_LBRACK] = ACTIONS(4193), + [anon_sym_LBRACK_CARET] = ACTIONS(4193), + [sym_uri_autolink] = ACTIONS(4193), + [sym_email_autolink] = ACTIONS(4193), + [sym__whitespace_ge_2] = ACTIONS(4193), + [aux_sym__whitespace_token1] = ACTIONS(4195), + [sym__word_no_digit] = ACTIONS(4193), + [sym__digits] = ACTIONS(4193), + [anon_sym_DASH_DASH] = ACTIONS(4195), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4193), + [sym__code_span_start] = ACTIONS(4193), + [sym__emphasis_open_star] = ACTIONS(4193), + [sym__emphasis_open_underscore] = ACTIONS(4193), + [sym__strikeout_open] = ACTIONS(4193), + [sym__latex_span_start] = ACTIONS(4193), + [sym__single_quote_open] = ACTIONS(4193), + [sym__single_quote_close] = ACTIONS(4193), + [sym__double_quote_open] = ACTIONS(4193), + [sym__superscript_open] = ACTIONS(4193), + [sym__subscript_open] = ACTIONS(4193), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4193), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4193), + [sym__cite_author_in_text] = ACTIONS(4193), + [sym__cite_suppress_author] = ACTIONS(4193), + [sym__shortcode_open_escaped] = ACTIONS(4193), + [sym__shortcode_open] = ACTIONS(4193), + [sym__unclosed_span] = ACTIONS(4193), + [sym__strong_emphasis_open_star] = ACTIONS(4193), + [sym__strong_emphasis_open_underscore] = ACTIONS(4193), }, [STATE(1616)] = { - [sym__backslash_escape] = ACTIONS(4955), - [sym_entity_reference] = ACTIONS(4955), - [sym_numeric_character_reference] = ACTIONS(4955), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_DQUOTE] = ACTIONS(4955), - [anon_sym_POUND] = ACTIONS(4955), - [anon_sym_DOLLAR] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4957), - [anon_sym_SQUOTE] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_COMMA] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4957), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_QMARK] = ACTIONS(4955), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH] = ACTIONS(4957), - [anon_sym_CARET] = ACTIONS(4957), - [anon_sym_BQUOTE] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4955), - [anon_sym_PIPE] = ACTIONS(4955), - [anon_sym_TILDE] = ACTIONS(4955), - [anon_sym_LPAREN] = ACTIONS(4955), - [anon_sym_RPAREN] = ACTIONS(4955), - [sym__newline_token] = ACTIONS(4955), - [aux_sym_insert_token1] = ACTIONS(4955), - [aux_sym_delete_token1] = ACTIONS(4955), - [aux_sym_highlight_token1] = ACTIONS(4955), - [aux_sym_edit_comment_token1] = ACTIONS(4955), - [anon_sym_CARET_LBRACK] = ACTIONS(4955), - [anon_sym_LBRACK_CARET] = ACTIONS(4955), - [sym_uri_autolink] = ACTIONS(4955), - [sym_email_autolink] = ACTIONS(4955), - [sym__whitespace_ge_2] = ACTIONS(4955), - [aux_sym__whitespace_token1] = ACTIONS(4957), - [sym__word_no_digit] = ACTIONS(4955), - [sym__digits] = ACTIONS(4955), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4955), - [sym__code_span_start] = ACTIONS(4955), - [sym__emphasis_open_star] = ACTIONS(4955), - [sym__emphasis_open_underscore] = ACTIONS(4955), - [sym__strikeout_open] = ACTIONS(4955), - [sym__latex_span_start] = ACTIONS(4955), - [sym__single_quote_open] = ACTIONS(4955), - [sym__single_quote_close] = ACTIONS(4955), - [sym__double_quote_open] = ACTIONS(4955), - [sym__superscript_open] = ACTIONS(4955), - [sym__subscript_open] = ACTIONS(4955), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4955), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4955), - [sym__cite_author_in_text] = ACTIONS(4955), - [sym__cite_suppress_author] = ACTIONS(4955), - [sym__shortcode_open_escaped] = ACTIONS(4955), - [sym__shortcode_open] = ACTIONS(4955), - [sym__unclosed_span] = ACTIONS(4955), - [sym__strong_emphasis_open_star] = ACTIONS(4955), - [sym__strong_emphasis_open_underscore] = ACTIONS(4955), + [sym__backslash_escape] = ACTIONS(4197), + [sym_entity_reference] = ACTIONS(4197), + [sym_numeric_character_reference] = ACTIONS(4197), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4199), + [anon_sym_SQUOTE] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_COMMA] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4199), + [anon_sym_DOT] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4197), + [anon_sym_SEMI] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_BSLASH] = ACTIONS(4199), + [anon_sym_CARET] = ACTIONS(4199), + [anon_sym_BQUOTE] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_PIPE] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_RPAREN] = ACTIONS(4197), + [sym__newline_token] = ACTIONS(4197), + [aux_sym_insert_token1] = ACTIONS(4197), + [aux_sym_delete_token1] = ACTIONS(4197), + [aux_sym_highlight_token1] = ACTIONS(4197), + [aux_sym_edit_comment_token1] = ACTIONS(4197), + [anon_sym_CARET_LBRACK] = ACTIONS(4197), + [anon_sym_LBRACK_CARET] = ACTIONS(4197), + [sym_uri_autolink] = ACTIONS(4197), + [sym_email_autolink] = ACTIONS(4197), + [sym__whitespace_ge_2] = ACTIONS(4197), + [aux_sym__whitespace_token1] = ACTIONS(4199), + [sym__word_no_digit] = ACTIONS(4197), + [sym__digits] = ACTIONS(4197), + [anon_sym_DASH_DASH] = ACTIONS(4199), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4197), + [sym__code_span_start] = ACTIONS(4197), + [sym__emphasis_open_star] = ACTIONS(4197), + [sym__emphasis_open_underscore] = ACTIONS(4197), + [sym__strikeout_open] = ACTIONS(4197), + [sym__latex_span_start] = ACTIONS(4197), + [sym__single_quote_open] = ACTIONS(4197), + [sym__single_quote_close] = ACTIONS(4197), + [sym__double_quote_open] = ACTIONS(4197), + [sym__superscript_open] = ACTIONS(4197), + [sym__subscript_open] = ACTIONS(4197), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4197), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4197), + [sym__cite_author_in_text] = ACTIONS(4197), + [sym__cite_suppress_author] = ACTIONS(4197), + [sym__shortcode_open_escaped] = ACTIONS(4197), + [sym__shortcode_open] = ACTIONS(4197), + [sym__unclosed_span] = ACTIONS(4197), + [sym__strong_emphasis_open_star] = ACTIONS(4197), + [sym__strong_emphasis_open_underscore] = ACTIONS(4197), }, [STATE(1617)] = { - [sym__backslash_escape] = ACTIONS(4959), - [sym_entity_reference] = ACTIONS(4959), - [sym_numeric_character_reference] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_DQUOTE] = ACTIONS(4959), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_PERCENT] = ACTIONS(4959), - [anon_sym_AMP] = ACTIONS(4961), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4961), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SEMI] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_QMARK] = ACTIONS(4959), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_BSLASH] = ACTIONS(4961), - [anon_sym_CARET] = ACTIONS(4961), - [anon_sym_BQUOTE] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_TILDE] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4959), - [anon_sym_RPAREN] = ACTIONS(4959), - [sym__newline_token] = ACTIONS(4959), - [aux_sym_insert_token1] = ACTIONS(4959), - [aux_sym_delete_token1] = ACTIONS(4959), - [aux_sym_highlight_token1] = ACTIONS(4959), - [aux_sym_edit_comment_token1] = ACTIONS(4959), - [anon_sym_CARET_LBRACK] = ACTIONS(4959), - [anon_sym_LBRACK_CARET] = ACTIONS(4959), - [sym_uri_autolink] = ACTIONS(4959), - [sym_email_autolink] = ACTIONS(4959), - [sym__whitespace_ge_2] = ACTIONS(4959), - [aux_sym__whitespace_token1] = ACTIONS(4961), - [sym__word_no_digit] = ACTIONS(4959), - [sym__digits] = ACTIONS(4959), - [anon_sym_DASH_DASH] = ACTIONS(4961), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4959), - [sym__code_span_start] = ACTIONS(4959), - [sym__emphasis_open_star] = ACTIONS(4959), - [sym__emphasis_open_underscore] = ACTIONS(4959), - [sym__strikeout_open] = ACTIONS(4959), - [sym__latex_span_start] = ACTIONS(4959), - [sym__single_quote_open] = ACTIONS(4959), - [sym__single_quote_close] = ACTIONS(4959), - [sym__double_quote_open] = ACTIONS(4959), - [sym__superscript_open] = ACTIONS(4959), - [sym__subscript_open] = ACTIONS(4959), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4959), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4959), - [sym__cite_author_in_text] = ACTIONS(4959), - [sym__cite_suppress_author] = ACTIONS(4959), - [sym__shortcode_open_escaped] = ACTIONS(4959), - [sym__shortcode_open] = ACTIONS(4959), - [sym__unclosed_span] = ACTIONS(4959), - [sym__strong_emphasis_open_star] = ACTIONS(4959), - [sym__strong_emphasis_open_underscore] = ACTIONS(4959), + [ts_builtin_sym_end] = ACTIONS(4239), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(1618)] = { - [sym__backslash_escape] = ACTIONS(4963), - [sym_entity_reference] = ACTIONS(4963), - [sym_numeric_character_reference] = ACTIONS(4963), - [anon_sym_LT] = ACTIONS(4965), - [anon_sym_GT] = ACTIONS(4963), - [anon_sym_BANG] = ACTIONS(4963), - [anon_sym_DQUOTE] = ACTIONS(4963), - [anon_sym_POUND] = ACTIONS(4963), - [anon_sym_DOLLAR] = ACTIONS(4963), - [anon_sym_PERCENT] = ACTIONS(4963), - [anon_sym_AMP] = ACTIONS(4965), - [anon_sym_SQUOTE] = ACTIONS(4963), - [anon_sym_STAR] = ACTIONS(4963), - [anon_sym_PLUS] = ACTIONS(4963), - [anon_sym_COMMA] = ACTIONS(4963), - [anon_sym_DASH] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4965), - [anon_sym_SLASH] = ACTIONS(4963), - [anon_sym_COLON] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_EQ] = ACTIONS(4963), - [anon_sym_QMARK] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH] = ACTIONS(4965), - [anon_sym_CARET] = ACTIONS(4965), - [anon_sym_BQUOTE] = ACTIONS(4963), - [anon_sym_LBRACE] = ACTIONS(4963), - [anon_sym_PIPE] = ACTIONS(4963), - [anon_sym_TILDE] = ACTIONS(4963), - [anon_sym_LPAREN] = ACTIONS(4963), - [anon_sym_RPAREN] = ACTIONS(4963), - [sym__newline_token] = ACTIONS(4963), - [aux_sym_insert_token1] = ACTIONS(4963), - [aux_sym_delete_token1] = ACTIONS(4963), - [aux_sym_highlight_token1] = ACTIONS(4963), - [aux_sym_edit_comment_token1] = ACTIONS(4963), - [anon_sym_CARET_LBRACK] = ACTIONS(4963), - [anon_sym_LBRACK_CARET] = ACTIONS(4963), - [sym_uri_autolink] = ACTIONS(4963), - [sym_email_autolink] = ACTIONS(4963), - [sym__whitespace_ge_2] = ACTIONS(4963), - [aux_sym__whitespace_token1] = ACTIONS(4965), - [sym__word_no_digit] = ACTIONS(4963), - [sym__digits] = ACTIONS(4963), - [anon_sym_DASH_DASH] = ACTIONS(4965), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4963), - [sym__code_span_start] = ACTIONS(4963), - [sym__emphasis_open_star] = ACTIONS(4963), - [sym__emphasis_open_underscore] = ACTIONS(4963), - [sym__strikeout_open] = ACTIONS(4963), - [sym__latex_span_start] = ACTIONS(4963), - [sym__single_quote_open] = ACTIONS(4963), - [sym__single_quote_close] = ACTIONS(4963), - [sym__double_quote_open] = ACTIONS(4963), - [sym__superscript_open] = ACTIONS(4963), - [sym__subscript_open] = ACTIONS(4963), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4963), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4963), - [sym__cite_author_in_text] = ACTIONS(4963), - [sym__cite_suppress_author] = ACTIONS(4963), - [sym__shortcode_open_escaped] = ACTIONS(4963), - [sym__shortcode_open] = ACTIONS(4963), - [sym__unclosed_span] = ACTIONS(4963), - [sym__strong_emphasis_open_star] = ACTIONS(4963), - [sym__strong_emphasis_open_underscore] = ACTIONS(4963), + [sym__backslash_escape] = ACTIONS(4201), + [sym_entity_reference] = ACTIONS(4201), + [sym_numeric_character_reference] = ACTIONS(4201), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_DQUOTE] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_SQUOTE] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_COMMA] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4203), + [anon_sym_DOT] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_SEMI] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_LBRACK] = ACTIONS(4203), + [anon_sym_BSLASH] = ACTIONS(4203), + [anon_sym_CARET] = ACTIONS(4203), + [anon_sym_BQUOTE] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_PIPE] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym_RPAREN] = ACTIONS(4201), + [sym__newline_token] = ACTIONS(4201), + [aux_sym_insert_token1] = ACTIONS(4201), + [aux_sym_delete_token1] = ACTIONS(4201), + [aux_sym_highlight_token1] = ACTIONS(4201), + [aux_sym_edit_comment_token1] = ACTIONS(4201), + [anon_sym_CARET_LBRACK] = ACTIONS(4201), + [anon_sym_LBRACK_CARET] = ACTIONS(4201), + [sym_uri_autolink] = ACTIONS(4201), + [sym_email_autolink] = ACTIONS(4201), + [sym__whitespace_ge_2] = ACTIONS(4201), + [aux_sym__whitespace_token1] = ACTIONS(4203), + [sym__word_no_digit] = ACTIONS(4201), + [sym__digits] = ACTIONS(4201), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4201), + [sym__code_span_start] = ACTIONS(4201), + [sym__emphasis_open_star] = ACTIONS(4201), + [sym__emphasis_open_underscore] = ACTIONS(4201), + [sym__strikeout_open] = ACTIONS(4201), + [sym__latex_span_start] = ACTIONS(4201), + [sym__single_quote_open] = ACTIONS(4201), + [sym__single_quote_close] = ACTIONS(4201), + [sym__double_quote_open] = ACTIONS(4201), + [sym__superscript_open] = ACTIONS(4201), + [sym__subscript_open] = ACTIONS(4201), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4201), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4201), + [sym__cite_author_in_text] = ACTIONS(4201), + [sym__cite_suppress_author] = ACTIONS(4201), + [sym__shortcode_open_escaped] = ACTIONS(4201), + [sym__shortcode_open] = ACTIONS(4201), + [sym__unclosed_span] = ACTIONS(4201), + [sym__strong_emphasis_open_star] = ACTIONS(4201), + [sym__strong_emphasis_open_underscore] = ACTIONS(4201), }, [STATE(1619)] = { - [sym__backslash_escape] = ACTIONS(4967), - [sym_entity_reference] = ACTIONS(4967), - [sym_numeric_character_reference] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4969), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_POUND] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_AMP] = ACTIONS(4969), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_COMMA] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4969), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SEMI] = ACTIONS(4967), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_QMARK] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH] = ACTIONS(4969), - [anon_sym_CARET] = ACTIONS(4969), - [anon_sym_BQUOTE] = ACTIONS(4967), - [anon_sym_LBRACE] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4967), - [anon_sym_RPAREN] = ACTIONS(4967), - [sym__newline_token] = ACTIONS(4967), - [aux_sym_insert_token1] = ACTIONS(4967), - [aux_sym_delete_token1] = ACTIONS(4967), - [aux_sym_highlight_token1] = ACTIONS(4967), - [aux_sym_edit_comment_token1] = ACTIONS(4967), - [anon_sym_CARET_LBRACK] = ACTIONS(4967), - [anon_sym_LBRACK_CARET] = ACTIONS(4967), - [sym_uri_autolink] = ACTIONS(4967), - [sym_email_autolink] = ACTIONS(4967), - [sym__whitespace_ge_2] = ACTIONS(4967), - [aux_sym__whitespace_token1] = ACTIONS(4969), - [sym__word_no_digit] = ACTIONS(4967), - [sym__digits] = ACTIONS(4967), - [anon_sym_DASH_DASH] = ACTIONS(4969), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4967), - [sym__code_span_start] = ACTIONS(4967), - [sym__emphasis_open_star] = ACTIONS(4967), - [sym__emphasis_open_underscore] = ACTIONS(4967), - [sym__strikeout_open] = ACTIONS(4967), - [sym__latex_span_start] = ACTIONS(4967), - [sym__single_quote_open] = ACTIONS(4967), - [sym__single_quote_close] = ACTIONS(4967), - [sym__double_quote_open] = ACTIONS(4967), - [sym__superscript_open] = ACTIONS(4967), - [sym__subscript_open] = ACTIONS(4967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4967), - [sym__cite_author_in_text] = ACTIONS(4967), - [sym__cite_suppress_author] = ACTIONS(4967), - [sym__shortcode_open_escaped] = ACTIONS(4967), - [sym__shortcode_open] = ACTIONS(4967), - [sym__unclosed_span] = ACTIONS(4967), - [sym__strong_emphasis_open_star] = ACTIONS(4967), - [sym__strong_emphasis_open_underscore] = ACTIONS(4967), + [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(1620)] = { - [sym__backslash_escape] = ACTIONS(4971), - [sym_entity_reference] = ACTIONS(4971), - [sym_numeric_character_reference] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4973), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_POUND] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_AMP] = ACTIONS(4973), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_COMMA] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4973), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_QMARK] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH] = ACTIONS(4973), - [anon_sym_CARET] = ACTIONS(4973), - [anon_sym_BQUOTE] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4971), - [anon_sym_RPAREN] = ACTIONS(4971), - [sym__newline_token] = ACTIONS(4971), - [aux_sym_insert_token1] = ACTIONS(4971), - [aux_sym_delete_token1] = ACTIONS(4971), - [aux_sym_highlight_token1] = ACTIONS(4971), - [aux_sym_edit_comment_token1] = ACTIONS(4971), - [anon_sym_CARET_LBRACK] = ACTIONS(4971), - [anon_sym_LBRACK_CARET] = ACTIONS(4971), - [sym_uri_autolink] = ACTIONS(4971), - [sym_email_autolink] = ACTIONS(4971), - [sym__whitespace_ge_2] = ACTIONS(4971), - [aux_sym__whitespace_token1] = ACTIONS(4973), - [sym__word_no_digit] = ACTIONS(4971), - [sym__digits] = ACTIONS(4971), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4971), - [sym__code_span_start] = ACTIONS(4971), - [sym__emphasis_open_star] = ACTIONS(4971), - [sym__emphasis_open_underscore] = ACTIONS(4971), - [sym__strikeout_open] = ACTIONS(4971), - [sym__latex_span_start] = ACTIONS(4971), - [sym__single_quote_open] = ACTIONS(4971), - [sym__single_quote_close] = ACTIONS(4971), - [sym__double_quote_open] = ACTIONS(4971), - [sym__superscript_open] = ACTIONS(4971), - [sym__subscript_open] = ACTIONS(4971), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4971), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4971), - [sym__cite_author_in_text] = ACTIONS(4971), - [sym__cite_suppress_author] = ACTIONS(4971), - [sym__shortcode_open_escaped] = ACTIONS(4971), - [sym__shortcode_open] = ACTIONS(4971), - [sym__unclosed_span] = ACTIONS(4971), - [sym__strong_emphasis_open_star] = ACTIONS(4971), - [sym__strong_emphasis_open_underscore] = ACTIONS(4971), + [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__single_quote_close] = 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(1621)] = { - [sym__backslash_escape] = ACTIONS(4975), - [sym_entity_reference] = ACTIONS(4975), - [sym_numeric_character_reference] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4977), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [anon_sym_POUND] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_AMP] = ACTIONS(4977), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_COMMA] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_QMARK] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_BSLASH] = ACTIONS(4977), - [anon_sym_CARET] = ACTIONS(4977), - [anon_sym_BQUOTE] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4975), - [anon_sym_RPAREN] = ACTIONS(4975), - [sym__newline_token] = ACTIONS(4975), - [aux_sym_insert_token1] = ACTIONS(4975), - [aux_sym_delete_token1] = ACTIONS(4975), - [aux_sym_highlight_token1] = ACTIONS(4975), - [aux_sym_edit_comment_token1] = ACTIONS(4975), - [anon_sym_CARET_LBRACK] = ACTIONS(4975), - [anon_sym_LBRACK_CARET] = ACTIONS(4975), - [sym_uri_autolink] = ACTIONS(4975), - [sym_email_autolink] = ACTIONS(4975), - [sym__whitespace_ge_2] = ACTIONS(4975), - [aux_sym__whitespace_token1] = ACTIONS(4977), - [sym__word_no_digit] = ACTIONS(4975), - [sym__digits] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4975), - [sym__code_span_start] = ACTIONS(4975), - [sym__emphasis_open_star] = ACTIONS(4975), - [sym__emphasis_open_underscore] = ACTIONS(4975), - [sym__strikeout_open] = ACTIONS(4975), - [sym__latex_span_start] = ACTIONS(4975), - [sym__single_quote_open] = ACTIONS(4975), - [sym__single_quote_close] = ACTIONS(4975), - [sym__double_quote_open] = ACTIONS(4975), - [sym__superscript_open] = ACTIONS(4975), - [sym__subscript_open] = ACTIONS(4975), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4975), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4975), - [sym__cite_author_in_text] = ACTIONS(4975), - [sym__cite_suppress_author] = ACTIONS(4975), - [sym__shortcode_open_escaped] = ACTIONS(4975), - [sym__shortcode_open] = ACTIONS(4975), - [sym__unclosed_span] = ACTIONS(4975), - [sym__strong_emphasis_open_star] = ACTIONS(4975), - [sym__strong_emphasis_open_underscore] = ACTIONS(4975), + [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__strikeout_open] = ACTIONS(4559), + [sym__latex_span_start] = ACTIONS(4559), + [sym__single_quote_open] = ACTIONS(4559), + [sym__single_quote_close] = 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(1622)] = { - [sym__backslash_escape] = ACTIONS(4979), - [sym_entity_reference] = ACTIONS(4979), - [sym_numeric_character_reference] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [anon_sym_POUND] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_AMP] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_COMMA] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4981), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_COLON] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_QMARK] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH] = ACTIONS(4981), - [anon_sym_CARET] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_TILDE] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4979), - [anon_sym_RPAREN] = ACTIONS(4979), - [sym__newline_token] = ACTIONS(4979), - [aux_sym_insert_token1] = ACTIONS(4979), - [aux_sym_delete_token1] = ACTIONS(4979), - [aux_sym_highlight_token1] = ACTIONS(4979), - [aux_sym_edit_comment_token1] = ACTIONS(4979), - [anon_sym_CARET_LBRACK] = ACTIONS(4979), - [anon_sym_LBRACK_CARET] = ACTIONS(4979), - [sym_uri_autolink] = ACTIONS(4979), - [sym_email_autolink] = ACTIONS(4979), - [sym__whitespace_ge_2] = ACTIONS(4979), - [aux_sym__whitespace_token1] = ACTIONS(4981), - [sym__word_no_digit] = ACTIONS(4979), - [sym__digits] = ACTIONS(4979), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4979), - [sym__code_span_start] = ACTIONS(4979), - [sym__emphasis_open_star] = ACTIONS(4979), - [sym__emphasis_open_underscore] = ACTIONS(4979), - [sym__strikeout_open] = ACTIONS(4979), - [sym__latex_span_start] = ACTIONS(4979), - [sym__single_quote_open] = ACTIONS(4979), - [sym__single_quote_close] = ACTIONS(4979), - [sym__double_quote_open] = ACTIONS(4979), - [sym__superscript_open] = ACTIONS(4979), - [sym__subscript_open] = ACTIONS(4979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4979), - [sym__cite_author_in_text] = ACTIONS(4979), - [sym__cite_suppress_author] = ACTIONS(4979), - [sym__shortcode_open_escaped] = ACTIONS(4979), - [sym__shortcode_open] = ACTIONS(4979), - [sym__unclosed_span] = ACTIONS(4979), - [sym__strong_emphasis_open_star] = ACTIONS(4979), - [sym__strong_emphasis_open_underscore] = ACTIONS(4979), + [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__single_quote_close] = 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(1623)] = { - [sym__backslash_escape] = ACTIONS(4983), - [sym_entity_reference] = ACTIONS(4983), - [sym_numeric_character_reference] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_DQUOTE] = ACTIONS(4983), - [anon_sym_POUND] = ACTIONS(4983), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_AMP] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_COMMA] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4985), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_QMARK] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH] = ACTIONS(4985), - [anon_sym_CARET] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4983), - [sym__newline_token] = ACTIONS(4983), - [aux_sym_insert_token1] = ACTIONS(4983), - [aux_sym_delete_token1] = ACTIONS(4983), - [aux_sym_highlight_token1] = ACTIONS(4983), - [aux_sym_edit_comment_token1] = ACTIONS(4983), - [anon_sym_CARET_LBRACK] = ACTIONS(4983), - [anon_sym_LBRACK_CARET] = ACTIONS(4983), - [sym_uri_autolink] = ACTIONS(4983), - [sym_email_autolink] = ACTIONS(4983), - [sym__whitespace_ge_2] = ACTIONS(4983), - [aux_sym__whitespace_token1] = ACTIONS(4985), - [sym__word_no_digit] = ACTIONS(4983), - [sym__digits] = ACTIONS(4983), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4983), - [sym__code_span_start] = ACTIONS(4983), - [sym__emphasis_open_star] = ACTIONS(4983), - [sym__emphasis_open_underscore] = ACTIONS(4983), - [sym__strikeout_open] = ACTIONS(4983), - [sym__latex_span_start] = ACTIONS(4983), - [sym__single_quote_open] = ACTIONS(4983), - [sym__single_quote_close] = ACTIONS(4983), - [sym__double_quote_open] = ACTIONS(4983), - [sym__superscript_open] = ACTIONS(4983), - [sym__subscript_open] = ACTIONS(4983), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4983), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4983), - [sym__cite_author_in_text] = ACTIONS(4983), - [sym__cite_suppress_author] = ACTIONS(4983), - [sym__shortcode_open_escaped] = ACTIONS(4983), - [sym__shortcode_open] = ACTIONS(4983), - [sym__unclosed_span] = ACTIONS(4983), - [sym__strong_emphasis_open_star] = ACTIONS(4983), - [sym__strong_emphasis_open_underscore] = ACTIONS(4983), + [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__superscript_close] = 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(1624)] = { - [sym__backslash_escape] = ACTIONS(4987), - [sym_entity_reference] = ACTIONS(4987), - [sym_numeric_character_reference] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4989), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_DQUOTE] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(4987), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4989), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_COMMA] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4989), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_QMARK] = ACTIONS(4987), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH] = ACTIONS(4989), - [anon_sym_CARET] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_TILDE] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym__newline_token] = ACTIONS(4987), - [aux_sym_insert_token1] = ACTIONS(4987), - [aux_sym_delete_token1] = ACTIONS(4987), - [aux_sym_highlight_token1] = ACTIONS(4987), - [aux_sym_edit_comment_token1] = ACTIONS(4987), - [anon_sym_CARET_LBRACK] = ACTIONS(4987), - [anon_sym_LBRACK_CARET] = ACTIONS(4987), - [sym_uri_autolink] = ACTIONS(4987), - [sym_email_autolink] = ACTIONS(4987), - [sym__whitespace_ge_2] = ACTIONS(4987), - [aux_sym__whitespace_token1] = ACTIONS(4989), - [sym__word_no_digit] = ACTIONS(4987), - [sym__digits] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4987), - [sym__code_span_start] = ACTIONS(4987), - [sym__emphasis_open_star] = ACTIONS(4987), - [sym__emphasis_open_underscore] = ACTIONS(4987), - [sym__strikeout_open] = ACTIONS(4987), - [sym__latex_span_start] = ACTIONS(4987), - [sym__single_quote_open] = ACTIONS(4987), - [sym__single_quote_close] = ACTIONS(4987), - [sym__double_quote_open] = ACTIONS(4987), - [sym__superscript_open] = ACTIONS(4987), - [sym__subscript_open] = ACTIONS(4987), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4987), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4987), - [sym__cite_author_in_text] = ACTIONS(4987), - [sym__cite_suppress_author] = ACTIONS(4987), - [sym__shortcode_open_escaped] = ACTIONS(4987), - [sym__shortcode_open] = ACTIONS(4987), - [sym__unclosed_span] = ACTIONS(4987), - [sym__strong_emphasis_open_star] = ACTIONS(4987), - [sym__strong_emphasis_open_underscore] = ACTIONS(4987), + [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__superscript_close] = 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(1625)] = { - [sym__backslash_escape] = ACTIONS(5179), - [sym_entity_reference] = ACTIONS(5179), - [sym_numeric_character_reference] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_DQUOTE] = ACTIONS(5179), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_PERCENT] = ACTIONS(5179), - [anon_sym_AMP] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(5179), - [anon_sym_QMARK] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5181), - [anon_sym_BSLASH] = ACTIONS(5181), - [anon_sym_CARET] = ACTIONS(5181), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_TILDE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [sym__newline_token] = ACTIONS(5179), - [aux_sym_insert_token1] = ACTIONS(5179), - [aux_sym_delete_token1] = ACTIONS(5179), - [aux_sym_highlight_token1] = ACTIONS(5179), - [aux_sym_edit_comment_token1] = ACTIONS(5179), - [anon_sym_CARET_LBRACK] = ACTIONS(5179), - [anon_sym_LBRACK_CARET] = ACTIONS(5179), - [sym_uri_autolink] = ACTIONS(5179), - [sym_email_autolink] = ACTIONS(5179), - [sym__whitespace_ge_2] = ACTIONS(5179), - [aux_sym__whitespace_token1] = ACTIONS(5181), - [sym__word_no_digit] = ACTIONS(5179), - [sym__digits] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5181), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5179), - [sym__code_span_start] = ACTIONS(5179), - [sym__emphasis_open_star] = ACTIONS(5179), - [sym__emphasis_open_underscore] = ACTIONS(5179), - [sym__strikeout_open] = ACTIONS(5179), - [sym__strikeout_close] = ACTIONS(5179), - [sym__latex_span_start] = ACTIONS(5179), - [sym__single_quote_open] = ACTIONS(5179), - [sym__double_quote_open] = ACTIONS(5179), - [sym__superscript_open] = ACTIONS(5179), - [sym__subscript_open] = ACTIONS(5179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5179), - [sym__cite_author_in_text] = ACTIONS(5179), - [sym__cite_suppress_author] = ACTIONS(5179), - [sym__shortcode_open_escaped] = ACTIONS(5179), - [sym__shortcode_open] = ACTIONS(5179), - [sym__unclosed_span] = ACTIONS(5179), - [sym__strong_emphasis_open_star] = ACTIONS(5179), - [sym__strong_emphasis_open_underscore] = ACTIONS(5179), + [ts_builtin_sym_end] = ACTIONS(4507), + [sym__backslash_escape] = ACTIONS(4507), + [sym_entity_reference] = ACTIONS(4507), + [sym_numeric_character_reference] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(4507), + [anon_sym_DOLLAR] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_QMARK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_BSLASH] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [sym__newline_token] = ACTIONS(4507), + [aux_sym_insert_token1] = ACTIONS(4507), + [aux_sym_delete_token1] = ACTIONS(4507), + [aux_sym_highlight_token1] = ACTIONS(4507), + [aux_sym_edit_comment_token1] = ACTIONS(4507), + [anon_sym_CARET_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK_CARET] = ACTIONS(4507), + [sym_uri_autolink] = ACTIONS(4507), + [sym_email_autolink] = ACTIONS(4507), + [sym__whitespace_ge_2] = ACTIONS(4507), + [aux_sym__whitespace_token1] = ACTIONS(4509), + [sym__word_no_digit] = ACTIONS(4507), + [sym__digits] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4507), + [sym__code_span_start] = ACTIONS(4507), + [sym__emphasis_open_star] = ACTIONS(4507), + [sym__emphasis_open_underscore] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4507), + [sym__latex_span_start] = ACTIONS(4507), + [sym__single_quote_open] = ACTIONS(4507), + [sym__double_quote_open] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4507), + [sym__subscript_open] = ACTIONS(4507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4507), + [sym__cite_author_in_text] = ACTIONS(4507), + [sym__cite_suppress_author] = ACTIONS(4507), + [sym__shortcode_open_escaped] = ACTIONS(4507), + [sym__shortcode_open] = ACTIONS(4507), + [sym__unclosed_span] = ACTIONS(4507), + [sym__strong_emphasis_open_star] = ACTIONS(4507), + [sym__strong_emphasis_open_underscore] = ACTIONS(4507), }, [STATE(1626)] = { - [sym__backslash_escape] = ACTIONS(4991), - [sym_entity_reference] = ACTIONS(4991), - [sym_numeric_character_reference] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_COMMA] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_QMARK] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH] = ACTIONS(4993), - [anon_sym_CARET] = ACTIONS(4993), - [anon_sym_BQUOTE] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_TILDE] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4991), - [sym__newline_token] = ACTIONS(4991), - [aux_sym_insert_token1] = ACTIONS(4991), - [aux_sym_delete_token1] = ACTIONS(4991), - [aux_sym_highlight_token1] = ACTIONS(4991), - [aux_sym_edit_comment_token1] = ACTIONS(4991), - [anon_sym_CARET_LBRACK] = ACTIONS(4991), - [anon_sym_LBRACK_CARET] = ACTIONS(4991), - [sym_uri_autolink] = ACTIONS(4991), - [sym_email_autolink] = ACTIONS(4991), - [sym__whitespace_ge_2] = ACTIONS(4991), - [aux_sym__whitespace_token1] = ACTIONS(4993), - [sym__word_no_digit] = ACTIONS(4991), - [sym__digits] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4991), - [sym__code_span_start] = ACTIONS(4991), - [sym__emphasis_open_star] = ACTIONS(4991), - [sym__emphasis_open_underscore] = ACTIONS(4991), - [sym__strikeout_open] = ACTIONS(4991), - [sym__latex_span_start] = ACTIONS(4991), - [sym__single_quote_open] = ACTIONS(4991), - [sym__single_quote_close] = ACTIONS(4991), - [sym__double_quote_open] = ACTIONS(4991), - [sym__superscript_open] = ACTIONS(4991), - [sym__subscript_open] = ACTIONS(4991), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4991), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4991), - [sym__cite_author_in_text] = ACTIONS(4991), - [sym__cite_suppress_author] = ACTIONS(4991), - [sym__shortcode_open_escaped] = ACTIONS(4991), - [sym__shortcode_open] = ACTIONS(4991), - [sym__unclosed_span] = ACTIONS(4991), - [sym__strong_emphasis_open_star] = ACTIONS(4991), - [sym__strong_emphasis_open_underscore] = ACTIONS(4991), + [ts_builtin_sym_end] = ACTIONS(4511), + [sym__backslash_escape] = ACTIONS(4511), + [sym_entity_reference] = ACTIONS(4511), + [sym_numeric_character_reference] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4511), + [anon_sym_POUND] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_COMMA] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_QMARK] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_BQUOTE] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(4511), + [sym__newline_token] = ACTIONS(4511), + [aux_sym_insert_token1] = ACTIONS(4511), + [aux_sym_delete_token1] = ACTIONS(4511), + [aux_sym_highlight_token1] = ACTIONS(4511), + [aux_sym_edit_comment_token1] = ACTIONS(4511), + [anon_sym_CARET_LBRACK] = ACTIONS(4511), + [anon_sym_LBRACK_CARET] = ACTIONS(4511), + [sym_uri_autolink] = ACTIONS(4511), + [sym_email_autolink] = ACTIONS(4511), + [sym__whitespace_ge_2] = ACTIONS(4511), + [aux_sym__whitespace_token1] = ACTIONS(4513), + [sym__word_no_digit] = ACTIONS(4511), + [sym__digits] = ACTIONS(4511), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), + [sym__code_span_start] = ACTIONS(4511), + [sym__emphasis_open_star] = ACTIONS(4511), + [sym__emphasis_open_underscore] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4511), + [sym__latex_span_start] = ACTIONS(4511), + [sym__single_quote_open] = ACTIONS(4511), + [sym__double_quote_open] = ACTIONS(4511), + [sym__superscript_open] = ACTIONS(4511), + [sym__subscript_open] = ACTIONS(4511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), + [sym__cite_author_in_text] = ACTIONS(4511), + [sym__cite_suppress_author] = ACTIONS(4511), + [sym__shortcode_open_escaped] = ACTIONS(4511), + [sym__shortcode_open] = ACTIONS(4511), + [sym__unclosed_span] = ACTIONS(4511), + [sym__strong_emphasis_open_star] = ACTIONS(4511), + [sym__strong_emphasis_open_underscore] = ACTIONS(4511), }, [STATE(1627)] = { - [sym__backslash_escape] = ACTIONS(4995), - [sym_entity_reference] = ACTIONS(4995), - [sym_numeric_character_reference] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4997), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [anon_sym_POUND] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_PERCENT] = ACTIONS(4995), - [anon_sym_AMP] = ACTIONS(4997), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_COMMA] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4997), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH] = ACTIONS(4997), - [anon_sym_CARET] = ACTIONS(4997), - [anon_sym_BQUOTE] = ACTIONS(4995), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_TILDE] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym__newline_token] = ACTIONS(4995), - [aux_sym_insert_token1] = ACTIONS(4995), - [aux_sym_delete_token1] = ACTIONS(4995), - [aux_sym_highlight_token1] = ACTIONS(4995), - [aux_sym_edit_comment_token1] = ACTIONS(4995), - [anon_sym_CARET_LBRACK] = ACTIONS(4995), - [anon_sym_LBRACK_CARET] = ACTIONS(4995), - [sym_uri_autolink] = ACTIONS(4995), - [sym_email_autolink] = ACTIONS(4995), - [sym__whitespace_ge_2] = ACTIONS(4995), - [aux_sym__whitespace_token1] = ACTIONS(4997), - [sym__word_no_digit] = ACTIONS(4995), - [sym__digits] = ACTIONS(4995), - [anon_sym_DASH_DASH] = ACTIONS(4997), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4995), - [sym__code_span_start] = ACTIONS(4995), - [sym__emphasis_open_star] = ACTIONS(4995), - [sym__emphasis_open_underscore] = ACTIONS(4995), - [sym__strikeout_open] = ACTIONS(4995), - [sym__latex_span_start] = ACTIONS(4995), - [sym__single_quote_open] = ACTIONS(4995), - [sym__single_quote_close] = ACTIONS(4995), - [sym__double_quote_open] = ACTIONS(4995), - [sym__superscript_open] = ACTIONS(4995), - [sym__subscript_open] = ACTIONS(4995), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4995), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4995), - [sym__cite_author_in_text] = ACTIONS(4995), - [sym__cite_suppress_author] = ACTIONS(4995), - [sym__shortcode_open_escaped] = ACTIONS(4995), - [sym__shortcode_open] = ACTIONS(4995), - [sym__unclosed_span] = ACTIONS(4995), - [sym__strong_emphasis_open_star] = ACTIONS(4995), - [sym__strong_emphasis_open_underscore] = ACTIONS(4995), + [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__superscript_close] = 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(1628)] = { - [sym__backslash_escape] = ACTIONS(4999), - [sym_entity_reference] = ACTIONS(4999), - [sym_numeric_character_reference] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(5001), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_DQUOTE] = ACTIONS(4999), - [anon_sym_POUND] = ACTIONS(4999), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_PERCENT] = ACTIONS(4999), - [anon_sym_AMP] = ACTIONS(5001), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(5001), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SEMI] = ACTIONS(4999), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_QMARK] = ACTIONS(4999), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH] = ACTIONS(5001), - [anon_sym_CARET] = ACTIONS(5001), - [anon_sym_BQUOTE] = ACTIONS(4999), - [anon_sym_LBRACE] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_TILDE] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4999), - [anon_sym_RPAREN] = ACTIONS(4999), - [sym__newline_token] = ACTIONS(4999), - [aux_sym_insert_token1] = ACTIONS(4999), - [aux_sym_delete_token1] = ACTIONS(4999), - [aux_sym_highlight_token1] = ACTIONS(4999), - [aux_sym_edit_comment_token1] = ACTIONS(4999), - [anon_sym_CARET_LBRACK] = ACTIONS(4999), - [anon_sym_LBRACK_CARET] = ACTIONS(4999), - [sym_uri_autolink] = ACTIONS(4999), - [sym_email_autolink] = ACTIONS(4999), - [sym__whitespace_ge_2] = ACTIONS(4999), - [aux_sym__whitespace_token1] = ACTIONS(5001), - [sym__word_no_digit] = ACTIONS(4999), - [sym__digits] = ACTIONS(4999), - [anon_sym_DASH_DASH] = ACTIONS(5001), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4999), - [sym__code_span_start] = ACTIONS(4999), - [sym__emphasis_open_star] = ACTIONS(4999), - [sym__emphasis_open_underscore] = ACTIONS(4999), - [sym__strikeout_open] = ACTIONS(4999), - [sym__latex_span_start] = ACTIONS(4999), - [sym__single_quote_open] = ACTIONS(4999), - [sym__single_quote_close] = ACTIONS(4999), - [sym__double_quote_open] = ACTIONS(4999), - [sym__superscript_open] = ACTIONS(4999), - [sym__subscript_open] = ACTIONS(4999), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4999), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4999), - [sym__cite_author_in_text] = ACTIONS(4999), - [sym__cite_suppress_author] = ACTIONS(4999), - [sym__shortcode_open_escaped] = ACTIONS(4999), - [sym__shortcode_open] = ACTIONS(4999), - [sym__unclosed_span] = ACTIONS(4999), - [sym__strong_emphasis_open_star] = ACTIONS(4999), - [sym__strong_emphasis_open_underscore] = ACTIONS(4999), + [sym__backslash_escape] = ACTIONS(4303), + [sym_entity_reference] = ACTIONS(4303), + [sym_numeric_character_reference] = ACTIONS(4303), + [anon_sym_LT] = ACTIONS(4305), + [anon_sym_GT] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_COMMA] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_COLON] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_EQ] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_BSLASH] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_BQUOTE] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_RPAREN] = ACTIONS(4303), + [sym__newline_token] = ACTIONS(4303), + [aux_sym_insert_token1] = ACTIONS(4303), + [aux_sym_delete_token1] = ACTIONS(4303), + [aux_sym_highlight_token1] = ACTIONS(4303), + [aux_sym_edit_comment_token1] = ACTIONS(4303), + [anon_sym_CARET_LBRACK] = ACTIONS(4303), + [anon_sym_LBRACK_CARET] = ACTIONS(4303), + [sym_uri_autolink] = ACTIONS(4303), + [sym_email_autolink] = ACTIONS(4303), + [sym__whitespace_ge_2] = ACTIONS(4303), + [aux_sym__whitespace_token1] = ACTIONS(4305), + [sym__word_no_digit] = ACTIONS(4303), + [sym__digits] = ACTIONS(4303), + [anon_sym_DASH_DASH] = ACTIONS(4305), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), + [sym__code_span_start] = ACTIONS(4303), + [sym__emphasis_open_star] = ACTIONS(4303), + [sym__emphasis_open_underscore] = ACTIONS(4303), + [sym__strikeout_open] = ACTIONS(4303), + [sym__latex_span_start] = ACTIONS(4303), + [sym__single_quote_open] = ACTIONS(4303), + [sym__double_quote_open] = ACTIONS(4303), + [sym__double_quote_close] = ACTIONS(4303), + [sym__superscript_open] = ACTIONS(4303), + [sym__subscript_open] = ACTIONS(4303), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4303), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4303), + [sym__cite_author_in_text] = ACTIONS(4303), + [sym__cite_suppress_author] = ACTIONS(4303), + [sym__shortcode_open_escaped] = ACTIONS(4303), + [sym__shortcode_open] = ACTIONS(4303), + [sym__unclosed_span] = ACTIONS(4303), + [sym__strong_emphasis_open_star] = ACTIONS(4303), + [sym__strong_emphasis_open_underscore] = ACTIONS(4303), }, [STATE(1629)] = { - [sym__backslash_escape] = ACTIONS(5003), - [sym_entity_reference] = ACTIONS(5003), - [sym_numeric_character_reference] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5005), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_POUND] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_PERCENT] = ACTIONS(5003), - [anon_sym_AMP] = ACTIONS(5005), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5005), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH] = ACTIONS(5005), - [anon_sym_CARET] = ACTIONS(5005), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LBRACE] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_TILDE] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5003), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym__newline_token] = ACTIONS(5003), - [aux_sym_insert_token1] = ACTIONS(5003), - [aux_sym_delete_token1] = ACTIONS(5003), - [aux_sym_highlight_token1] = ACTIONS(5003), - [aux_sym_edit_comment_token1] = ACTIONS(5003), - [anon_sym_CARET_LBRACK] = ACTIONS(5003), - [anon_sym_LBRACK_CARET] = ACTIONS(5003), - [sym_uri_autolink] = ACTIONS(5003), - [sym_email_autolink] = ACTIONS(5003), - [sym__whitespace_ge_2] = ACTIONS(5003), - [aux_sym__whitespace_token1] = ACTIONS(5005), - [sym__word_no_digit] = ACTIONS(5003), - [sym__digits] = ACTIONS(5003), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5003), - [sym__code_span_start] = ACTIONS(5003), - [sym__emphasis_open_star] = ACTIONS(5003), - [sym__emphasis_open_underscore] = ACTIONS(5003), - [sym__strikeout_open] = ACTIONS(5003), - [sym__latex_span_start] = ACTIONS(5003), - [sym__single_quote_open] = ACTIONS(5003), - [sym__single_quote_close] = ACTIONS(5003), - [sym__double_quote_open] = ACTIONS(5003), - [sym__superscript_open] = ACTIONS(5003), - [sym__subscript_open] = ACTIONS(5003), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5003), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5003), - [sym__cite_author_in_text] = ACTIONS(5003), - [sym__cite_suppress_author] = ACTIONS(5003), - [sym__shortcode_open_escaped] = ACTIONS(5003), - [sym__shortcode_open] = ACTIONS(5003), - [sym__unclosed_span] = ACTIONS(5003), - [sym__strong_emphasis_open_star] = ACTIONS(5003), - [sym__strong_emphasis_open_underscore] = ACTIONS(5003), + [ts_builtin_sym_end] = ACTIONS(4515), + [sym__backslash_escape] = ACTIONS(4515), + [sym_entity_reference] = ACTIONS(4515), + [sym_numeric_character_reference] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4515), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_BSLASH] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_RPAREN] = ACTIONS(4515), + [sym__newline_token] = ACTIONS(4515), + [aux_sym_insert_token1] = ACTIONS(4515), + [aux_sym_delete_token1] = ACTIONS(4515), + [aux_sym_highlight_token1] = ACTIONS(4515), + [aux_sym_edit_comment_token1] = ACTIONS(4515), + [anon_sym_CARET_LBRACK] = ACTIONS(4515), + [anon_sym_LBRACK_CARET] = ACTIONS(4515), + [sym_uri_autolink] = ACTIONS(4515), + [sym_email_autolink] = ACTIONS(4515), + [sym__whitespace_ge_2] = ACTIONS(4515), + [aux_sym__whitespace_token1] = ACTIONS(4517), + [sym__word_no_digit] = ACTIONS(4515), + [sym__digits] = ACTIONS(4515), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4515), + [sym__code_span_start] = ACTIONS(4515), + [sym__emphasis_open_star] = ACTIONS(4515), + [sym__emphasis_open_underscore] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4515), + [sym__latex_span_start] = ACTIONS(4515), + [sym__single_quote_open] = ACTIONS(4515), + [sym__double_quote_open] = ACTIONS(4515), + [sym__superscript_open] = ACTIONS(4515), + [sym__subscript_open] = ACTIONS(4515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4515), + [sym__cite_author_in_text] = ACTIONS(4515), + [sym__cite_suppress_author] = ACTIONS(4515), + [sym__shortcode_open_escaped] = ACTIONS(4515), + [sym__shortcode_open] = ACTIONS(4515), + [sym__unclosed_span] = ACTIONS(4515), + [sym__strong_emphasis_open_star] = ACTIONS(4515), + [sym__strong_emphasis_open_underscore] = ACTIONS(4515), }, [STATE(1630)] = { - [sym__backslash_escape] = ACTIONS(5007), - [sym_entity_reference] = ACTIONS(5007), - [sym_numeric_character_reference] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5009), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_DQUOTE] = ACTIONS(5007), - [anon_sym_POUND] = ACTIONS(5007), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_AMP] = ACTIONS(5009), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5009), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_QMARK] = ACTIONS(5007), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH] = ACTIONS(5009), - [anon_sym_CARET] = ACTIONS(5009), - [anon_sym_BQUOTE] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_TILDE] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5007), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym__newline_token] = ACTIONS(5007), - [aux_sym_insert_token1] = ACTIONS(5007), - [aux_sym_delete_token1] = ACTIONS(5007), - [aux_sym_highlight_token1] = ACTIONS(5007), - [aux_sym_edit_comment_token1] = ACTIONS(5007), - [anon_sym_CARET_LBRACK] = ACTIONS(5007), - [anon_sym_LBRACK_CARET] = ACTIONS(5007), - [sym_uri_autolink] = ACTIONS(5007), - [sym_email_autolink] = ACTIONS(5007), - [sym__whitespace_ge_2] = ACTIONS(5007), - [aux_sym__whitespace_token1] = ACTIONS(5009), - [sym__word_no_digit] = ACTIONS(5007), - [sym__digits] = ACTIONS(5007), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), - [sym__code_span_start] = ACTIONS(5007), - [sym__emphasis_open_star] = ACTIONS(5007), - [sym__emphasis_open_underscore] = ACTIONS(5007), - [sym__strikeout_open] = ACTIONS(5007), - [sym__strikeout_close] = ACTIONS(5007), - [sym__latex_span_start] = ACTIONS(5007), - [sym__single_quote_open] = ACTIONS(5007), - [sym__double_quote_open] = ACTIONS(5007), - [sym__superscript_open] = ACTIONS(5007), - [sym__subscript_open] = ACTIONS(5007), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5007), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5007), - [sym__cite_author_in_text] = ACTIONS(5007), - [sym__cite_suppress_author] = ACTIONS(5007), - [sym__shortcode_open_escaped] = ACTIONS(5007), - [sym__shortcode_open] = ACTIONS(5007), - [sym__unclosed_span] = ACTIONS(5007), - [sym__strong_emphasis_open_star] = ACTIONS(5007), - [sym__strong_emphasis_open_underscore] = ACTIONS(5007), + [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(1631)] = { - [sym__backslash_escape] = ACTIONS(5011), - [sym_entity_reference] = ACTIONS(5011), - [sym_numeric_character_reference] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5013), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5011), - [anon_sym_POUND] = ACTIONS(5011), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_AMP] = ACTIONS(5013), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_COMMA] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5013), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5011), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH] = ACTIONS(5013), - [anon_sym_CARET] = ACTIONS(5013), - [anon_sym_BQUOTE] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_TILDE] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym__newline_token] = ACTIONS(5011), - [aux_sym_insert_token1] = ACTIONS(5011), - [aux_sym_delete_token1] = ACTIONS(5011), - [aux_sym_highlight_token1] = ACTIONS(5011), - [aux_sym_edit_comment_token1] = ACTIONS(5011), - [anon_sym_CARET_LBRACK] = ACTIONS(5011), - [anon_sym_LBRACK_CARET] = ACTIONS(5011), - [sym_uri_autolink] = ACTIONS(5011), - [sym_email_autolink] = ACTIONS(5011), - [sym__whitespace_ge_2] = ACTIONS(5011), - [aux_sym__whitespace_token1] = ACTIONS(5013), - [sym__word_no_digit] = ACTIONS(5011), - [sym__digits] = ACTIONS(5011), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5011), - [sym__code_span_start] = ACTIONS(5011), - [sym__emphasis_open_star] = ACTIONS(5011), - [sym__emphasis_open_underscore] = ACTIONS(5011), - [sym__strikeout_open] = ACTIONS(5011), - [sym__latex_span_start] = ACTIONS(5011), - [sym__single_quote_open] = ACTIONS(5011), - [sym__single_quote_close] = ACTIONS(5011), - [sym__double_quote_open] = ACTIONS(5011), - [sym__superscript_open] = ACTIONS(5011), - [sym__subscript_open] = ACTIONS(5011), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5011), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5011), - [sym__cite_author_in_text] = ACTIONS(5011), - [sym__cite_suppress_author] = ACTIONS(5011), - [sym__shortcode_open_escaped] = ACTIONS(5011), - [sym__shortcode_open] = ACTIONS(5011), - [sym__unclosed_span] = ACTIONS(5011), - [sym__strong_emphasis_open_star] = ACTIONS(5011), - [sym__strong_emphasis_open_underscore] = ACTIONS(5011), + [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__double_quote_close] = 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(1632)] = { - [sym__backslash_escape] = ACTIONS(4701), - [sym_entity_reference] = ACTIONS(4701), - [sym_numeric_character_reference] = ACTIONS(4701), - [anon_sym_LT] = ACTIONS(4703), - [anon_sym_GT] = ACTIONS(4701), - [anon_sym_BANG] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(4701), - [anon_sym_POUND] = ACTIONS(4701), - [anon_sym_DOLLAR] = ACTIONS(4701), - [anon_sym_PERCENT] = ACTIONS(4701), - [anon_sym_AMP] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4701), - [anon_sym_PLUS] = ACTIONS(4701), - [anon_sym_COMMA] = ACTIONS(4701), - [anon_sym_DASH] = ACTIONS(4703), - [anon_sym_DOT] = ACTIONS(4703), - [anon_sym_SLASH] = ACTIONS(4701), - [anon_sym_COLON] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(4701), - [anon_sym_EQ] = ACTIONS(4701), - [anon_sym_QMARK] = ACTIONS(4701), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_BSLASH] = ACTIONS(4703), - [anon_sym_CARET] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4701), - [anon_sym_LBRACE] = ACTIONS(4701), - [anon_sym_PIPE] = ACTIONS(4701), - [anon_sym_TILDE] = ACTIONS(4701), - [anon_sym_LPAREN] = ACTIONS(4701), - [anon_sym_RPAREN] = ACTIONS(4701), - [sym__newline_token] = ACTIONS(4701), - [aux_sym_insert_token1] = ACTIONS(4701), - [aux_sym_delete_token1] = ACTIONS(4701), - [aux_sym_highlight_token1] = ACTIONS(4701), - [aux_sym_edit_comment_token1] = ACTIONS(4701), - [anon_sym_CARET_LBRACK] = ACTIONS(4701), - [anon_sym_LBRACK_CARET] = ACTIONS(4701), - [sym_uri_autolink] = ACTIONS(4701), - [sym_email_autolink] = ACTIONS(4701), - [sym__whitespace_ge_2] = ACTIONS(4701), - [aux_sym__whitespace_token1] = ACTIONS(4703), - [sym__word_no_digit] = ACTIONS(4701), - [sym__digits] = ACTIONS(4701), - [anon_sym_DASH_DASH] = ACTIONS(4703), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4701), - [sym__code_span_start] = ACTIONS(4701), - [sym__emphasis_open_star] = ACTIONS(4701), - [sym__emphasis_open_underscore] = ACTIONS(4701), - [sym__strikeout_open] = ACTIONS(4701), - [sym__latex_span_start] = ACTIONS(4701), - [sym__single_quote_open] = ACTIONS(4701), - [sym__single_quote_close] = ACTIONS(4701), - [sym__double_quote_open] = ACTIONS(4701), - [sym__superscript_open] = ACTIONS(4701), - [sym__subscript_open] = ACTIONS(4701), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4701), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4701), - [sym__cite_author_in_text] = ACTIONS(4701), - [sym__cite_suppress_author] = ACTIONS(4701), - [sym__shortcode_open_escaped] = ACTIONS(4701), - [sym__shortcode_open] = ACTIONS(4701), - [sym__unclosed_span] = ACTIONS(4701), - [sym__strong_emphasis_open_star] = ACTIONS(4701), - [sym__strong_emphasis_open_underscore] = ACTIONS(4701), + [ts_builtin_sym_end] = ACTIONS(4519), + [sym__backslash_escape] = ACTIONS(4519), + [sym_entity_reference] = ACTIONS(4519), + [sym_numeric_character_reference] = ACTIONS(4519), + [anon_sym_LT] = ACTIONS(4521), + [anon_sym_GT] = ACTIONS(4519), + [anon_sym_BANG] = ACTIONS(4519), + [anon_sym_DQUOTE] = ACTIONS(4519), + [anon_sym_POUND] = ACTIONS(4519), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4521), + [anon_sym_DOT] = ACTIONS(4521), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4521), + [anon_sym_BSLASH] = ACTIONS(4521), + [anon_sym_CARET] = ACTIONS(4521), + [anon_sym_BQUOTE] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [sym__newline_token] = ACTIONS(4519), + [aux_sym_insert_token1] = ACTIONS(4519), + [aux_sym_delete_token1] = ACTIONS(4519), + [aux_sym_highlight_token1] = ACTIONS(4519), + [aux_sym_edit_comment_token1] = ACTIONS(4519), + [anon_sym_CARET_LBRACK] = ACTIONS(4519), + [anon_sym_LBRACK_CARET] = ACTIONS(4519), + [sym_uri_autolink] = ACTIONS(4519), + [sym_email_autolink] = ACTIONS(4519), + [sym__whitespace_ge_2] = ACTIONS(4519), + [aux_sym__whitespace_token1] = ACTIONS(4521), + [sym__word_no_digit] = ACTIONS(4519), + [sym__digits] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4521), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [sym__code_span_start] = ACTIONS(4519), + [sym__emphasis_open_star] = ACTIONS(4519), + [sym__emphasis_open_underscore] = ACTIONS(4519), + [sym__strikeout_open] = ACTIONS(4519), + [sym__latex_span_start] = ACTIONS(4519), + [sym__single_quote_open] = ACTIONS(4519), + [sym__double_quote_open] = ACTIONS(4519), + [sym__superscript_open] = ACTIONS(4519), + [sym__subscript_open] = ACTIONS(4519), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4519), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4519), + [sym__cite_author_in_text] = ACTIONS(4519), + [sym__cite_suppress_author] = ACTIONS(4519), + [sym__shortcode_open_escaped] = ACTIONS(4519), + [sym__shortcode_open] = ACTIONS(4519), + [sym__unclosed_span] = ACTIONS(4519), + [sym__strong_emphasis_open_star] = ACTIONS(4519), + [sym__strong_emphasis_open_underscore] = ACTIONS(4519), }, [STATE(1633)] = { - [sym__backslash_escape] = ACTIONS(5015), - [sym_entity_reference] = ACTIONS(5015), - [sym_numeric_character_reference] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5017), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_DQUOTE] = ACTIONS(5015), - [anon_sym_POUND] = ACTIONS(5015), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5017), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_COMMA] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5017), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_QMARK] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_BSLASH] = ACTIONS(5017), - [anon_sym_CARET] = ACTIONS(5017), - [anon_sym_BQUOTE] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym__newline_token] = ACTIONS(5015), - [aux_sym_insert_token1] = ACTIONS(5015), - [aux_sym_delete_token1] = ACTIONS(5015), - [aux_sym_highlight_token1] = ACTIONS(5015), - [aux_sym_edit_comment_token1] = ACTIONS(5015), - [anon_sym_CARET_LBRACK] = ACTIONS(5015), - [anon_sym_LBRACK_CARET] = ACTIONS(5015), - [sym_uri_autolink] = ACTIONS(5015), - [sym_email_autolink] = ACTIONS(5015), - [sym__whitespace_ge_2] = ACTIONS(5015), - [aux_sym__whitespace_token1] = ACTIONS(5017), - [sym__word_no_digit] = ACTIONS(5015), - [sym__digits] = ACTIONS(5015), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5015), - [sym__code_span_start] = ACTIONS(5015), - [sym__emphasis_open_star] = ACTIONS(5015), - [sym__emphasis_open_underscore] = ACTIONS(5015), - [sym__strikeout_open] = ACTIONS(5015), - [sym__latex_span_start] = ACTIONS(5015), - [sym__single_quote_open] = ACTIONS(5015), - [sym__single_quote_close] = ACTIONS(5015), - [sym__double_quote_open] = ACTIONS(5015), - [sym__superscript_open] = ACTIONS(5015), - [sym__subscript_open] = ACTIONS(5015), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5015), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5015), - [sym__cite_author_in_text] = ACTIONS(5015), - [sym__cite_suppress_author] = ACTIONS(5015), - [sym__shortcode_open_escaped] = ACTIONS(5015), - [sym__shortcode_open] = ACTIONS(5015), - [sym__unclosed_span] = ACTIONS(5015), - [sym__strong_emphasis_open_star] = ACTIONS(5015), - [sym__strong_emphasis_open_underscore] = ACTIONS(5015), + [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(1634)] = { - [sym__backslash_escape] = ACTIONS(5019), - [sym_entity_reference] = ACTIONS(5019), - [sym_numeric_character_reference] = ACTIONS(5019), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_DQUOTE] = ACTIONS(5019), - [anon_sym_POUND] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_AMP] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_COLON] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_QMARK] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_BSLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_PIPE] = ACTIONS(5019), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym__newline_token] = ACTIONS(5019), - [aux_sym_insert_token1] = ACTIONS(5019), - [aux_sym_delete_token1] = ACTIONS(5019), - [aux_sym_highlight_token1] = ACTIONS(5019), - [aux_sym_edit_comment_token1] = ACTIONS(5019), - [anon_sym_CARET_LBRACK] = ACTIONS(5019), - [anon_sym_LBRACK_CARET] = ACTIONS(5019), - [sym_uri_autolink] = ACTIONS(5019), - [sym_email_autolink] = ACTIONS(5019), - [sym__whitespace_ge_2] = ACTIONS(5019), - [aux_sym__whitespace_token1] = ACTIONS(5021), - [sym__word_no_digit] = ACTIONS(5019), - [sym__digits] = ACTIONS(5019), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5019), - [sym__code_span_start] = ACTIONS(5019), - [sym__emphasis_open_star] = ACTIONS(5019), - [sym__emphasis_open_underscore] = ACTIONS(5019), - [sym__strikeout_open] = ACTIONS(5019), - [sym__latex_span_start] = ACTIONS(5019), - [sym__single_quote_open] = ACTIONS(5019), - [sym__single_quote_close] = ACTIONS(5019), - [sym__double_quote_open] = ACTIONS(5019), - [sym__superscript_open] = ACTIONS(5019), - [sym__subscript_open] = ACTIONS(5019), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5019), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5019), - [sym__cite_author_in_text] = ACTIONS(5019), - [sym__cite_suppress_author] = ACTIONS(5019), - [sym__shortcode_open_escaped] = ACTIONS(5019), - [sym__shortcode_open] = ACTIONS(5019), - [sym__unclosed_span] = ACTIONS(5019), - [sym__strong_emphasis_open_star] = ACTIONS(5019), - [sym__strong_emphasis_open_underscore] = ACTIONS(5019), + [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__double_quote_close] = 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(1635)] = { - [sym__backslash_escape] = ACTIONS(5023), - [sym_entity_reference] = ACTIONS(5023), - [sym_numeric_character_reference] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_COLON] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_QMARK] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_BSLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [sym__newline_token] = ACTIONS(5023), - [aux_sym_insert_token1] = ACTIONS(5023), - [aux_sym_delete_token1] = ACTIONS(5023), - [aux_sym_highlight_token1] = ACTIONS(5023), - [aux_sym_edit_comment_token1] = ACTIONS(5023), - [anon_sym_CARET_LBRACK] = ACTIONS(5023), - [anon_sym_LBRACK_CARET] = ACTIONS(5023), - [sym_uri_autolink] = ACTIONS(5023), - [sym_email_autolink] = ACTIONS(5023), - [sym__whitespace_ge_2] = ACTIONS(5023), - [aux_sym__whitespace_token1] = ACTIONS(5025), - [sym__word_no_digit] = ACTIONS(5023), - [sym__digits] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5023), - [sym__code_span_start] = ACTIONS(5023), - [sym__emphasis_open_star] = ACTIONS(5023), - [sym__emphasis_open_underscore] = ACTIONS(5023), - [sym__strikeout_open] = ACTIONS(5023), - [sym__latex_span_start] = ACTIONS(5023), - [sym__single_quote_open] = ACTIONS(5023), - [sym__single_quote_close] = ACTIONS(5023), - [sym__double_quote_open] = ACTIONS(5023), - [sym__superscript_open] = ACTIONS(5023), - [sym__subscript_open] = ACTIONS(5023), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5023), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5023), - [sym__cite_author_in_text] = ACTIONS(5023), - [sym__cite_suppress_author] = ACTIONS(5023), - [sym__shortcode_open_escaped] = ACTIONS(5023), - [sym__shortcode_open] = ACTIONS(5023), - [sym__unclosed_span] = ACTIONS(5023), - [sym__strong_emphasis_open_star] = ACTIONS(5023), - [sym__strong_emphasis_open_underscore] = ACTIONS(5023), + [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(1636)] = { - [sym__backslash_escape] = ACTIONS(5027), - [sym_entity_reference] = ACTIONS(5027), - [sym_numeric_character_reference] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_BANG] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_POUND] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [anon_sym_PERCENT] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5027), - [anon_sym_STAR] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5027), - [anon_sym_COLON] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_BSLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [sym__newline_token] = ACTIONS(5027), - [aux_sym_insert_token1] = ACTIONS(5027), - [aux_sym_delete_token1] = ACTIONS(5027), - [aux_sym_highlight_token1] = ACTIONS(5027), - [aux_sym_edit_comment_token1] = ACTIONS(5027), - [anon_sym_CARET_LBRACK] = ACTIONS(5027), - [anon_sym_LBRACK_CARET] = ACTIONS(5027), - [sym_uri_autolink] = ACTIONS(5027), - [sym_email_autolink] = ACTIONS(5027), - [sym__whitespace_ge_2] = ACTIONS(5027), - [aux_sym__whitespace_token1] = ACTIONS(5029), - [sym__word_no_digit] = ACTIONS(5027), - [sym__digits] = ACTIONS(5027), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5027), - [sym__code_span_start] = ACTIONS(5027), - [sym__emphasis_open_star] = ACTIONS(5027), - [sym__emphasis_open_underscore] = ACTIONS(5027), - [sym__strikeout_open] = ACTIONS(5027), - [sym__latex_span_start] = ACTIONS(5027), - [sym__single_quote_open] = ACTIONS(5027), - [sym__single_quote_close] = ACTIONS(5027), - [sym__double_quote_open] = ACTIONS(5027), - [sym__superscript_open] = ACTIONS(5027), - [sym__subscript_open] = ACTIONS(5027), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5027), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5027), - [sym__cite_author_in_text] = ACTIONS(5027), - [sym__cite_suppress_author] = ACTIONS(5027), - [sym__shortcode_open_escaped] = ACTIONS(5027), - [sym__shortcode_open] = ACTIONS(5027), - [sym__unclosed_span] = ACTIONS(5027), - [sym__strong_emphasis_open_star] = ACTIONS(5027), - [sym__strong_emphasis_open_underscore] = ACTIONS(5027), + [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__double_quote_close] = 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(1637)] = { - [sym__backslash_escape] = ACTIONS(5031), - [sym_entity_reference] = ACTIONS(5031), - [sym_numeric_character_reference] = ACTIONS(5031), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5031), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_COLON] = ACTIONS(5031), - [anon_sym_SEMI] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_QMARK] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_BSLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym_BQUOTE] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_PIPE] = ACTIONS(5031), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [sym__newline_token] = ACTIONS(5031), - [aux_sym_insert_token1] = ACTIONS(5031), - [aux_sym_delete_token1] = ACTIONS(5031), - [aux_sym_highlight_token1] = ACTIONS(5031), - [aux_sym_edit_comment_token1] = ACTIONS(5031), - [anon_sym_CARET_LBRACK] = ACTIONS(5031), - [anon_sym_LBRACK_CARET] = ACTIONS(5031), - [sym_uri_autolink] = ACTIONS(5031), - [sym_email_autolink] = ACTIONS(5031), - [sym__whitespace_ge_2] = ACTIONS(5031), - [aux_sym__whitespace_token1] = ACTIONS(5033), - [sym__word_no_digit] = ACTIONS(5031), - [sym__digits] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5031), - [sym__code_span_start] = ACTIONS(5031), - [sym__emphasis_open_star] = ACTIONS(5031), - [sym__emphasis_open_underscore] = ACTIONS(5031), - [sym__strikeout_open] = ACTIONS(5031), - [sym__latex_span_start] = ACTIONS(5031), - [sym__single_quote_open] = ACTIONS(5031), - [sym__single_quote_close] = ACTIONS(5031), - [sym__double_quote_open] = ACTIONS(5031), - [sym__superscript_open] = ACTIONS(5031), - [sym__subscript_open] = ACTIONS(5031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5031), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5031), - [sym__cite_author_in_text] = ACTIONS(5031), - [sym__cite_suppress_author] = ACTIONS(5031), - [sym__shortcode_open_escaped] = ACTIONS(5031), - [sym__shortcode_open] = ACTIONS(5031), - [sym__unclosed_span] = ACTIONS(5031), - [sym__strong_emphasis_open_star] = ACTIONS(5031), - [sym__strong_emphasis_open_underscore] = ACTIONS(5031), + [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__double_quote_close] = 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(1638)] = { - [sym__backslash_escape] = ACTIONS(5035), - [sym_entity_reference] = ACTIONS(5035), - [sym_numeric_character_reference] = ACTIONS(5035), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_DQUOTE] = ACTIONS(5035), - [anon_sym_POUND] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_AMP] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_COLON] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_QMARK] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_BSLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym_BQUOTE] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_PIPE] = ACTIONS(5035), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [sym__newline_token] = ACTIONS(5035), - [aux_sym_insert_token1] = ACTIONS(5035), - [aux_sym_delete_token1] = ACTIONS(5035), - [aux_sym_highlight_token1] = ACTIONS(5035), - [aux_sym_edit_comment_token1] = ACTIONS(5035), - [anon_sym_CARET_LBRACK] = ACTIONS(5035), - [anon_sym_LBRACK_CARET] = ACTIONS(5035), - [sym_uri_autolink] = ACTIONS(5035), - [sym_email_autolink] = ACTIONS(5035), - [sym__whitespace_ge_2] = ACTIONS(5035), - [aux_sym__whitespace_token1] = ACTIONS(5037), - [sym__word_no_digit] = ACTIONS(5035), - [sym__digits] = ACTIONS(5035), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5035), - [sym__code_span_start] = ACTIONS(5035), - [sym__emphasis_open_star] = ACTIONS(5035), - [sym__emphasis_open_underscore] = ACTIONS(5035), - [sym__strikeout_open] = ACTIONS(5035), - [sym__latex_span_start] = ACTIONS(5035), - [sym__single_quote_open] = ACTIONS(5035), - [sym__single_quote_close] = ACTIONS(5035), - [sym__double_quote_open] = ACTIONS(5035), - [sym__superscript_open] = ACTIONS(5035), - [sym__subscript_open] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5035), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5035), - [sym__cite_author_in_text] = ACTIONS(5035), - [sym__cite_suppress_author] = ACTIONS(5035), - [sym__shortcode_open_escaped] = ACTIONS(5035), - [sym__shortcode_open] = ACTIONS(5035), - [sym__unclosed_span] = ACTIONS(5035), - [sym__strong_emphasis_open_star] = ACTIONS(5035), - [sym__strong_emphasis_open_underscore] = ACTIONS(5035), + [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__double_quote_close] = 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(1639)] = { - [sym__backslash_escape] = ACTIONS(5039), - [sym_entity_reference] = ACTIONS(5039), - [sym_numeric_character_reference] = ACTIONS(5039), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(5039), - [anon_sym_POUND] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_AMP] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_QMARK] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_BSLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_TILDE] = ACTIONS(5039), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [sym__newline_token] = ACTIONS(5039), - [aux_sym_insert_token1] = ACTIONS(5039), - [aux_sym_delete_token1] = ACTIONS(5039), - [aux_sym_highlight_token1] = ACTIONS(5039), - [aux_sym_edit_comment_token1] = ACTIONS(5039), - [anon_sym_CARET_LBRACK] = ACTIONS(5039), - [anon_sym_LBRACK_CARET] = ACTIONS(5039), - [sym_uri_autolink] = ACTIONS(5039), - [sym_email_autolink] = ACTIONS(5039), - [sym__whitespace_ge_2] = ACTIONS(5039), - [aux_sym__whitespace_token1] = ACTIONS(5041), - [sym__word_no_digit] = ACTIONS(5039), - [sym__digits] = ACTIONS(5039), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5039), - [sym__code_span_start] = ACTIONS(5039), - [sym__emphasis_open_star] = ACTIONS(5039), - [sym__emphasis_open_underscore] = ACTIONS(5039), - [sym__strikeout_open] = ACTIONS(5039), - [sym__latex_span_start] = ACTIONS(5039), - [sym__single_quote_open] = ACTIONS(5039), - [sym__single_quote_close] = ACTIONS(5039), - [sym__double_quote_open] = ACTIONS(5039), - [sym__superscript_open] = ACTIONS(5039), - [sym__subscript_open] = ACTIONS(5039), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5039), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5039), - [sym__cite_author_in_text] = ACTIONS(5039), - [sym__cite_suppress_author] = ACTIONS(5039), - [sym__shortcode_open_escaped] = ACTIONS(5039), - [sym__shortcode_open] = ACTIONS(5039), - [sym__unclosed_span] = ACTIONS(5039), - [sym__strong_emphasis_open_star] = ACTIONS(5039), - [sym__strong_emphasis_open_underscore] = ACTIONS(5039), + [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__double_quote_close] = 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(1640)] = { - [sym__backslash_escape] = ACTIONS(5043), - [sym_entity_reference] = ACTIONS(5043), - [sym_numeric_character_reference] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_DQUOTE] = ACTIONS(5043), - [anon_sym_POUND] = ACTIONS(5043), - [anon_sym_DOLLAR] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_AMP] = ACTIONS(5045), - [anon_sym_SQUOTE] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_COMMA] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5045), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_COLON] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_QMARK] = ACTIONS(5043), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_BSLASH] = ACTIONS(5045), - [anon_sym_CARET] = ACTIONS(5045), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5043), - [anon_sym_PIPE] = ACTIONS(5043), - [anon_sym_TILDE] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(5043), - [anon_sym_RPAREN] = ACTIONS(5043), - [sym__newline_token] = ACTIONS(5043), - [aux_sym_insert_token1] = ACTIONS(5043), - [aux_sym_delete_token1] = ACTIONS(5043), - [aux_sym_highlight_token1] = ACTIONS(5043), - [aux_sym_edit_comment_token1] = ACTIONS(5043), - [anon_sym_CARET_LBRACK] = ACTIONS(5043), - [anon_sym_LBRACK_CARET] = ACTIONS(5043), - [sym_uri_autolink] = ACTIONS(5043), - [sym_email_autolink] = ACTIONS(5043), - [sym__whitespace_ge_2] = ACTIONS(5043), - [aux_sym__whitespace_token1] = ACTIONS(5045), - [sym__word_no_digit] = ACTIONS(5043), - [sym__digits] = ACTIONS(5043), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5043), - [sym__code_span_start] = ACTIONS(5043), - [sym__emphasis_open_star] = ACTIONS(5043), - [sym__emphasis_open_underscore] = ACTIONS(5043), - [sym__strikeout_open] = ACTIONS(5043), - [sym__latex_span_start] = ACTIONS(5043), - [sym__single_quote_open] = ACTIONS(5043), - [sym__single_quote_close] = ACTIONS(5043), - [sym__double_quote_open] = ACTIONS(5043), - [sym__superscript_open] = ACTIONS(5043), - [sym__subscript_open] = ACTIONS(5043), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5043), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5043), - [sym__cite_author_in_text] = ACTIONS(5043), - [sym__cite_suppress_author] = ACTIONS(5043), - [sym__shortcode_open_escaped] = ACTIONS(5043), - [sym__shortcode_open] = ACTIONS(5043), - [sym__unclosed_span] = ACTIONS(5043), - [sym__strong_emphasis_open_star] = ACTIONS(5043), - [sym__strong_emphasis_open_underscore] = ACTIONS(5043), + [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__double_quote_close] = 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(1641)] = { - [sym__backslash_escape] = ACTIONS(5047), - [sym_entity_reference] = ACTIONS(5047), - [sym_numeric_character_reference] = ACTIONS(5047), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(5047), - [anon_sym_POUND] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_AMP] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_COLON] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_QMARK] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_BSLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym_BQUOTE] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_PIPE] = ACTIONS(5047), - [anon_sym_TILDE] = ACTIONS(5047), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [sym__newline_token] = ACTIONS(5047), - [aux_sym_insert_token1] = ACTIONS(5047), - [aux_sym_delete_token1] = ACTIONS(5047), - [aux_sym_highlight_token1] = ACTIONS(5047), - [aux_sym_edit_comment_token1] = ACTIONS(5047), - [anon_sym_CARET_LBRACK] = ACTIONS(5047), - [anon_sym_LBRACK_CARET] = ACTIONS(5047), - [sym_uri_autolink] = ACTIONS(5047), - [sym_email_autolink] = ACTIONS(5047), - [sym__whitespace_ge_2] = ACTIONS(5047), - [aux_sym__whitespace_token1] = ACTIONS(5049), - [sym__word_no_digit] = ACTIONS(5047), - [sym__digits] = ACTIONS(5047), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5047), - [sym__code_span_start] = ACTIONS(5047), - [sym__emphasis_open_star] = ACTIONS(5047), - [sym__emphasis_open_underscore] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5047), - [sym__latex_span_start] = ACTIONS(5047), - [sym__single_quote_open] = ACTIONS(5047), - [sym__single_quote_close] = ACTIONS(5047), - [sym__double_quote_open] = ACTIONS(5047), - [sym__superscript_open] = ACTIONS(5047), - [sym__subscript_open] = ACTIONS(5047), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5047), - [sym__cite_author_in_text] = ACTIONS(5047), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__shortcode_open_escaped] = ACTIONS(5047), - [sym__shortcode_open] = ACTIONS(5047), - [sym__unclosed_span] = ACTIONS(5047), - [sym__strong_emphasis_open_star] = ACTIONS(5047), - [sym__strong_emphasis_open_underscore] = ACTIONS(5047), + [ts_builtin_sym_end] = ACTIONS(4523), + [sym__backslash_escape] = ACTIONS(4523), + [sym_entity_reference] = ACTIONS(4523), + [sym_numeric_character_reference] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_BANG] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_POUND] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_BSLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_BQUOTE] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [sym__newline_token] = ACTIONS(4523), + [aux_sym_insert_token1] = ACTIONS(4523), + [aux_sym_delete_token1] = ACTIONS(4523), + [aux_sym_highlight_token1] = ACTIONS(4523), + [aux_sym_edit_comment_token1] = ACTIONS(4523), + [anon_sym_CARET_LBRACK] = ACTIONS(4523), + [anon_sym_LBRACK_CARET] = ACTIONS(4523), + [sym_uri_autolink] = ACTIONS(4523), + [sym_email_autolink] = ACTIONS(4523), + [sym__whitespace_ge_2] = ACTIONS(4523), + [aux_sym__whitespace_token1] = ACTIONS(4525), + [sym__word_no_digit] = ACTIONS(4523), + [sym__digits] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4523), + [sym__code_span_start] = ACTIONS(4523), + [sym__emphasis_open_star] = ACTIONS(4523), + [sym__emphasis_open_underscore] = ACTIONS(4523), + [sym__strikeout_open] = ACTIONS(4523), + [sym__latex_span_start] = ACTIONS(4523), + [sym__single_quote_open] = ACTIONS(4523), + [sym__double_quote_open] = ACTIONS(4523), + [sym__superscript_open] = ACTIONS(4523), + [sym__subscript_open] = ACTIONS(4523), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4523), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4523), + [sym__cite_author_in_text] = ACTIONS(4523), + [sym__cite_suppress_author] = ACTIONS(4523), + [sym__shortcode_open_escaped] = ACTIONS(4523), + [sym__shortcode_open] = ACTIONS(4523), + [sym__unclosed_span] = ACTIONS(4523), + [sym__strong_emphasis_open_star] = ACTIONS(4523), + [sym__strong_emphasis_open_underscore] = ACTIONS(4523), }, [STATE(1642)] = { - [sym__backslash_escape] = ACTIONS(5051), - [sym_entity_reference] = ACTIONS(5051), - [sym_numeric_character_reference] = ACTIONS(5051), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [anon_sym_POUND] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_AMP] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_QMARK] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_BSLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym_BQUOTE] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_TILDE] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [sym__newline_token] = ACTIONS(5051), - [aux_sym_insert_token1] = ACTIONS(5051), - [aux_sym_delete_token1] = ACTIONS(5051), - [aux_sym_highlight_token1] = ACTIONS(5051), - [aux_sym_edit_comment_token1] = ACTIONS(5051), - [anon_sym_CARET_LBRACK] = ACTIONS(5051), - [anon_sym_LBRACK_CARET] = ACTIONS(5051), - [sym_uri_autolink] = ACTIONS(5051), - [sym_email_autolink] = ACTIONS(5051), - [sym__whitespace_ge_2] = ACTIONS(5051), - [aux_sym__whitespace_token1] = ACTIONS(5053), - [sym__word_no_digit] = ACTIONS(5051), - [sym__digits] = ACTIONS(5051), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5051), - [sym__code_span_start] = ACTIONS(5051), - [sym__emphasis_open_star] = ACTIONS(5051), - [sym__emphasis_open_underscore] = ACTIONS(5051), - [sym__strikeout_open] = ACTIONS(5051), - [sym__latex_span_start] = ACTIONS(5051), - [sym__single_quote_open] = ACTIONS(5051), - [sym__single_quote_close] = ACTIONS(5051), - [sym__double_quote_open] = ACTIONS(5051), - [sym__superscript_open] = ACTIONS(5051), - [sym__subscript_open] = ACTIONS(5051), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5051), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5051), - [sym__cite_author_in_text] = ACTIONS(5051), - [sym__cite_suppress_author] = ACTIONS(5051), - [sym__shortcode_open_escaped] = ACTIONS(5051), - [sym__shortcode_open] = ACTIONS(5051), - [sym__unclosed_span] = ACTIONS(5051), - [sym__strong_emphasis_open_star] = ACTIONS(5051), - [sym__strong_emphasis_open_underscore] = ACTIONS(5051), + [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__double_quote_close] = 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(1643)] = { - [sym__backslash_escape] = ACTIONS(5055), - [sym_entity_reference] = ACTIONS(5055), - [sym_numeric_character_reference] = ACTIONS(5055), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_DQUOTE] = ACTIONS(5055), - [anon_sym_POUND] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_AMP] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_QMARK] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_BSLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym_BQUOTE] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_PIPE] = ACTIONS(5055), - [anon_sym_TILDE] = ACTIONS(5055), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [sym__newline_token] = ACTIONS(5055), - [aux_sym_insert_token1] = ACTIONS(5055), - [aux_sym_delete_token1] = ACTIONS(5055), - [aux_sym_highlight_token1] = ACTIONS(5055), - [aux_sym_edit_comment_token1] = ACTIONS(5055), - [anon_sym_CARET_LBRACK] = ACTIONS(5055), - [anon_sym_LBRACK_CARET] = ACTIONS(5055), - [sym_uri_autolink] = ACTIONS(5055), - [sym_email_autolink] = ACTIONS(5055), - [sym__whitespace_ge_2] = ACTIONS(5055), - [aux_sym__whitespace_token1] = ACTIONS(5057), - [sym__word_no_digit] = ACTIONS(5055), - [sym__digits] = ACTIONS(5055), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5055), - [sym__code_span_start] = ACTIONS(5055), - [sym__emphasis_open_star] = ACTIONS(5055), - [sym__emphasis_open_underscore] = ACTIONS(5055), - [sym__strikeout_open] = ACTIONS(5055), - [sym__latex_span_start] = ACTIONS(5055), - [sym__single_quote_open] = ACTIONS(5055), - [sym__single_quote_close] = ACTIONS(5055), - [sym__double_quote_open] = ACTIONS(5055), - [sym__superscript_open] = ACTIONS(5055), - [sym__subscript_open] = ACTIONS(5055), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5055), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5055), - [sym__cite_author_in_text] = ACTIONS(5055), - [sym__cite_suppress_author] = ACTIONS(5055), - [sym__shortcode_open_escaped] = ACTIONS(5055), - [sym__shortcode_open] = ACTIONS(5055), - [sym__unclosed_span] = ACTIONS(5055), - [sym__strong_emphasis_open_star] = ACTIONS(5055), - [sym__strong_emphasis_open_underscore] = ACTIONS(5055), + [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__double_quote_close] = 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(1644)] = { - [sym__backslash_escape] = ACTIONS(5059), - [sym_entity_reference] = ACTIONS(5059), - [sym_numeric_character_reference] = ACTIONS(5059), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5059), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_DQUOTE] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_AMP] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_COLON] = ACTIONS(5059), - [anon_sym_SEMI] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_QMARK] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_BSLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym_BQUOTE] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_PIPE] = ACTIONS(5059), - [anon_sym_TILDE] = ACTIONS(5059), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [sym__newline_token] = ACTIONS(5059), - [aux_sym_insert_token1] = ACTIONS(5059), - [aux_sym_delete_token1] = ACTIONS(5059), - [aux_sym_highlight_token1] = ACTIONS(5059), - [aux_sym_edit_comment_token1] = ACTIONS(5059), - [anon_sym_CARET_LBRACK] = ACTIONS(5059), - [anon_sym_LBRACK_CARET] = ACTIONS(5059), - [sym_uri_autolink] = ACTIONS(5059), - [sym_email_autolink] = ACTIONS(5059), - [sym__whitespace_ge_2] = ACTIONS(5059), - [aux_sym__whitespace_token1] = ACTIONS(5061), - [sym__word_no_digit] = ACTIONS(5059), - [sym__digits] = ACTIONS(5059), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5059), - [sym__code_span_start] = ACTIONS(5059), - [sym__emphasis_open_star] = ACTIONS(5059), - [sym__emphasis_open_underscore] = ACTIONS(5059), - [sym__strikeout_open] = ACTIONS(5059), - [sym__latex_span_start] = ACTIONS(5059), - [sym__single_quote_open] = ACTIONS(5059), - [sym__single_quote_close] = ACTIONS(5059), - [sym__double_quote_open] = ACTIONS(5059), - [sym__superscript_open] = ACTIONS(5059), - [sym__subscript_open] = ACTIONS(5059), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5059), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5059), - [sym__cite_author_in_text] = ACTIONS(5059), - [sym__cite_suppress_author] = ACTIONS(5059), - [sym__shortcode_open_escaped] = ACTIONS(5059), - [sym__shortcode_open] = ACTIONS(5059), - [sym__unclosed_span] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5059), - [sym__strong_emphasis_open_underscore] = ACTIONS(5059), + [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__double_quote_close] = 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(1645)] = { - [sym__backslash_escape] = ACTIONS(5063), - [sym_entity_reference] = ACTIONS(5063), - [sym_numeric_character_reference] = ACTIONS(5063), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5063), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_AMP] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_COLON] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_BSLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym_BQUOTE] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_TILDE] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [sym__newline_token] = ACTIONS(5063), - [aux_sym_insert_token1] = ACTIONS(5063), - [aux_sym_delete_token1] = ACTIONS(5063), - [aux_sym_highlight_token1] = ACTIONS(5063), - [aux_sym_edit_comment_token1] = ACTIONS(5063), - [anon_sym_CARET_LBRACK] = ACTIONS(5063), - [anon_sym_LBRACK_CARET] = ACTIONS(5063), - [sym_uri_autolink] = ACTIONS(5063), - [sym_email_autolink] = ACTIONS(5063), - [sym__whitespace_ge_2] = ACTIONS(5063), - [aux_sym__whitespace_token1] = ACTIONS(5065), - [sym__word_no_digit] = ACTIONS(5063), - [sym__digits] = ACTIONS(5063), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5063), - [sym__code_span_start] = ACTIONS(5063), - [sym__emphasis_open_star] = ACTIONS(5063), - [sym__emphasis_open_underscore] = ACTIONS(5063), - [sym__strikeout_open] = ACTIONS(5063), - [sym__latex_span_start] = ACTIONS(5063), - [sym__single_quote_open] = ACTIONS(5063), - [sym__single_quote_close] = ACTIONS(5063), - [sym__double_quote_open] = ACTIONS(5063), - [sym__superscript_open] = ACTIONS(5063), - [sym__subscript_open] = ACTIONS(5063), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5063), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5063), - [sym__cite_author_in_text] = ACTIONS(5063), - [sym__cite_suppress_author] = ACTIONS(5063), - [sym__shortcode_open_escaped] = ACTIONS(5063), - [sym__shortcode_open] = ACTIONS(5063), - [sym__unclosed_span] = ACTIONS(5063), - [sym__strong_emphasis_open_star] = ACTIONS(5063), - [sym__strong_emphasis_open_underscore] = ACTIONS(5063), + [sym__backslash_escape] = ACTIONS(4495), + [sym_entity_reference] = ACTIONS(4495), + [sym_numeric_character_reference] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4497), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4495), + [anon_sym_POUND] = ACTIONS(4495), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_AMP] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_COMMA] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4497), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_QMARK] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_BSLASH] = ACTIONS(4497), + [anon_sym_CARET] = ACTIONS(4497), + [anon_sym_BQUOTE] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4495), + [sym__newline_token] = ACTIONS(4495), + [aux_sym_insert_token1] = ACTIONS(4495), + [aux_sym_delete_token1] = ACTIONS(4495), + [aux_sym_highlight_token1] = ACTIONS(4495), + [aux_sym_edit_comment_token1] = ACTIONS(4495), + [anon_sym_CARET_LBRACK] = ACTIONS(4495), + [anon_sym_LBRACK_CARET] = ACTIONS(4495), + [sym_uri_autolink] = ACTIONS(4495), + [sym_email_autolink] = ACTIONS(4495), + [sym__whitespace_ge_2] = ACTIONS(4495), + [aux_sym__whitespace_token1] = ACTIONS(4497), + [sym__word_no_digit] = ACTIONS(4495), + [sym__digits] = ACTIONS(4495), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4495), + [sym__code_span_start] = ACTIONS(4495), + [sym__emphasis_open_star] = ACTIONS(4495), + [sym__emphasis_open_underscore] = ACTIONS(4495), + [sym__strikeout_open] = ACTIONS(4495), + [sym__latex_span_start] = ACTIONS(4495), + [sym__single_quote_open] = ACTIONS(4495), + [sym__double_quote_open] = ACTIONS(4495), + [sym__double_quote_close] = ACTIONS(4495), + [sym__superscript_open] = ACTIONS(4495), + [sym__subscript_open] = ACTIONS(4495), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4495), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4495), + [sym__cite_author_in_text] = ACTIONS(4495), + [sym__cite_suppress_author] = ACTIONS(4495), + [sym__shortcode_open_escaped] = ACTIONS(4495), + [sym__shortcode_open] = ACTIONS(4495), + [sym__unclosed_span] = ACTIONS(4495), + [sym__strong_emphasis_open_star] = ACTIONS(4495), + [sym__strong_emphasis_open_underscore] = ACTIONS(4495), }, [STATE(1646)] = { - [sym__backslash_escape] = ACTIONS(5067), - [sym_entity_reference] = ACTIONS(5067), - [sym_numeric_character_reference] = ACTIONS(5067), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DQUOTE] = ACTIONS(5067), - [anon_sym_POUND] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_AMP] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_COLON] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_QMARK] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_BSLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_PIPE] = ACTIONS(5067), - [anon_sym_TILDE] = ACTIONS(5067), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [sym__newline_token] = ACTIONS(5067), - [aux_sym_insert_token1] = ACTIONS(5067), - [aux_sym_delete_token1] = ACTIONS(5067), - [aux_sym_highlight_token1] = ACTIONS(5067), - [aux_sym_edit_comment_token1] = ACTIONS(5067), - [anon_sym_CARET_LBRACK] = ACTIONS(5067), - [anon_sym_LBRACK_CARET] = ACTIONS(5067), - [sym_uri_autolink] = ACTIONS(5067), - [sym_email_autolink] = ACTIONS(5067), - [sym__whitespace_ge_2] = ACTIONS(5067), - [aux_sym__whitespace_token1] = ACTIONS(5069), - [sym__word_no_digit] = ACTIONS(5067), - [sym__digits] = ACTIONS(5067), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5067), - [sym__code_span_start] = ACTIONS(5067), - [sym__emphasis_open_star] = ACTIONS(5067), - [sym__emphasis_open_underscore] = ACTIONS(5067), - [sym__strikeout_open] = ACTIONS(5067), - [sym__latex_span_start] = ACTIONS(5067), - [sym__single_quote_open] = ACTIONS(5067), - [sym__single_quote_close] = ACTIONS(5067), - [sym__double_quote_open] = ACTIONS(5067), - [sym__superscript_open] = ACTIONS(5067), - [sym__subscript_open] = ACTIONS(5067), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5067), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5067), - [sym__cite_author_in_text] = ACTIONS(5067), - [sym__cite_suppress_author] = ACTIONS(5067), - [sym__shortcode_open_escaped] = ACTIONS(5067), - [sym__shortcode_open] = ACTIONS(5067), - [sym__unclosed_span] = ACTIONS(5067), - [sym__strong_emphasis_open_star] = ACTIONS(5067), - [sym__strong_emphasis_open_underscore] = ACTIONS(5067), + [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(1647)] = { - [sym__backslash_escape] = ACTIONS(5071), - [sym_entity_reference] = ACTIONS(5071), - [sym_numeric_character_reference] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_POUND] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_AMP] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_QMARK] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_BSLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_TILDE] = ACTIONS(5071), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [sym__newline_token] = ACTIONS(5071), - [aux_sym_insert_token1] = ACTIONS(5071), - [aux_sym_delete_token1] = ACTIONS(5071), - [aux_sym_highlight_token1] = ACTIONS(5071), - [aux_sym_edit_comment_token1] = ACTIONS(5071), - [anon_sym_CARET_LBRACK] = ACTIONS(5071), - [anon_sym_LBRACK_CARET] = ACTIONS(5071), - [sym_uri_autolink] = ACTIONS(5071), - [sym_email_autolink] = ACTIONS(5071), - [sym__whitespace_ge_2] = ACTIONS(5071), - [aux_sym__whitespace_token1] = ACTIONS(5073), - [sym__word_no_digit] = ACTIONS(5071), - [sym__digits] = ACTIONS(5071), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5071), - [sym__code_span_start] = ACTIONS(5071), - [sym__emphasis_open_star] = ACTIONS(5071), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym__strikeout_open] = ACTIONS(5071), - [sym__latex_span_start] = ACTIONS(5071), - [sym__single_quote_open] = ACTIONS(5071), - [sym__single_quote_close] = ACTIONS(5071), - [sym__double_quote_open] = ACTIONS(5071), - [sym__superscript_open] = ACTIONS(5071), - [sym__subscript_open] = ACTIONS(5071), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5071), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5071), - [sym__cite_author_in_text] = ACTIONS(5071), - [sym__cite_suppress_author] = ACTIONS(5071), - [sym__shortcode_open_escaped] = ACTIONS(5071), - [sym__shortcode_open] = ACTIONS(5071), - [sym__unclosed_span] = ACTIONS(5071), - [sym__strong_emphasis_open_star] = ACTIONS(5071), - [sym__strong_emphasis_open_underscore] = ACTIONS(5071), + [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__double_quote_close] = 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(1648)] = { - [sym__backslash_escape] = ACTIONS(5075), - [sym_entity_reference] = ACTIONS(5075), - [sym_numeric_character_reference] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_QMARK] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_BSLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [sym__newline_token] = ACTIONS(5075), - [aux_sym_insert_token1] = ACTIONS(5075), - [aux_sym_delete_token1] = ACTIONS(5075), - [aux_sym_highlight_token1] = ACTIONS(5075), - [aux_sym_edit_comment_token1] = ACTIONS(5075), - [anon_sym_CARET_LBRACK] = ACTIONS(5075), - [anon_sym_LBRACK_CARET] = ACTIONS(5075), - [sym_uri_autolink] = ACTIONS(5075), - [sym_email_autolink] = ACTIONS(5075), - [sym__whitespace_ge_2] = ACTIONS(5075), - [aux_sym__whitespace_token1] = ACTIONS(5077), - [sym__word_no_digit] = ACTIONS(5075), - [sym__digits] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5075), - [sym__code_span_start] = ACTIONS(5075), - [sym__emphasis_open_star] = ACTIONS(5075), - [sym__emphasis_open_underscore] = ACTIONS(5075), - [sym__strikeout_open] = ACTIONS(5075), - [sym__latex_span_start] = ACTIONS(5075), - [sym__single_quote_open] = ACTIONS(5075), - [sym__single_quote_close] = ACTIONS(5075), - [sym__double_quote_open] = ACTIONS(5075), - [sym__superscript_open] = ACTIONS(5075), - [sym__subscript_open] = ACTIONS(5075), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5075), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5075), - [sym__cite_author_in_text] = ACTIONS(5075), - [sym__cite_suppress_author] = ACTIONS(5075), - [sym__shortcode_open_escaped] = ACTIONS(5075), - [sym__shortcode_open] = ACTIONS(5075), - [sym__unclosed_span] = ACTIONS(5075), - [sym__strong_emphasis_open_star] = ACTIONS(5075), - [sym__strong_emphasis_open_underscore] = ACTIONS(5075), + [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__superscript_close] = 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(1649)] = { - [sym__backslash_escape] = ACTIONS(5079), - [sym_entity_reference] = ACTIONS(5079), - [sym_numeric_character_reference] = ACTIONS(5079), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5079), - [anon_sym_BANG] = ACTIONS(5079), - [anon_sym_DQUOTE] = ACTIONS(5079), - [anon_sym_POUND] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5079), - [anon_sym_PERCENT] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5079), - [anon_sym_COLON] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_QMARK] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BSLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5079), - [anon_sym_TILDE] = ACTIONS(5079), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [sym__newline_token] = ACTIONS(5079), - [aux_sym_insert_token1] = ACTIONS(5079), - [aux_sym_delete_token1] = ACTIONS(5079), - [aux_sym_highlight_token1] = ACTIONS(5079), - [aux_sym_edit_comment_token1] = ACTIONS(5079), - [anon_sym_CARET_LBRACK] = ACTIONS(5079), - [anon_sym_LBRACK_CARET] = ACTIONS(5079), - [sym_uri_autolink] = ACTIONS(5079), - [sym_email_autolink] = ACTIONS(5079), - [sym__whitespace_ge_2] = ACTIONS(5079), - [aux_sym__whitespace_token1] = ACTIONS(5081), - [sym__word_no_digit] = ACTIONS(5079), - [sym__digits] = ACTIONS(5079), - [anon_sym_DASH_DASH] = ACTIONS(5081), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5079), - [sym__code_span_start] = ACTIONS(5079), - [sym__emphasis_open_star] = ACTIONS(5079), - [sym__emphasis_open_underscore] = ACTIONS(5079), - [sym__strikeout_open] = ACTIONS(5079), - [sym__latex_span_start] = ACTIONS(5079), - [sym__single_quote_open] = ACTIONS(5079), - [sym__single_quote_close] = ACTIONS(5079), - [sym__double_quote_open] = ACTIONS(5079), - [sym__superscript_open] = ACTIONS(5079), - [sym__subscript_open] = ACTIONS(5079), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5079), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5079), - [sym__cite_author_in_text] = ACTIONS(5079), - [sym__cite_suppress_author] = ACTIONS(5079), - [sym__shortcode_open_escaped] = ACTIONS(5079), - [sym__shortcode_open] = ACTIONS(5079), - [sym__unclosed_span] = ACTIONS(5079), - [sym__strong_emphasis_open_star] = ACTIONS(5079), - [sym__strong_emphasis_open_underscore] = ACTIONS(5079), + [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__single_quote_close] = 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(1650)] = { - [sym__backslash_escape] = ACTIONS(5083), - [sym_entity_reference] = ACTIONS(5083), - [sym_numeric_character_reference] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5083), - [anon_sym_BANG] = ACTIONS(5083), - [anon_sym_DQUOTE] = ACTIONS(5083), - [anon_sym_POUND] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_AMP] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5083), - [anon_sym_STAR] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_DOT] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5083), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_QMARK] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5085), - [anon_sym_BSLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym_BQUOTE] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_PIPE] = ACTIONS(5083), - [anon_sym_TILDE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [sym__newline_token] = ACTIONS(5083), - [aux_sym_insert_token1] = ACTIONS(5083), - [aux_sym_delete_token1] = ACTIONS(5083), - [aux_sym_highlight_token1] = ACTIONS(5083), - [aux_sym_edit_comment_token1] = ACTIONS(5083), - [anon_sym_CARET_LBRACK] = ACTIONS(5083), - [anon_sym_LBRACK_CARET] = ACTIONS(5083), - [sym_uri_autolink] = ACTIONS(5083), - [sym_email_autolink] = ACTIONS(5083), - [sym__whitespace_ge_2] = ACTIONS(5083), - [aux_sym__whitespace_token1] = ACTIONS(5085), - [sym__word_no_digit] = ACTIONS(5083), - [sym__digits] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5085), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5083), - [sym__code_span_start] = ACTIONS(5083), - [sym__emphasis_open_star] = ACTIONS(5083), - [sym__emphasis_open_underscore] = ACTIONS(5083), - [sym__strikeout_open] = ACTIONS(5083), - [sym__latex_span_start] = ACTIONS(5083), - [sym__single_quote_open] = ACTIONS(5083), - [sym__single_quote_close] = ACTIONS(5083), - [sym__double_quote_open] = ACTIONS(5083), - [sym__superscript_open] = ACTIONS(5083), - [sym__subscript_open] = ACTIONS(5083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5083), - [sym__cite_author_in_text] = ACTIONS(5083), - [sym__cite_suppress_author] = ACTIONS(5083), - [sym__shortcode_open_escaped] = ACTIONS(5083), - [sym__shortcode_open] = ACTIONS(5083), - [sym__unclosed_span] = ACTIONS(5083), - [sym__strong_emphasis_open_star] = ACTIONS(5083), - [sym__strong_emphasis_open_underscore] = ACTIONS(5083), - }, - [STATE(1651)] = { - [sym__backslash_escape] = ACTIONS(5087), - [sym_entity_reference] = ACTIONS(5087), - [sym_numeric_character_reference] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5087), - [anon_sym_BANG] = ACTIONS(5087), - [anon_sym_DQUOTE] = ACTIONS(5087), - [anon_sym_POUND] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_AMP] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5087), - [anon_sym_STAR] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5087), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_SEMI] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_QMARK] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5089), - [anon_sym_BSLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym_BQUOTE] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_PIPE] = ACTIONS(5087), - [anon_sym_TILDE] = ACTIONS(5087), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [sym__newline_token] = ACTIONS(5087), - [aux_sym_insert_token1] = ACTIONS(5087), - [aux_sym_delete_token1] = ACTIONS(5087), - [aux_sym_highlight_token1] = ACTIONS(5087), - [aux_sym_edit_comment_token1] = ACTIONS(5087), - [anon_sym_CARET_LBRACK] = ACTIONS(5087), - [anon_sym_LBRACK_CARET] = ACTIONS(5087), - [sym_uri_autolink] = ACTIONS(5087), - [sym_email_autolink] = ACTIONS(5087), - [sym__whitespace_ge_2] = ACTIONS(5087), - [aux_sym__whitespace_token1] = ACTIONS(5089), - [sym__word_no_digit] = ACTIONS(5087), - [sym__digits] = ACTIONS(5087), - [anon_sym_DASH_DASH] = ACTIONS(5089), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5087), - [sym__code_span_start] = ACTIONS(5087), - [sym__emphasis_open_star] = ACTIONS(5087), - [sym__emphasis_open_underscore] = ACTIONS(5087), - [sym__strikeout_open] = ACTIONS(5087), - [sym__latex_span_start] = ACTIONS(5087), - [sym__single_quote_open] = ACTIONS(5087), - [sym__single_quote_close] = ACTIONS(5087), - [sym__double_quote_open] = ACTIONS(5087), - [sym__superscript_open] = ACTIONS(5087), - [sym__subscript_open] = ACTIONS(5087), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5087), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5087), - [sym__cite_author_in_text] = ACTIONS(5087), - [sym__cite_suppress_author] = ACTIONS(5087), - [sym__shortcode_open_escaped] = ACTIONS(5087), - [sym__shortcode_open] = ACTIONS(5087), - [sym__unclosed_span] = ACTIONS(5087), - [sym__strong_emphasis_open_star] = ACTIONS(5087), - [sym__strong_emphasis_open_underscore] = ACTIONS(5087), - }, - [STATE(1652)] = { - [sym__backslash_escape] = ACTIONS(4797), - [sym_entity_reference] = ACTIONS(4797), - [sym_numeric_character_reference] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4799), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_DQUOTE] = ACTIONS(4797), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_PERCENT] = ACTIONS(4797), - [anon_sym_AMP] = ACTIONS(4799), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_COMMA] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SEMI] = ACTIONS(4797), - [anon_sym_EQ] = ACTIONS(4797), - [anon_sym_QMARK] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_BSLASH] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_BQUOTE] = ACTIONS(4797), - [anon_sym_LBRACE] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_TILDE] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4797), - [anon_sym_RPAREN] = ACTIONS(4797), - [sym__newline_token] = ACTIONS(4797), - [aux_sym_insert_token1] = ACTIONS(4797), - [aux_sym_delete_token1] = ACTIONS(4797), - [aux_sym_highlight_token1] = ACTIONS(4797), - [aux_sym_edit_comment_token1] = ACTIONS(4797), - [anon_sym_CARET_LBRACK] = ACTIONS(4797), - [anon_sym_LBRACK_CARET] = ACTIONS(4797), - [sym_uri_autolink] = ACTIONS(4797), - [sym_email_autolink] = ACTIONS(4797), - [sym__whitespace_ge_2] = ACTIONS(4797), - [aux_sym__whitespace_token1] = ACTIONS(4799), - [sym__word_no_digit] = ACTIONS(4797), - [sym__digits] = ACTIONS(4797), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4797), - [sym__code_span_start] = ACTIONS(4797), - [sym__emphasis_open_star] = ACTIONS(4797), - [sym__emphasis_open_underscore] = ACTIONS(4797), - [sym__strikeout_open] = ACTIONS(4797), - [sym__latex_span_start] = ACTIONS(4797), - [sym__single_quote_open] = ACTIONS(4797), - [sym__single_quote_close] = ACTIONS(4797), - [sym__double_quote_open] = ACTIONS(4797), - [sym__superscript_open] = ACTIONS(4797), - [sym__subscript_open] = ACTIONS(4797), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4797), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4797), - [sym__cite_author_in_text] = ACTIONS(4797), - [sym__cite_suppress_author] = ACTIONS(4797), - [sym__shortcode_open_escaped] = ACTIONS(4797), - [sym__shortcode_open] = ACTIONS(4797), - [sym__unclosed_span] = ACTIONS(4797), - [sym__strong_emphasis_open_star] = ACTIONS(4797), - [sym__strong_emphasis_open_underscore] = ACTIONS(4797), - }, - [STATE(1653)] = { - [ts_builtin_sym_end] = ACTIONS(5111), - [sym__backslash_escape] = ACTIONS(5111), - [sym_entity_reference] = ACTIONS(5111), - [sym_numeric_character_reference] = ACTIONS(5111), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym_BQUOTE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [sym__newline_token] = ACTIONS(5111), - [aux_sym_insert_token1] = ACTIONS(5111), - [aux_sym_delete_token1] = ACTIONS(5111), - [aux_sym_highlight_token1] = ACTIONS(5111), - [aux_sym_edit_comment_token1] = ACTIONS(5111), - [anon_sym_CARET_LBRACK] = ACTIONS(5111), - [anon_sym_LBRACK_CARET] = ACTIONS(5111), - [sym_uri_autolink] = ACTIONS(5111), - [sym_email_autolink] = ACTIONS(5111), - [sym__whitespace_ge_2] = ACTIONS(5111), - [aux_sym__whitespace_token1] = ACTIONS(5113), - [sym__word_no_digit] = ACTIONS(5111), - [sym__digits] = ACTIONS(5111), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [sym__code_span_start] = ACTIONS(5111), - [sym__emphasis_open_star] = ACTIONS(5111), - [sym__emphasis_open_underscore] = ACTIONS(5111), - [sym__strikeout_open] = ACTIONS(5111), - [sym__latex_span_start] = ACTIONS(5111), - [sym__single_quote_open] = ACTIONS(5111), - [sym__double_quote_open] = ACTIONS(5111), - [sym__superscript_open] = ACTIONS(5111), - [sym__subscript_open] = ACTIONS(5111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5111), - [sym__cite_author_in_text] = ACTIONS(5111), - [sym__cite_suppress_author] = ACTIONS(5111), - [sym__shortcode_open_escaped] = ACTIONS(5111), - [sym__shortcode_open] = ACTIONS(5111), - [sym__unclosed_span] = ACTIONS(5111), - [sym__strong_emphasis_open_star] = ACTIONS(5111), - [sym__strong_emphasis_open_underscore] = ACTIONS(5111), - }, - [STATE(1654)] = { - [sym__backslash_escape] = ACTIONS(5091), - [sym_entity_reference] = ACTIONS(5091), - [sym_numeric_character_reference] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5091), - [anon_sym_BANG] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(5091), - [anon_sym_POUND] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5091), - [anon_sym_PERCENT] = ACTIONS(5091), - [anon_sym_AMP] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5091), - [anon_sym_STAR] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_DOT] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5091), - [anon_sym_COLON] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5093), - [anon_sym_BSLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym_BQUOTE] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_PIPE] = ACTIONS(5091), - [anon_sym_TILDE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [sym__newline_token] = ACTIONS(5091), - [aux_sym_insert_token1] = ACTIONS(5091), - [aux_sym_delete_token1] = ACTIONS(5091), - [aux_sym_highlight_token1] = ACTIONS(5091), - [aux_sym_edit_comment_token1] = ACTIONS(5091), - [anon_sym_CARET_LBRACK] = ACTIONS(5091), - [anon_sym_LBRACK_CARET] = ACTIONS(5091), - [sym_uri_autolink] = ACTIONS(5091), - [sym_email_autolink] = ACTIONS(5091), - [sym__whitespace_ge_2] = ACTIONS(5091), - [aux_sym__whitespace_token1] = ACTIONS(5093), - [sym__word_no_digit] = ACTIONS(5091), - [sym__digits] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5093), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), - [sym__code_span_start] = ACTIONS(5091), - [sym__emphasis_open_star] = ACTIONS(5091), - [sym__emphasis_open_underscore] = ACTIONS(5091), - [sym__strikeout_open] = ACTIONS(5091), - [sym__latex_span_start] = ACTIONS(5091), - [sym__single_quote_open] = ACTIONS(5091), - [sym__single_quote_close] = ACTIONS(5091), - [sym__double_quote_open] = ACTIONS(5091), - [sym__superscript_open] = ACTIONS(5091), - [sym__subscript_open] = ACTIONS(5091), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5091), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5091), - [sym__cite_author_in_text] = ACTIONS(5091), - [sym__cite_suppress_author] = ACTIONS(5091), - [sym__shortcode_open_escaped] = ACTIONS(5091), - [sym__shortcode_open] = ACTIONS(5091), - [sym__unclosed_span] = ACTIONS(5091), - [sym__strong_emphasis_open_star] = ACTIONS(5091), - [sym__strong_emphasis_open_underscore] = ACTIONS(5091), - }, - [STATE(1655)] = { - [ts_builtin_sym_end] = ACTIONS(5115), - [sym__backslash_escape] = ACTIONS(5115), - [sym_entity_reference] = ACTIONS(5115), - [sym_numeric_character_reference] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(5115), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_QMARK] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym_BQUOTE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [sym__newline_token] = ACTIONS(5115), - [aux_sym_insert_token1] = ACTIONS(5115), - [aux_sym_delete_token1] = ACTIONS(5115), - [aux_sym_highlight_token1] = ACTIONS(5115), - [aux_sym_edit_comment_token1] = ACTIONS(5115), - [anon_sym_CARET_LBRACK] = ACTIONS(5115), - [anon_sym_LBRACK_CARET] = ACTIONS(5115), - [sym_uri_autolink] = ACTIONS(5115), - [sym_email_autolink] = ACTIONS(5115), - [sym__whitespace_ge_2] = ACTIONS(5115), - [aux_sym__whitespace_token1] = ACTIONS(5117), - [sym__word_no_digit] = ACTIONS(5115), - [sym__digits] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5115), - [sym__code_span_start] = ACTIONS(5115), - [sym__emphasis_open_star] = ACTIONS(5115), - [sym__emphasis_open_underscore] = ACTIONS(5115), - [sym__strikeout_open] = ACTIONS(5115), - [sym__latex_span_start] = ACTIONS(5115), - [sym__single_quote_open] = ACTIONS(5115), - [sym__double_quote_open] = ACTIONS(5115), - [sym__superscript_open] = ACTIONS(5115), - [sym__subscript_open] = ACTIONS(5115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5115), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5115), - [sym__cite_author_in_text] = ACTIONS(5115), - [sym__cite_suppress_author] = ACTIONS(5115), - [sym__shortcode_open_escaped] = ACTIONS(5115), - [sym__shortcode_open] = ACTIONS(5115), - [sym__unclosed_span] = ACTIONS(5115), - [sym__strong_emphasis_open_star] = ACTIONS(5115), - [sym__strong_emphasis_open_underscore] = ACTIONS(5115), - }, - [STATE(1656)] = { - [sym__backslash_escape] = ACTIONS(5095), - [sym_entity_reference] = ACTIONS(5095), - [sym_numeric_character_reference] = ACTIONS(5095), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_BANG] = ACTIONS(5095), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_POUND] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5095), - [anon_sym_PERCENT] = ACTIONS(5095), - [anon_sym_AMP] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5095), - [anon_sym_STAR] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5095), - [anon_sym_COLON] = ACTIONS(5095), - [anon_sym_SEMI] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_QMARK] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5097), - [anon_sym_BSLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym_BQUOTE] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_PIPE] = ACTIONS(5095), - [anon_sym_TILDE] = ACTIONS(5095), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [sym__newline_token] = ACTIONS(5095), - [aux_sym_insert_token1] = ACTIONS(5095), - [aux_sym_delete_token1] = ACTIONS(5095), - [aux_sym_highlight_token1] = ACTIONS(5095), - [aux_sym_edit_comment_token1] = ACTIONS(5095), - [anon_sym_CARET_LBRACK] = ACTIONS(5095), - [anon_sym_LBRACK_CARET] = ACTIONS(5095), - [sym_uri_autolink] = ACTIONS(5095), - [sym_email_autolink] = ACTIONS(5095), - [sym__whitespace_ge_2] = ACTIONS(5095), - [aux_sym__whitespace_token1] = ACTIONS(5097), - [sym__word_no_digit] = ACTIONS(5095), - [sym__digits] = ACTIONS(5095), - [anon_sym_DASH_DASH] = ACTIONS(5097), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5095), - [sym__code_span_start] = ACTIONS(5095), - [sym__emphasis_open_star] = ACTIONS(5095), - [sym__emphasis_open_underscore] = ACTIONS(5095), - [sym__strikeout_open] = ACTIONS(5095), - [sym__latex_span_start] = ACTIONS(5095), - [sym__single_quote_open] = ACTIONS(5095), - [sym__single_quote_close] = ACTIONS(5095), - [sym__double_quote_open] = ACTIONS(5095), - [sym__superscript_open] = ACTIONS(5095), - [sym__subscript_open] = ACTIONS(5095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5095), - [sym__cite_author_in_text] = ACTIONS(5095), - [sym__cite_suppress_author] = ACTIONS(5095), - [sym__shortcode_open_escaped] = ACTIONS(5095), - [sym__shortcode_open] = ACTIONS(5095), - [sym__unclosed_span] = ACTIONS(5095), - [sym__strong_emphasis_open_star] = ACTIONS(5095), - [sym__strong_emphasis_open_underscore] = ACTIONS(5095), - }, - [STATE(1657)] = { - [sym__backslash_escape] = ACTIONS(5099), - [sym_entity_reference] = ACTIONS(5099), - [sym_numeric_character_reference] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5099), - [anon_sym_DQUOTE] = ACTIONS(5099), - [anon_sym_POUND] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_AMP] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5099), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_QMARK] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5101), - [anon_sym_BSLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym_BQUOTE] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_PIPE] = ACTIONS(5099), - [anon_sym_TILDE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [sym__newline_token] = ACTIONS(5099), - [aux_sym_insert_token1] = ACTIONS(5099), - [aux_sym_delete_token1] = ACTIONS(5099), - [aux_sym_highlight_token1] = ACTIONS(5099), - [aux_sym_edit_comment_token1] = ACTIONS(5099), - [anon_sym_CARET_LBRACK] = ACTIONS(5099), - [anon_sym_LBRACK_CARET] = ACTIONS(5099), - [sym_uri_autolink] = ACTIONS(5099), - [sym_email_autolink] = ACTIONS(5099), - [sym__whitespace_ge_2] = ACTIONS(5099), - [aux_sym__whitespace_token1] = ACTIONS(5101), - [sym__word_no_digit] = ACTIONS(5099), - [sym__digits] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5101), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5099), - [sym__code_span_start] = ACTIONS(5099), - [sym__emphasis_open_star] = ACTIONS(5099), - [sym__emphasis_open_underscore] = ACTIONS(5099), - [sym__strikeout_open] = ACTIONS(5099), - [sym__latex_span_start] = ACTIONS(5099), - [sym__single_quote_open] = ACTIONS(5099), - [sym__single_quote_close] = ACTIONS(5099), - [sym__double_quote_open] = ACTIONS(5099), - [sym__superscript_open] = ACTIONS(5099), - [sym__subscript_open] = ACTIONS(5099), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5099), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5099), - [sym__cite_author_in_text] = ACTIONS(5099), - [sym__cite_suppress_author] = ACTIONS(5099), - [sym__shortcode_open_escaped] = ACTIONS(5099), - [sym__shortcode_open] = ACTIONS(5099), - [sym__unclosed_span] = ACTIONS(5099), - [sym__strong_emphasis_open_star] = ACTIONS(5099), - [sym__strong_emphasis_open_underscore] = ACTIONS(5099), - }, - [STATE(1658)] = { - [sym__backslash_escape] = ACTIONS(5103), - [sym_entity_reference] = ACTIONS(5103), - [sym_numeric_character_reference] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5103), - [anon_sym_DQUOTE] = ACTIONS(5103), - [anon_sym_POUND] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_AMP] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5103), - [anon_sym_STAR] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5103), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_QMARK] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5105), - [anon_sym_BSLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym_BQUOTE] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_PIPE] = ACTIONS(5103), - [anon_sym_TILDE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [sym__newline_token] = ACTIONS(5103), - [aux_sym_insert_token1] = ACTIONS(5103), - [aux_sym_delete_token1] = ACTIONS(5103), - [aux_sym_highlight_token1] = ACTIONS(5103), - [aux_sym_edit_comment_token1] = ACTIONS(5103), - [anon_sym_CARET_LBRACK] = ACTIONS(5103), - [anon_sym_LBRACK_CARET] = ACTIONS(5103), - [sym_uri_autolink] = ACTIONS(5103), - [sym_email_autolink] = ACTIONS(5103), - [sym__whitespace_ge_2] = ACTIONS(5103), - [aux_sym__whitespace_token1] = ACTIONS(5105), - [sym__word_no_digit] = ACTIONS(5103), - [sym__digits] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5105), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5103), - [sym__code_span_start] = ACTIONS(5103), - [sym__emphasis_open_star] = ACTIONS(5103), - [sym__emphasis_open_underscore] = ACTIONS(5103), - [sym__strikeout_open] = ACTIONS(5103), - [sym__latex_span_start] = ACTIONS(5103), - [sym__single_quote_open] = ACTIONS(5103), - [sym__single_quote_close] = ACTIONS(5103), - [sym__double_quote_open] = ACTIONS(5103), - [sym__superscript_open] = ACTIONS(5103), - [sym__subscript_open] = ACTIONS(5103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5103), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5103), - [sym__cite_author_in_text] = ACTIONS(5103), - [sym__cite_suppress_author] = ACTIONS(5103), - [sym__shortcode_open_escaped] = ACTIONS(5103), - [sym__shortcode_open] = ACTIONS(5103), - [sym__unclosed_span] = ACTIONS(5103), - [sym__strong_emphasis_open_star] = ACTIONS(5103), - [sym__strong_emphasis_open_underscore] = ACTIONS(5103), - }, - [STATE(1659)] = { - [sym__backslash_escape] = ACTIONS(5107), - [sym_entity_reference] = ACTIONS(5107), - [sym_numeric_character_reference] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5107), - [anon_sym_DQUOTE] = ACTIONS(5107), - [anon_sym_POUND] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5107), - [anon_sym_PERCENT] = ACTIONS(5107), - [anon_sym_AMP] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_DOT] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5107), - [anon_sym_COLON] = ACTIONS(5107), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_QMARK] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5109), - [anon_sym_BSLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym_BQUOTE] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_PIPE] = ACTIONS(5107), - [anon_sym_TILDE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [sym__newline_token] = ACTIONS(5107), - [aux_sym_insert_token1] = ACTIONS(5107), - [aux_sym_delete_token1] = ACTIONS(5107), - [aux_sym_highlight_token1] = ACTIONS(5107), - [aux_sym_edit_comment_token1] = ACTIONS(5107), - [anon_sym_CARET_LBRACK] = ACTIONS(5107), - [anon_sym_LBRACK_CARET] = ACTIONS(5107), - [sym_uri_autolink] = ACTIONS(5107), - [sym_email_autolink] = ACTIONS(5107), - [sym__whitespace_ge_2] = ACTIONS(5107), - [aux_sym__whitespace_token1] = ACTIONS(5109), - [sym__word_no_digit] = ACTIONS(5107), - [sym__digits] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5109), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5107), - [sym__code_span_start] = ACTIONS(5107), - [sym__emphasis_open_star] = ACTIONS(5107), - [sym__emphasis_open_underscore] = ACTIONS(5107), - [sym__strikeout_open] = ACTIONS(5107), - [sym__latex_span_start] = ACTIONS(5107), - [sym__single_quote_open] = ACTIONS(5107), - [sym__single_quote_close] = ACTIONS(5107), - [sym__double_quote_open] = ACTIONS(5107), - [sym__superscript_open] = ACTIONS(5107), - [sym__subscript_open] = ACTIONS(5107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5107), - [sym__cite_author_in_text] = ACTIONS(5107), - [sym__cite_suppress_author] = ACTIONS(5107), - [sym__shortcode_open_escaped] = ACTIONS(5107), - [sym__shortcode_open] = ACTIONS(5107), - [sym__unclosed_span] = ACTIONS(5107), - [sym__strong_emphasis_open_star] = ACTIONS(5107), - [sym__strong_emphasis_open_underscore] = ACTIONS(5107), - }, - [STATE(1660)] = { - [sym__backslash_escape] = ACTIONS(5111), - [sym_entity_reference] = ACTIONS(5111), - [sym_numeric_character_reference] = ACTIONS(5111), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5111), - [anon_sym_BANG] = ACTIONS(5111), - [anon_sym_DQUOTE] = ACTIONS(5111), - [anon_sym_POUND] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5111), - [anon_sym_PERCENT] = ACTIONS(5111), - [anon_sym_AMP] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5111), - [anon_sym_STAR] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5111), - [anon_sym_COLON] = ACTIONS(5111), - [anon_sym_SEMI] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_QMARK] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5113), - [anon_sym_BSLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym_BQUOTE] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_TILDE] = ACTIONS(5111), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [sym__newline_token] = ACTIONS(5111), - [aux_sym_insert_token1] = ACTIONS(5111), - [aux_sym_delete_token1] = ACTIONS(5111), - [aux_sym_highlight_token1] = ACTIONS(5111), - [aux_sym_edit_comment_token1] = ACTIONS(5111), - [anon_sym_CARET_LBRACK] = ACTIONS(5111), - [anon_sym_LBRACK_CARET] = ACTIONS(5111), - [sym_uri_autolink] = ACTIONS(5111), - [sym_email_autolink] = ACTIONS(5111), - [sym__whitespace_ge_2] = ACTIONS(5111), - [aux_sym__whitespace_token1] = ACTIONS(5113), - [sym__word_no_digit] = ACTIONS(5111), - [sym__digits] = ACTIONS(5111), - [anon_sym_DASH_DASH] = ACTIONS(5113), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5111), - [sym__code_span_start] = ACTIONS(5111), - [sym__emphasis_open_star] = ACTIONS(5111), - [sym__emphasis_open_underscore] = ACTIONS(5111), - [sym__strikeout_open] = ACTIONS(5111), - [sym__latex_span_start] = ACTIONS(5111), - [sym__single_quote_open] = ACTIONS(5111), - [sym__single_quote_close] = ACTIONS(5111), - [sym__double_quote_open] = ACTIONS(5111), - [sym__superscript_open] = ACTIONS(5111), - [sym__subscript_open] = ACTIONS(5111), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5111), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5111), - [sym__cite_author_in_text] = ACTIONS(5111), - [sym__cite_suppress_author] = ACTIONS(5111), - [sym__shortcode_open_escaped] = ACTIONS(5111), - [sym__shortcode_open] = ACTIONS(5111), - [sym__unclosed_span] = ACTIONS(5111), - [sym__strong_emphasis_open_star] = ACTIONS(5111), - [sym__strong_emphasis_open_underscore] = ACTIONS(5111), - }, - [STATE(1661)] = { - [ts_builtin_sym_end] = ACTIONS(5119), - [sym__backslash_escape] = ACTIONS(5119), - [sym_entity_reference] = ACTIONS(5119), - [sym_numeric_character_reference] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_AMP] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [sym__newline_token] = ACTIONS(5119), - [aux_sym_insert_token1] = ACTIONS(5119), - [aux_sym_delete_token1] = ACTIONS(5119), - [aux_sym_highlight_token1] = ACTIONS(5119), - [aux_sym_edit_comment_token1] = ACTIONS(5119), - [anon_sym_CARET_LBRACK] = ACTIONS(5119), - [anon_sym_LBRACK_CARET] = ACTIONS(5119), - [sym_uri_autolink] = ACTIONS(5119), - [sym_email_autolink] = ACTIONS(5119), - [sym__whitespace_ge_2] = ACTIONS(5119), - [aux_sym__whitespace_token1] = ACTIONS(5121), - [sym__word_no_digit] = ACTIONS(5119), - [sym__digits] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5119), - [sym__code_span_start] = ACTIONS(5119), - [sym__emphasis_open_star] = ACTIONS(5119), - [sym__emphasis_open_underscore] = ACTIONS(5119), - [sym__strikeout_open] = ACTIONS(5119), - [sym__latex_span_start] = ACTIONS(5119), - [sym__single_quote_open] = ACTIONS(5119), - [sym__double_quote_open] = ACTIONS(5119), - [sym__superscript_open] = ACTIONS(5119), - [sym__subscript_open] = ACTIONS(5119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5119), - [sym__cite_author_in_text] = ACTIONS(5119), - [sym__cite_suppress_author] = ACTIONS(5119), - [sym__shortcode_open_escaped] = ACTIONS(5119), - [sym__shortcode_open] = ACTIONS(5119), - [sym__unclosed_span] = ACTIONS(5119), - [sym__strong_emphasis_open_star] = ACTIONS(5119), - [sym__strong_emphasis_open_underscore] = ACTIONS(5119), - }, - [STATE(1662)] = { - [sym__backslash_escape] = ACTIONS(5115), - [sym_entity_reference] = ACTIONS(5115), - [sym_numeric_character_reference] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5115), - [anon_sym_DQUOTE] = ACTIONS(5115), - [anon_sym_POUND] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_AMP] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5115), - [anon_sym_STAR] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5115), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_QMARK] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5117), - [anon_sym_BSLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym_BQUOTE] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_PIPE] = ACTIONS(5115), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [sym__newline_token] = ACTIONS(5115), - [aux_sym_insert_token1] = ACTIONS(5115), - [aux_sym_delete_token1] = ACTIONS(5115), - [aux_sym_highlight_token1] = ACTIONS(5115), - [aux_sym_edit_comment_token1] = ACTIONS(5115), - [anon_sym_CARET_LBRACK] = ACTIONS(5115), - [anon_sym_LBRACK_CARET] = ACTIONS(5115), - [sym_uri_autolink] = ACTIONS(5115), - [sym_email_autolink] = ACTIONS(5115), - [sym__whitespace_ge_2] = ACTIONS(5115), - [aux_sym__whitespace_token1] = ACTIONS(5117), - [sym__word_no_digit] = ACTIONS(5115), - [sym__digits] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5117), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5115), - [sym__code_span_start] = ACTIONS(5115), - [sym__emphasis_open_star] = ACTIONS(5115), - [sym__emphasis_open_underscore] = ACTIONS(5115), - [sym__strikeout_open] = ACTIONS(5115), - [sym__latex_span_start] = ACTIONS(5115), - [sym__single_quote_open] = ACTIONS(5115), - [sym__single_quote_close] = ACTIONS(5115), - [sym__double_quote_open] = ACTIONS(5115), - [sym__superscript_open] = ACTIONS(5115), - [sym__subscript_open] = ACTIONS(5115), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5115), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5115), - [sym__cite_author_in_text] = ACTIONS(5115), - [sym__cite_suppress_author] = ACTIONS(5115), - [sym__shortcode_open_escaped] = ACTIONS(5115), - [sym__shortcode_open] = ACTIONS(5115), - [sym__unclosed_span] = ACTIONS(5115), - [sym__strong_emphasis_open_star] = ACTIONS(5115), - [sym__strong_emphasis_open_underscore] = ACTIONS(5115), - }, - [STATE(1663)] = { - [sym__backslash_escape] = ACTIONS(5119), - [sym_entity_reference] = ACTIONS(5119), - [sym_numeric_character_reference] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5119), - [anon_sym_DQUOTE] = ACTIONS(5119), - [anon_sym_POUND] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_AMP] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5119), - [anon_sym_STAR] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5119), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_QMARK] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5121), - [anon_sym_BSLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_PIPE] = ACTIONS(5119), - [anon_sym_TILDE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [sym__newline_token] = ACTIONS(5119), - [aux_sym_insert_token1] = ACTIONS(5119), - [aux_sym_delete_token1] = ACTIONS(5119), - [aux_sym_highlight_token1] = ACTIONS(5119), - [aux_sym_edit_comment_token1] = ACTIONS(5119), - [anon_sym_CARET_LBRACK] = ACTIONS(5119), - [anon_sym_LBRACK_CARET] = ACTIONS(5119), - [sym_uri_autolink] = ACTIONS(5119), - [sym_email_autolink] = ACTIONS(5119), - [sym__whitespace_ge_2] = ACTIONS(5119), - [aux_sym__whitespace_token1] = ACTIONS(5121), - [sym__word_no_digit] = ACTIONS(5119), - [sym__digits] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5121), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5119), - [sym__code_span_start] = ACTIONS(5119), - [sym__emphasis_open_star] = ACTIONS(5119), - [sym__emphasis_open_underscore] = ACTIONS(5119), - [sym__strikeout_open] = ACTIONS(5119), - [sym__latex_span_start] = ACTIONS(5119), - [sym__single_quote_open] = ACTIONS(5119), - [sym__single_quote_close] = ACTIONS(5119), - [sym__double_quote_open] = ACTIONS(5119), - [sym__superscript_open] = ACTIONS(5119), - [sym__subscript_open] = ACTIONS(5119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5119), - [sym__cite_author_in_text] = ACTIONS(5119), - [sym__cite_suppress_author] = ACTIONS(5119), - [sym__shortcode_open_escaped] = ACTIONS(5119), - [sym__shortcode_open] = ACTIONS(5119), - [sym__unclosed_span] = ACTIONS(5119), - [sym__strong_emphasis_open_star] = ACTIONS(5119), - [sym__strong_emphasis_open_underscore] = ACTIONS(5119), - }, - [STATE(1664)] = { - [sym__backslash_escape] = ACTIONS(5123), - [sym_entity_reference] = ACTIONS(5123), - [sym_numeric_character_reference] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_DQUOTE] = ACTIONS(5123), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym_BQUOTE] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [sym__newline_token] = ACTIONS(5123), - [aux_sym_insert_token1] = ACTIONS(5123), - [aux_sym_delete_token1] = ACTIONS(5123), - [aux_sym_highlight_token1] = ACTIONS(5123), - [aux_sym_edit_comment_token1] = ACTIONS(5123), - [anon_sym_CARET_LBRACK] = ACTIONS(5123), - [anon_sym_LBRACK_CARET] = ACTIONS(5123), - [sym_uri_autolink] = ACTIONS(5123), - [sym_email_autolink] = ACTIONS(5123), - [sym__whitespace_ge_2] = ACTIONS(5123), - [aux_sym__whitespace_token1] = ACTIONS(5125), - [sym__word_no_digit] = ACTIONS(5123), - [sym__digits] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), - [sym__code_span_start] = ACTIONS(5123), - [sym__emphasis_open_star] = ACTIONS(5123), - [sym__emphasis_open_underscore] = ACTIONS(5123), - [sym__strikeout_open] = ACTIONS(5123), - [sym__latex_span_start] = ACTIONS(5123), - [sym__single_quote_open] = ACTIONS(5123), - [sym__single_quote_close] = ACTIONS(5123), - [sym__double_quote_open] = ACTIONS(5123), - [sym__superscript_open] = ACTIONS(5123), - [sym__subscript_open] = ACTIONS(5123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5123), - [sym__cite_author_in_text] = ACTIONS(5123), - [sym__cite_suppress_author] = ACTIONS(5123), - [sym__shortcode_open_escaped] = ACTIONS(5123), - [sym__shortcode_open] = ACTIONS(5123), - [sym__unclosed_span] = ACTIONS(5123), - [sym__strong_emphasis_open_star] = ACTIONS(5123), - [sym__strong_emphasis_open_underscore] = ACTIONS(5123), - }, - [STATE(1665)] = { [sym__backslash_escape] = ACTIONS(4631), [sym_entity_reference] = ACTIONS(4631), [sym_numeric_character_reference] = ACTIONS(4631), @@ -161197,7 +158503,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(4631), [anon_sym_AMP] = ACTIONS(4633), [anon_sym_SQUOTE] = ACTIONS(4631), - [anon_sym_STAR] = ACTIONS(4631), [anon_sym_PLUS] = ACTIONS(4631), [anon_sym_COMMA] = ACTIONS(4631), [anon_sym_DASH] = ACTIONS(4633), @@ -161238,8 +158543,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strikeout_open] = ACTIONS(4631), [sym__latex_span_start] = ACTIONS(4631), [sym__single_quote_open] = ACTIONS(4631), - [sym__single_quote_close] = ACTIONS(4631), [sym__double_quote_open] = ACTIONS(4631), + [sym__double_quote_close] = ACTIONS(4631), [sym__superscript_open] = ACTIONS(4631), [sym__subscript_open] = ACTIONS(4631), [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4631), @@ -161252,1681 +158557,2662 @@ 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(1651)] = { + [sym__backslash_escape] = ACTIONS(4223), + [sym_entity_reference] = ACTIONS(4223), + [sym_numeric_character_reference] = ACTIONS(4223), + [anon_sym_LT] = ACTIONS(4225), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_BANG] = ACTIONS(4223), + [anon_sym_DQUOTE] = ACTIONS(4223), + [anon_sym_POUND] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_COMMA] = ACTIONS(4223), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_COLON] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_EQ] = ACTIONS(4223), + [anon_sym_QMARK] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4225), + [anon_sym_BSLASH] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_BQUOTE] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_TILDE] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4223), + [sym__newline_token] = ACTIONS(4223), + [aux_sym_insert_token1] = ACTIONS(4223), + [aux_sym_delete_token1] = ACTIONS(4223), + [aux_sym_highlight_token1] = ACTIONS(4223), + [aux_sym_edit_comment_token1] = ACTIONS(4223), + [anon_sym_CARET_LBRACK] = ACTIONS(4223), + [anon_sym_LBRACK_CARET] = ACTIONS(4223), + [sym_uri_autolink] = ACTIONS(4223), + [sym_email_autolink] = ACTIONS(4223), + [sym__whitespace_ge_2] = ACTIONS(4223), + [aux_sym__whitespace_token1] = ACTIONS(4225), + [sym__word_no_digit] = ACTIONS(4223), + [sym__digits] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4223), + [sym__code_span_start] = ACTIONS(4223), + [sym__emphasis_open_star] = ACTIONS(4223), + [sym__emphasis_open_underscore] = ACTIONS(4223), + [sym__strikeout_open] = ACTIONS(4223), + [sym__latex_span_start] = ACTIONS(4223), + [sym__single_quote_open] = ACTIONS(4223), + [sym__double_quote_open] = ACTIONS(4223), + [sym__double_quote_close] = ACTIONS(4223), + [sym__superscript_open] = ACTIONS(4223), + [sym__subscript_open] = ACTIONS(4223), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4223), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4223), + [sym__cite_author_in_text] = ACTIONS(4223), + [sym__cite_suppress_author] = ACTIONS(4223), + [sym__shortcode_open_escaped] = ACTIONS(4223), + [sym__shortcode_open] = ACTIONS(4223), + [sym__unclosed_span] = ACTIONS(4223), + [sym__strong_emphasis_open_star] = ACTIONS(4223), + [sym__strong_emphasis_open_underscore] = ACTIONS(4223), + }, + [STATE(1652)] = { + [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(1653)] = { + [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__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), + [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(1654)] = { + [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__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), + [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(1655)] = { + [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(1656)] = { + [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__double_quote_close] = 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(1657)] = { + [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__double_quote_close] = 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(1658)] = { + [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__double_quote_close] = 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(1659)] = { + [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__double_quote_close] = 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(1660)] = { + [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__strikeout_open] = ACTIONS(4667), + [sym__latex_span_start] = ACTIONS(4667), + [sym__single_quote_open] = ACTIONS(4667), + [sym__double_quote_open] = ACTIONS(4667), + [sym__double_quote_close] = 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(1661)] = { + [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__double_quote_close] = 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(1662)] = { + [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__double_quote_close] = 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(1663)] = { + [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__double_quote_close] = 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(1664)] = { + [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__double_quote_close] = 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(1665)] = { + [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__double_quote_close] = 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(1666)] = { - [sym__backslash_escape] = ACTIONS(4657), - [sym_entity_reference] = ACTIONS(4657), - [sym_numeric_character_reference] = ACTIONS(4657), - [anon_sym_LT] = ACTIONS(4659), - [anon_sym_GT] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_DQUOTE] = ACTIONS(4657), - [anon_sym_POUND] = ACTIONS(4657), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_PERCENT] = ACTIONS(4657), - [anon_sym_AMP] = ACTIONS(4659), - [anon_sym_SQUOTE] = ACTIONS(4657), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PLUS] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_SLASH] = ACTIONS(4657), - [anon_sym_COLON] = ACTIONS(4657), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(4657), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4659), - [anon_sym_BSLASH] = ACTIONS(4659), - [anon_sym_CARET] = ACTIONS(4659), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACE] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [anon_sym_RPAREN] = ACTIONS(4657), - [sym__newline_token] = ACTIONS(4657), - [aux_sym_insert_token1] = ACTIONS(4657), - [aux_sym_delete_token1] = ACTIONS(4657), - [aux_sym_highlight_token1] = ACTIONS(4657), - [aux_sym_edit_comment_token1] = ACTIONS(4657), - [anon_sym_CARET_LBRACK] = ACTIONS(4657), - [anon_sym_LBRACK_CARET] = ACTIONS(4657), - [sym_uri_autolink] = ACTIONS(4657), - [sym_email_autolink] = ACTIONS(4657), - [sym__whitespace_ge_2] = ACTIONS(4657), - [aux_sym__whitespace_token1] = ACTIONS(4659), - [sym__word_no_digit] = ACTIONS(4657), - [sym__digits] = ACTIONS(4657), - [anon_sym_DASH_DASH] = ACTIONS(4659), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4657), - [sym__code_span_start] = ACTIONS(4657), - [sym__emphasis_open_star] = ACTIONS(4657), - [sym__emphasis_open_underscore] = ACTIONS(4657), - [sym__strikeout_open] = ACTIONS(4657), - [sym__latex_span_start] = ACTIONS(4657), - [sym__single_quote_open] = ACTIONS(4657), - [sym__single_quote_close] = ACTIONS(4657), - [sym__double_quote_open] = ACTIONS(4657), - [sym__superscript_open] = ACTIONS(4657), - [sym__subscript_open] = ACTIONS(4657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4657), - [sym__cite_author_in_text] = ACTIONS(4657), - [sym__cite_suppress_author] = ACTIONS(4657), - [sym__shortcode_open_escaped] = ACTIONS(4657), - [sym__shortcode_open] = ACTIONS(4657), - [sym__unclosed_span] = ACTIONS(4657), - [sym__strong_emphasis_open_star] = ACTIONS(4657), - [sym__strong_emphasis_open_underscore] = ACTIONS(4657), + [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__double_quote_close] = 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(1667)] = { - [sym__backslash_escape] = ACTIONS(5127), - [sym_entity_reference] = ACTIONS(5127), - [sym_numeric_character_reference] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5127), - [anon_sym_DQUOTE] = ACTIONS(5127), - [anon_sym_POUND] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5127), - [anon_sym_PERCENT] = ACTIONS(5127), - [anon_sym_AMP] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5127), - [anon_sym_STAR] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5127), - [anon_sym_COLON] = ACTIONS(5127), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_QMARK] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5129), - [anon_sym_BSLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym_BQUOTE] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_TILDE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [sym__newline_token] = ACTIONS(5127), - [aux_sym_insert_token1] = ACTIONS(5127), - [aux_sym_delete_token1] = ACTIONS(5127), - [aux_sym_highlight_token1] = ACTIONS(5127), - [aux_sym_edit_comment_token1] = ACTIONS(5127), - [anon_sym_CARET_LBRACK] = ACTIONS(5127), - [anon_sym_LBRACK_CARET] = ACTIONS(5127), - [sym_uri_autolink] = ACTIONS(5127), - [sym_email_autolink] = ACTIONS(5127), - [sym__whitespace_ge_2] = ACTIONS(5127), - [aux_sym__whitespace_token1] = ACTIONS(5129), - [sym__word_no_digit] = ACTIONS(5127), - [sym__digits] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5129), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5127), - [sym__code_span_start] = ACTIONS(5127), - [sym__emphasis_open_star] = ACTIONS(5127), - [sym__emphasis_open_underscore] = ACTIONS(5127), - [sym__strikeout_open] = ACTIONS(5127), - [sym__latex_span_start] = ACTIONS(5127), - [sym__single_quote_open] = ACTIONS(5127), - [sym__single_quote_close] = ACTIONS(5127), - [sym__double_quote_open] = ACTIONS(5127), - [sym__superscript_open] = ACTIONS(5127), - [sym__subscript_open] = ACTIONS(5127), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5127), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5127), - [sym__cite_author_in_text] = ACTIONS(5127), - [sym__cite_suppress_author] = ACTIONS(5127), - [sym__shortcode_open_escaped] = ACTIONS(5127), - [sym__shortcode_open] = ACTIONS(5127), - [sym__unclosed_span] = ACTIONS(5127), - [sym__strong_emphasis_open_star] = ACTIONS(5127), - [sym__strong_emphasis_open_underscore] = ACTIONS(5127), + [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__double_quote_close] = 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(1668)] = { - [sym__backslash_escape] = ACTIONS(5131), - [sym_entity_reference] = ACTIONS(5131), - [sym_numeric_character_reference] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(5131), - [anon_sym_POUND] = ACTIONS(5131), - [anon_sym_DOLLAR] = ACTIONS(5131), - [anon_sym_PERCENT] = ACTIONS(5131), - [anon_sym_AMP] = ACTIONS(5133), - [anon_sym_SQUOTE] = ACTIONS(5131), - [anon_sym_STAR] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5131), - [anon_sym_COLON] = ACTIONS(5131), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5131), - [anon_sym_QMARK] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH] = ACTIONS(5133), - [anon_sym_CARET] = ACTIONS(5133), - [anon_sym_BQUOTE] = ACTIONS(5131), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_PIPE] = ACTIONS(5131), - [anon_sym_TILDE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [sym__newline_token] = ACTIONS(5131), - [aux_sym_insert_token1] = ACTIONS(5131), - [aux_sym_delete_token1] = ACTIONS(5131), - [aux_sym_highlight_token1] = ACTIONS(5131), - [aux_sym_edit_comment_token1] = ACTIONS(5131), - [anon_sym_CARET_LBRACK] = ACTIONS(5131), - [anon_sym_LBRACK_CARET] = ACTIONS(5131), - [sym_uri_autolink] = ACTIONS(5131), - [sym_email_autolink] = ACTIONS(5131), - [sym__whitespace_ge_2] = ACTIONS(5131), - [aux_sym__whitespace_token1] = ACTIONS(5133), - [sym__word_no_digit] = ACTIONS(5131), - [sym__digits] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5133), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5131), - [sym__code_span_start] = ACTIONS(5131), - [sym__emphasis_open_star] = ACTIONS(5131), - [sym__emphasis_open_underscore] = ACTIONS(5131), - [sym__strikeout_open] = ACTIONS(5131), - [sym__latex_span_start] = ACTIONS(5131), - [sym__single_quote_open] = ACTIONS(5131), - [sym__single_quote_close] = ACTIONS(5131), - [sym__double_quote_open] = ACTIONS(5131), - [sym__superscript_open] = ACTIONS(5131), - [sym__subscript_open] = ACTIONS(5131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5131), - [sym__cite_author_in_text] = ACTIONS(5131), - [sym__cite_suppress_author] = ACTIONS(5131), - [sym__shortcode_open_escaped] = ACTIONS(5131), - [sym__shortcode_open] = ACTIONS(5131), - [sym__unclosed_span] = ACTIONS(5131), - [sym__strong_emphasis_open_star] = ACTIONS(5131), - [sym__strong_emphasis_open_underscore] = ACTIONS(5131), + [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__double_quote_close] = 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(1669)] = { - [sym__backslash_escape] = ACTIONS(5135), - [sym_entity_reference] = ACTIONS(5135), - [sym_numeric_character_reference] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5137), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_POUND] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_PERCENT] = ACTIONS(5135), - [anon_sym_AMP] = ACTIONS(5137), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5137), - [anon_sym_DOT] = ACTIONS(5137), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(5135), - [anon_sym_QMARK] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH] = ACTIONS(5137), - [anon_sym_CARET] = ACTIONS(5137), - [anon_sym_BQUOTE] = ACTIONS(5135), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_TILDE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [sym__newline_token] = ACTIONS(5135), - [aux_sym_insert_token1] = ACTIONS(5135), - [aux_sym_delete_token1] = ACTIONS(5135), - [aux_sym_highlight_token1] = ACTIONS(5135), - [aux_sym_edit_comment_token1] = ACTIONS(5135), - [anon_sym_CARET_LBRACK] = ACTIONS(5135), - [anon_sym_LBRACK_CARET] = ACTIONS(5135), - [sym_uri_autolink] = ACTIONS(5135), - [sym_email_autolink] = ACTIONS(5135), - [sym__whitespace_ge_2] = ACTIONS(5135), - [aux_sym__whitespace_token1] = ACTIONS(5137), - [sym__word_no_digit] = ACTIONS(5135), - [sym__digits] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5137), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5135), - [sym__code_span_start] = ACTIONS(5135), - [sym__emphasis_open_star] = ACTIONS(5135), - [sym__emphasis_open_underscore] = ACTIONS(5135), - [sym__strikeout_open] = ACTIONS(5135), - [sym__latex_span_start] = ACTIONS(5135), - [sym__single_quote_open] = ACTIONS(5135), - [sym__single_quote_close] = ACTIONS(5135), - [sym__double_quote_open] = ACTIONS(5135), - [sym__superscript_open] = ACTIONS(5135), - [sym__subscript_open] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5135), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5135), - [sym__cite_author_in_text] = ACTIONS(5135), - [sym__cite_suppress_author] = ACTIONS(5135), - [sym__shortcode_open_escaped] = ACTIONS(5135), - [sym__shortcode_open] = ACTIONS(5135), - [sym__unclosed_span] = ACTIONS(5135), - [sym__strong_emphasis_open_star] = ACTIONS(5135), - [sym__strong_emphasis_open_underscore] = ACTIONS(5135), + [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__double_quote_close] = 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(1670)] = { - [sym__backslash_escape] = ACTIONS(5139), - [sym_entity_reference] = ACTIONS(5139), - [sym_numeric_character_reference] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_DQUOTE] = ACTIONS(5139), - [anon_sym_POUND] = ACTIONS(5139), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_PERCENT] = ACTIONS(5139), - [anon_sym_AMP] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_COMMA] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SEMI] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(5139), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH] = ACTIONS(5141), - [anon_sym_CARET] = ACTIONS(5141), - [anon_sym_BQUOTE] = ACTIONS(5139), - [anon_sym_LBRACE] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_TILDE] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5139), - [anon_sym_RPAREN] = ACTIONS(5139), - [sym__newline_token] = ACTIONS(5139), - [aux_sym_insert_token1] = ACTIONS(5139), - [aux_sym_delete_token1] = ACTIONS(5139), - [aux_sym_highlight_token1] = ACTIONS(5139), - [aux_sym_edit_comment_token1] = ACTIONS(5139), - [anon_sym_CARET_LBRACK] = ACTIONS(5139), - [anon_sym_LBRACK_CARET] = ACTIONS(5139), - [sym_uri_autolink] = ACTIONS(5139), - [sym_email_autolink] = ACTIONS(5139), - [sym__whitespace_ge_2] = ACTIONS(5139), - [aux_sym__whitespace_token1] = ACTIONS(5141), - [sym__word_no_digit] = ACTIONS(5139), - [sym__digits] = ACTIONS(5139), - [anon_sym_DASH_DASH] = ACTIONS(5141), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5139), - [sym__code_span_start] = ACTIONS(5139), - [sym__emphasis_open_star] = ACTIONS(5139), - [sym__emphasis_open_underscore] = ACTIONS(5139), - [sym__strikeout_open] = ACTIONS(5139), - [sym__latex_span_start] = ACTIONS(5139), - [sym__single_quote_open] = ACTIONS(5139), - [sym__single_quote_close] = ACTIONS(5139), - [sym__double_quote_open] = ACTIONS(5139), - [sym__superscript_open] = ACTIONS(5139), - [sym__subscript_open] = ACTIONS(5139), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5139), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5139), - [sym__cite_author_in_text] = ACTIONS(5139), - [sym__cite_suppress_author] = ACTIONS(5139), - [sym__shortcode_open_escaped] = ACTIONS(5139), - [sym__shortcode_open] = ACTIONS(5139), - [sym__unclosed_span] = ACTIONS(5139), - [sym__strong_emphasis_open_star] = ACTIONS(5139), - [sym__strong_emphasis_open_underscore] = ACTIONS(5139), + [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__double_quote_close] = 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(1671)] = { - [sym__backslash_escape] = ACTIONS(5143), - [sym_entity_reference] = ACTIONS(5143), - [sym_numeric_character_reference] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5145), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_DQUOTE] = ACTIONS(5143), - [anon_sym_POUND] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_PERCENT] = ACTIONS(5143), - [anon_sym_AMP] = ACTIONS(5145), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5143), - [anon_sym_QMARK] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH] = ACTIONS(5145), - [anon_sym_CARET] = ACTIONS(5145), - [anon_sym_BQUOTE] = ACTIONS(5143), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_TILDE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [sym__newline_token] = ACTIONS(5143), - [aux_sym_insert_token1] = ACTIONS(5143), - [aux_sym_delete_token1] = ACTIONS(5143), - [aux_sym_highlight_token1] = ACTIONS(5143), - [aux_sym_edit_comment_token1] = ACTIONS(5143), - [anon_sym_CARET_LBRACK] = ACTIONS(5143), - [anon_sym_LBRACK_CARET] = ACTIONS(5143), - [sym_uri_autolink] = ACTIONS(5143), - [sym_email_autolink] = ACTIONS(5143), - [sym__whitespace_ge_2] = ACTIONS(5143), - [aux_sym__whitespace_token1] = ACTIONS(5145), - [sym__word_no_digit] = ACTIONS(5143), - [sym__digits] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5145), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5143), - [sym__code_span_start] = ACTIONS(5143), - [sym__emphasis_open_star] = ACTIONS(5143), - [sym__emphasis_open_underscore] = ACTIONS(5143), - [sym__strikeout_open] = ACTIONS(5143), - [sym__latex_span_start] = ACTIONS(5143), - [sym__single_quote_open] = ACTIONS(5143), - [sym__single_quote_close] = ACTIONS(5143), - [sym__double_quote_open] = ACTIONS(5143), - [sym__superscript_open] = ACTIONS(5143), - [sym__subscript_open] = ACTIONS(5143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5143), - [sym__cite_author_in_text] = ACTIONS(5143), - [sym__cite_suppress_author] = ACTIONS(5143), - [sym__shortcode_open_escaped] = ACTIONS(5143), - [sym__shortcode_open] = ACTIONS(5143), - [sym__unclosed_span] = ACTIONS(5143), - [sym__strong_emphasis_open_star] = ACTIONS(5143), - [sym__strong_emphasis_open_underscore] = ACTIONS(5143), + [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__strikeout_open] = ACTIONS(4539), + [sym__latex_span_start] = ACTIONS(4539), + [sym__single_quote_open] = ACTIONS(4539), + [sym__double_quote_open] = ACTIONS(4539), + [sym__double_quote_close] = 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(1672)] = { - [sym__backslash_escape] = ACTIONS(4661), - [sym_entity_reference] = ACTIONS(4661), - [sym_numeric_character_reference] = ACTIONS(4661), - [anon_sym_LT] = ACTIONS(4663), - [anon_sym_GT] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_DQUOTE] = ACTIONS(4661), - [anon_sym_POUND] = ACTIONS(4661), - [anon_sym_DOLLAR] = ACTIONS(4661), - [anon_sym_PERCENT] = ACTIONS(4661), - [anon_sym_AMP] = ACTIONS(4663), - [anon_sym_SQUOTE] = ACTIONS(4661), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PLUS] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_SLASH] = ACTIONS(4661), - [anon_sym_COLON] = ACTIONS(4661), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_EQ] = ACTIONS(4661), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4663), - [anon_sym_BSLASH] = ACTIONS(4663), - [anon_sym_CARET] = ACTIONS(4663), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACE] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(4661), - [sym__newline_token] = ACTIONS(4661), - [aux_sym_insert_token1] = ACTIONS(4661), - [aux_sym_delete_token1] = ACTIONS(4661), - [aux_sym_highlight_token1] = ACTIONS(4661), - [aux_sym_edit_comment_token1] = ACTIONS(4661), - [anon_sym_CARET_LBRACK] = ACTIONS(4661), - [anon_sym_LBRACK_CARET] = ACTIONS(4661), - [sym_uri_autolink] = ACTIONS(4661), - [sym_email_autolink] = ACTIONS(4661), - [sym__whitespace_ge_2] = ACTIONS(4661), - [aux_sym__whitespace_token1] = ACTIONS(4663), - [sym__word_no_digit] = ACTIONS(4661), - [sym__digits] = ACTIONS(4661), - [anon_sym_DASH_DASH] = ACTIONS(4663), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4661), - [sym__code_span_start] = ACTIONS(4661), - [sym__emphasis_open_star] = ACTIONS(4661), - [sym__emphasis_open_underscore] = ACTIONS(4661), - [sym__strikeout_open] = ACTIONS(4661), - [sym__latex_span_start] = ACTIONS(4661), - [sym__single_quote_open] = ACTIONS(4661), - [sym__single_quote_close] = ACTIONS(4661), - [sym__double_quote_open] = ACTIONS(4661), - [sym__superscript_open] = ACTIONS(4661), - [sym__subscript_open] = ACTIONS(4661), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4661), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4661), - [sym__cite_author_in_text] = ACTIONS(4661), - [sym__cite_suppress_author] = ACTIONS(4661), - [sym__shortcode_open_escaped] = ACTIONS(4661), - [sym__shortcode_open] = ACTIONS(4661), - [sym__unclosed_span] = ACTIONS(4661), - [sym__strong_emphasis_open_star] = ACTIONS(4661), - [sym__strong_emphasis_open_underscore] = ACTIONS(4661), + [sym__backslash_escape] = ACTIONS(4367), + [sym_entity_reference] = ACTIONS(4367), + [sym_numeric_character_reference] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_COMMA] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4367), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_BSLASH] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_BQUOTE] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_RPAREN] = ACTIONS(4367), + [sym__newline_token] = ACTIONS(4367), + [aux_sym_insert_token1] = ACTIONS(4367), + [aux_sym_delete_token1] = ACTIONS(4367), + [aux_sym_highlight_token1] = ACTIONS(4367), + [aux_sym_edit_comment_token1] = ACTIONS(4367), + [anon_sym_CARET_LBRACK] = ACTIONS(4367), + [anon_sym_LBRACK_CARET] = ACTIONS(4367), + [sym_uri_autolink] = ACTIONS(4367), + [sym_email_autolink] = ACTIONS(4367), + [sym__whitespace_ge_2] = ACTIONS(4367), + [aux_sym__whitespace_token1] = ACTIONS(4369), + [sym__word_no_digit] = ACTIONS(4367), + [sym__digits] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [sym__code_span_start] = ACTIONS(4367), + [sym__emphasis_open_star] = ACTIONS(4367), + [sym__emphasis_open_underscore] = ACTIONS(4367), + [sym__strikeout_open] = ACTIONS(4367), + [sym__latex_span_start] = ACTIONS(4367), + [sym__single_quote_open] = ACTIONS(4367), + [sym__double_quote_open] = ACTIONS(4367), + [sym__double_quote_close] = ACTIONS(4367), + [sym__superscript_open] = ACTIONS(4367), + [sym__subscript_open] = ACTIONS(4367), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4367), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4367), + [sym__cite_author_in_text] = ACTIONS(4367), + [sym__cite_suppress_author] = ACTIONS(4367), + [sym__shortcode_open_escaped] = ACTIONS(4367), + [sym__shortcode_open] = ACTIONS(4367), + [sym__unclosed_span] = ACTIONS(4367), + [sym__strong_emphasis_open_star] = ACTIONS(4367), + [sym__strong_emphasis_open_underscore] = ACTIONS(4367), }, [STATE(1673)] = { - [ts_builtin_sym_end] = ACTIONS(5123), - [sym__backslash_escape] = ACTIONS(5123), - [sym_entity_reference] = ACTIONS(5123), - [sym_numeric_character_reference] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5123), - [anon_sym_DQUOTE] = ACTIONS(5123), - [anon_sym_POUND] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5123), - [anon_sym_PERCENT] = ACTIONS(5123), - [anon_sym_AMP] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5123), - [anon_sym_STAR] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5123), - [anon_sym_COLON] = ACTIONS(5123), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_QMARK] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5125), - [anon_sym_BSLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym_BQUOTE] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_TILDE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [sym__newline_token] = ACTIONS(5123), - [aux_sym_insert_token1] = ACTIONS(5123), - [aux_sym_delete_token1] = ACTIONS(5123), - [aux_sym_highlight_token1] = ACTIONS(5123), - [aux_sym_edit_comment_token1] = ACTIONS(5123), - [anon_sym_CARET_LBRACK] = ACTIONS(5123), - [anon_sym_LBRACK_CARET] = ACTIONS(5123), - [sym_uri_autolink] = ACTIONS(5123), - [sym_email_autolink] = ACTIONS(5123), - [sym__whitespace_ge_2] = ACTIONS(5123), - [aux_sym__whitespace_token1] = ACTIONS(5125), - [sym__word_no_digit] = ACTIONS(5123), - [sym__digits] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5125), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), - [sym__code_span_start] = ACTIONS(5123), - [sym__emphasis_open_star] = ACTIONS(5123), - [sym__emphasis_open_underscore] = ACTIONS(5123), - [sym__strikeout_open] = ACTIONS(5123), - [sym__latex_span_start] = ACTIONS(5123), - [sym__single_quote_open] = ACTIONS(5123), - [sym__double_quote_open] = ACTIONS(5123), - [sym__superscript_open] = ACTIONS(5123), - [sym__subscript_open] = ACTIONS(5123), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5123), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5123), - [sym__cite_author_in_text] = ACTIONS(5123), - [sym__cite_suppress_author] = ACTIONS(5123), - [sym__shortcode_open_escaped] = ACTIONS(5123), - [sym__shortcode_open] = ACTIONS(5123), - [sym__unclosed_span] = ACTIONS(5123), - [sym__strong_emphasis_open_star] = ACTIONS(5123), - [sym__strong_emphasis_open_underscore] = ACTIONS(5123), + [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__superscript_close] = 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(1674)] = { - [sym__backslash_escape] = ACTIONS(4637), - [sym_entity_reference] = ACTIONS(4637), - [sym_numeric_character_reference] = ACTIONS(4637), - [anon_sym_LT] = ACTIONS(4639), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_DQUOTE] = ACTIONS(4637), - [anon_sym_POUND] = ACTIONS(4637), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_AMP] = ACTIONS(4639), - [anon_sym_SQUOTE] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_COLON] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_BSLASH] = ACTIONS(4639), - [anon_sym_CARET] = ACTIONS(4639), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [anon_sym_RPAREN] = ACTIONS(4637), - [sym__newline_token] = ACTIONS(4637), - [aux_sym_insert_token1] = ACTIONS(4637), - [aux_sym_delete_token1] = ACTIONS(4637), - [aux_sym_highlight_token1] = ACTIONS(4637), - [aux_sym_edit_comment_token1] = ACTIONS(4637), - [anon_sym_CARET_LBRACK] = ACTIONS(4637), - [anon_sym_LBRACK_CARET] = ACTIONS(4637), - [sym_uri_autolink] = ACTIONS(4637), - [sym_email_autolink] = ACTIONS(4637), - [sym__whitespace_ge_2] = ACTIONS(4637), - [aux_sym__whitespace_token1] = ACTIONS(4639), - [sym__word_no_digit] = ACTIONS(4637), - [sym__digits] = ACTIONS(4637), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4637), - [sym__code_span_start] = ACTIONS(4637), - [sym__emphasis_open_star] = ACTIONS(4637), - [sym__emphasis_open_underscore] = ACTIONS(4637), - [sym__strikeout_open] = ACTIONS(4637), - [sym__latex_span_start] = ACTIONS(4637), - [sym__single_quote_open] = ACTIONS(4637), - [sym__single_quote_close] = ACTIONS(4637), - [sym__double_quote_open] = ACTIONS(4637), - [sym__superscript_open] = ACTIONS(4637), - [sym__subscript_open] = ACTIONS(4637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4637), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4637), - [sym__cite_author_in_text] = ACTIONS(4637), - [sym__cite_suppress_author] = ACTIONS(4637), - [sym__shortcode_open_escaped] = ACTIONS(4637), - [sym__shortcode_open] = ACTIONS(4637), - [sym__unclosed_span] = ACTIONS(4637), - [sym__strong_emphasis_open_star] = ACTIONS(4637), - [sym__strong_emphasis_open_underscore] = ACTIONS(4637), + [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__double_quote_close] = 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(1675)] = { - [sym__backslash_escape] = ACTIONS(5147), - [sym_entity_reference] = ACTIONS(5147), - [sym_numeric_character_reference] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_DQUOTE] = ACTIONS(5147), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_PERCENT] = ACTIONS(5147), - [anon_sym_AMP] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_COMMA] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SEMI] = ACTIONS(5147), - [anon_sym_EQ] = ACTIONS(5147), - [anon_sym_QMARK] = ACTIONS(5147), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH] = ACTIONS(5149), - [anon_sym_CARET] = ACTIONS(5149), - [anon_sym_BQUOTE] = ACTIONS(5147), - [anon_sym_LBRACE] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_TILDE] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5147), - [anon_sym_RPAREN] = ACTIONS(5147), - [sym__newline_token] = ACTIONS(5147), - [aux_sym_insert_token1] = ACTIONS(5147), - [aux_sym_delete_token1] = ACTIONS(5147), - [aux_sym_highlight_token1] = ACTIONS(5147), - [aux_sym_edit_comment_token1] = ACTIONS(5147), - [anon_sym_CARET_LBRACK] = ACTIONS(5147), - [anon_sym_LBRACK_CARET] = ACTIONS(5147), - [sym_uri_autolink] = ACTIONS(5147), - [sym_email_autolink] = ACTIONS(5147), - [sym__whitespace_ge_2] = ACTIONS(5147), - [aux_sym__whitespace_token1] = ACTIONS(5149), - [sym__word_no_digit] = ACTIONS(5147), - [sym__digits] = ACTIONS(5147), - [anon_sym_DASH_DASH] = ACTIONS(5149), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5147), - [sym__code_span_start] = ACTIONS(5147), - [sym__emphasis_open_star] = ACTIONS(5147), - [sym__emphasis_open_underscore] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5147), - [sym__latex_span_start] = ACTIONS(5147), - [sym__single_quote_open] = ACTIONS(5147), - [sym__single_quote_close] = ACTIONS(5147), - [sym__double_quote_open] = ACTIONS(5147), - [sym__superscript_open] = ACTIONS(5147), - [sym__subscript_open] = ACTIONS(5147), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5147), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5147), - [sym__cite_author_in_text] = ACTIONS(5147), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__shortcode_open_escaped] = ACTIONS(5147), - [sym__shortcode_open] = ACTIONS(5147), - [sym__unclosed_span] = ACTIONS(5147), - [sym__strong_emphasis_open_star] = ACTIONS(5147), - [sym__strong_emphasis_open_underscore] = ACTIONS(5147), + [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__double_quote_close] = 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(1676)] = { - [sym__backslash_escape] = ACTIONS(5151), - [sym_entity_reference] = ACTIONS(5151), - [sym_numeric_character_reference] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_DQUOTE] = ACTIONS(5151), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_PERCENT] = ACTIONS(5151), - [anon_sym_AMP] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(5151), - [anon_sym_QMARK] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH] = ACTIONS(5153), - [anon_sym_CARET] = ACTIONS(5153), - [anon_sym_BQUOTE] = ACTIONS(5151), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_RPAREN] = ACTIONS(5151), - [sym__newline_token] = ACTIONS(5151), - [aux_sym_insert_token1] = ACTIONS(5151), - [aux_sym_delete_token1] = ACTIONS(5151), - [aux_sym_highlight_token1] = ACTIONS(5151), - [aux_sym_edit_comment_token1] = ACTIONS(5151), - [anon_sym_CARET_LBRACK] = ACTIONS(5151), - [anon_sym_LBRACK_CARET] = ACTIONS(5151), - [sym_uri_autolink] = ACTIONS(5151), - [sym_email_autolink] = ACTIONS(5151), - [sym__whitespace_ge_2] = ACTIONS(5151), - [aux_sym__whitespace_token1] = ACTIONS(5153), - [sym__word_no_digit] = ACTIONS(5151), - [sym__digits] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5151), - [sym__code_span_start] = ACTIONS(5151), - [sym__emphasis_open_star] = ACTIONS(5151), - [sym__emphasis_open_underscore] = ACTIONS(5151), - [sym__strikeout_open] = ACTIONS(5151), - [sym__latex_span_start] = ACTIONS(5151), - [sym__single_quote_open] = ACTIONS(5151), - [sym__single_quote_close] = ACTIONS(5151), - [sym__double_quote_open] = ACTIONS(5151), - [sym__superscript_open] = ACTIONS(5151), - [sym__subscript_open] = ACTIONS(5151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5151), - [sym__cite_author_in_text] = ACTIONS(5151), - [sym__cite_suppress_author] = ACTIONS(5151), - [sym__shortcode_open_escaped] = ACTIONS(5151), - [sym__shortcode_open] = ACTIONS(5151), - [sym__unclosed_span] = ACTIONS(5151), - [sym__strong_emphasis_open_star] = ACTIONS(5151), - [sym__strong_emphasis_open_underscore] = ACTIONS(5151), + [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__double_quote_close] = 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(1677)] = { - [sym__backslash_escape] = ACTIONS(5155), - [sym_entity_reference] = ACTIONS(5155), - [sym_numeric_character_reference] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_DQUOTE] = ACTIONS(5155), - [anon_sym_POUND] = ACTIONS(5155), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_PERCENT] = ACTIONS(5155), - [anon_sym_AMP] = ACTIONS(5157), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(5155), - [anon_sym_QMARK] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH] = ACTIONS(5157), - [anon_sym_CARET] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5155), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_TILDE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5155), - [sym__newline_token] = ACTIONS(5155), - [aux_sym_insert_token1] = ACTIONS(5155), - [aux_sym_delete_token1] = ACTIONS(5155), - [aux_sym_highlight_token1] = ACTIONS(5155), - [aux_sym_edit_comment_token1] = ACTIONS(5155), - [anon_sym_CARET_LBRACK] = ACTIONS(5155), - [anon_sym_LBRACK_CARET] = ACTIONS(5155), - [sym_uri_autolink] = ACTIONS(5155), - [sym_email_autolink] = ACTIONS(5155), - [sym__whitespace_ge_2] = ACTIONS(5155), - [aux_sym__whitespace_token1] = ACTIONS(5157), - [sym__word_no_digit] = ACTIONS(5155), - [sym__digits] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5155), - [sym__code_span_start] = ACTIONS(5155), - [sym__emphasis_open_star] = ACTIONS(5155), - [sym__emphasis_open_underscore] = ACTIONS(5155), - [sym__strikeout_open] = ACTIONS(5155), - [sym__latex_span_start] = ACTIONS(5155), - [sym__single_quote_open] = ACTIONS(5155), - [sym__single_quote_close] = ACTIONS(5155), - [sym__double_quote_open] = ACTIONS(5155), - [sym__superscript_open] = ACTIONS(5155), - [sym__subscript_open] = ACTIONS(5155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5155), - [sym__cite_author_in_text] = ACTIONS(5155), - [sym__cite_suppress_author] = ACTIONS(5155), - [sym__shortcode_open_escaped] = ACTIONS(5155), - [sym__shortcode_open] = ACTIONS(5155), - [sym__unclosed_span] = ACTIONS(5155), - [sym__strong_emphasis_open_star] = ACTIONS(5155), - [sym__strong_emphasis_open_underscore] = ACTIONS(5155), + [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__double_quote_close] = 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(1678)] = { - [sym__backslash_escape] = ACTIONS(5159), - [sym_entity_reference] = ACTIONS(5159), - [sym_numeric_character_reference] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_DQUOTE] = ACTIONS(5159), - [anon_sym_POUND] = ACTIONS(5159), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_PERCENT] = ACTIONS(5159), - [anon_sym_AMP] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(5159), - [anon_sym_QMARK] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH] = ACTIONS(5161), - [anon_sym_CARET] = ACTIONS(5161), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_TILDE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [sym__newline_token] = ACTIONS(5159), - [aux_sym_insert_token1] = ACTIONS(5159), - [aux_sym_delete_token1] = ACTIONS(5159), - [aux_sym_highlight_token1] = ACTIONS(5159), - [aux_sym_edit_comment_token1] = ACTIONS(5159), - [anon_sym_CARET_LBRACK] = ACTIONS(5159), - [anon_sym_LBRACK_CARET] = ACTIONS(5159), - [sym_uri_autolink] = ACTIONS(5159), - [sym_email_autolink] = ACTIONS(5159), - [sym__whitespace_ge_2] = ACTIONS(5159), - [aux_sym__whitespace_token1] = ACTIONS(5161), - [sym__word_no_digit] = ACTIONS(5159), - [sym__digits] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5161), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5159), - [sym__code_span_start] = ACTIONS(5159), - [sym__emphasis_open_star] = ACTIONS(5159), - [sym__emphasis_open_underscore] = ACTIONS(5159), - [sym__strikeout_open] = ACTIONS(5159), - [sym__latex_span_start] = ACTIONS(5159), - [sym__single_quote_open] = ACTIONS(5159), - [sym__single_quote_close] = ACTIONS(5159), - [sym__double_quote_open] = ACTIONS(5159), - [sym__superscript_open] = ACTIONS(5159), - [sym__subscript_open] = ACTIONS(5159), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5159), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5159), - [sym__cite_author_in_text] = ACTIONS(5159), - [sym__cite_suppress_author] = ACTIONS(5159), - [sym__shortcode_open_escaped] = ACTIONS(5159), - [sym__shortcode_open] = ACTIONS(5159), - [sym__unclosed_span] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5159), - [sym__strong_emphasis_open_underscore] = ACTIONS(5159), + [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__double_quote_close] = 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(1679)] = { - [sym__backslash_escape] = ACTIONS(4665), - [sym_entity_reference] = ACTIONS(4665), - [sym_numeric_character_reference] = ACTIONS(4665), - [anon_sym_LT] = ACTIONS(4667), - [anon_sym_GT] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_DQUOTE] = ACTIONS(4665), - [anon_sym_POUND] = ACTIONS(4665), - [anon_sym_DOLLAR] = ACTIONS(4665), - [anon_sym_PERCENT] = ACTIONS(4665), - [anon_sym_AMP] = ACTIONS(4667), - [anon_sym_SQUOTE] = ACTIONS(4665), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PLUS] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_SLASH] = ACTIONS(4665), - [anon_sym_COLON] = ACTIONS(4665), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_EQ] = ACTIONS(4665), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4667), - [anon_sym_BSLASH] = ACTIONS(4667), - [anon_sym_CARET] = ACTIONS(4667), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACE] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [anon_sym_RPAREN] = ACTIONS(4665), - [sym__newline_token] = ACTIONS(4665), - [aux_sym_insert_token1] = ACTIONS(4665), - [aux_sym_delete_token1] = ACTIONS(4665), - [aux_sym_highlight_token1] = ACTIONS(4665), - [aux_sym_edit_comment_token1] = ACTIONS(4665), - [anon_sym_CARET_LBRACK] = ACTIONS(4665), - [anon_sym_LBRACK_CARET] = ACTIONS(4665), - [sym_uri_autolink] = ACTIONS(4665), - [sym_email_autolink] = ACTIONS(4665), - [sym__whitespace_ge_2] = ACTIONS(4665), - [aux_sym__whitespace_token1] = ACTIONS(4667), - [sym__word_no_digit] = ACTIONS(4665), - [sym__digits] = ACTIONS(4665), - [anon_sym_DASH_DASH] = ACTIONS(4667), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4665), - [sym__code_span_start] = ACTIONS(4665), - [sym__emphasis_open_star] = ACTIONS(4665), - [sym__emphasis_open_underscore] = ACTIONS(4665), - [sym__strikeout_open] = ACTIONS(4665), - [sym__latex_span_start] = ACTIONS(4665), - [sym__single_quote_open] = ACTIONS(4665), - [sym__single_quote_close] = ACTIONS(4665), - [sym__double_quote_open] = ACTIONS(4665), - [sym__superscript_open] = ACTIONS(4665), - [sym__subscript_open] = ACTIONS(4665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4665), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4665), - [sym__cite_author_in_text] = ACTIONS(4665), - [sym__cite_suppress_author] = ACTIONS(4665), - [sym__shortcode_open_escaped] = ACTIONS(4665), - [sym__shortcode_open] = ACTIONS(4665), - [sym__unclosed_span] = ACTIONS(4665), - [sym__strong_emphasis_open_star] = ACTIONS(4665), - [sym__strong_emphasis_open_underscore] = ACTIONS(4665), + [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__double_quote_close] = 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(1680)] = { - [sym__backslash_escape] = ACTIONS(4669), - [sym_entity_reference] = ACTIONS(4669), - [sym_numeric_character_reference] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4671), - [anon_sym_GT] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_DQUOTE] = ACTIONS(4669), - [anon_sym_POUND] = ACTIONS(4669), - [anon_sym_DOLLAR] = ACTIONS(4669), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_AMP] = ACTIONS(4671), - [anon_sym_SQUOTE] = ACTIONS(4669), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PLUS] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4671), - [anon_sym_SLASH] = ACTIONS(4669), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_EQ] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_BSLASH] = ACTIONS(4671), - [anon_sym_CARET] = ACTIONS(4671), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACE] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [anon_sym_RPAREN] = ACTIONS(4669), - [sym__newline_token] = ACTIONS(4669), - [aux_sym_insert_token1] = ACTIONS(4669), - [aux_sym_delete_token1] = ACTIONS(4669), - [aux_sym_highlight_token1] = ACTIONS(4669), - [aux_sym_edit_comment_token1] = ACTIONS(4669), - [anon_sym_CARET_LBRACK] = ACTIONS(4669), - [anon_sym_LBRACK_CARET] = ACTIONS(4669), - [sym_uri_autolink] = ACTIONS(4669), - [sym_email_autolink] = ACTIONS(4669), - [sym__whitespace_ge_2] = ACTIONS(4669), - [aux_sym__whitespace_token1] = ACTIONS(4671), - [sym__word_no_digit] = ACTIONS(4669), - [sym__digits] = ACTIONS(4669), - [anon_sym_DASH_DASH] = ACTIONS(4671), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4669), - [sym__code_span_start] = ACTIONS(4669), - [sym__emphasis_open_star] = ACTIONS(4669), - [sym__emphasis_open_underscore] = ACTIONS(4669), - [sym__strikeout_open] = ACTIONS(4669), - [sym__latex_span_start] = ACTIONS(4669), - [sym__single_quote_open] = ACTIONS(4669), - [sym__single_quote_close] = ACTIONS(4669), - [sym__double_quote_open] = ACTIONS(4669), - [sym__superscript_open] = ACTIONS(4669), - [sym__subscript_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4669), - [sym__cite_author_in_text] = ACTIONS(4669), - [sym__cite_suppress_author] = ACTIONS(4669), - [sym__shortcode_open_escaped] = ACTIONS(4669), - [sym__shortcode_open] = ACTIONS(4669), - [sym__unclosed_span] = ACTIONS(4669), - [sym__strong_emphasis_open_star] = ACTIONS(4669), - [sym__strong_emphasis_open_underscore] = ACTIONS(4669), + [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__superscript_close] = 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(1681)] = { - [sym__backslash_escape] = ACTIONS(5163), - [sym_entity_reference] = ACTIONS(5163), - [sym_numeric_character_reference] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(5163), - [anon_sym_POUND] = ACTIONS(5163), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_PERCENT] = ACTIONS(5163), - [anon_sym_AMP] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH] = ACTIONS(5165), - [anon_sym_CARET] = ACTIONS(5165), - [anon_sym_BQUOTE] = ACTIONS(5163), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_TILDE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [sym__newline_token] = ACTIONS(5163), - [aux_sym_insert_token1] = ACTIONS(5163), - [aux_sym_delete_token1] = ACTIONS(5163), - [aux_sym_highlight_token1] = ACTIONS(5163), - [aux_sym_edit_comment_token1] = ACTIONS(5163), - [anon_sym_CARET_LBRACK] = ACTIONS(5163), - [anon_sym_LBRACK_CARET] = ACTIONS(5163), - [sym_uri_autolink] = ACTIONS(5163), - [sym_email_autolink] = ACTIONS(5163), - [sym__whitespace_ge_2] = ACTIONS(5163), - [aux_sym__whitespace_token1] = ACTIONS(5165), - [sym__word_no_digit] = ACTIONS(5163), - [sym__digits] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5163), - [sym__code_span_start] = ACTIONS(5163), - [sym__emphasis_open_star] = ACTIONS(5163), - [sym__emphasis_open_underscore] = ACTIONS(5163), - [sym__strikeout_open] = ACTIONS(5163), - [sym__latex_span_start] = ACTIONS(5163), - [sym__single_quote_open] = ACTIONS(5163), - [sym__single_quote_close] = ACTIONS(5163), - [sym__double_quote_open] = ACTIONS(5163), - [sym__superscript_open] = ACTIONS(5163), - [sym__subscript_open] = ACTIONS(5163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5163), - [sym__cite_author_in_text] = ACTIONS(5163), - [sym__cite_suppress_author] = ACTIONS(5163), - [sym__shortcode_open_escaped] = ACTIONS(5163), - [sym__shortcode_open] = ACTIONS(5163), - [sym__unclosed_span] = ACTIONS(5163), - [sym__strong_emphasis_open_star] = ACTIONS(5163), - [sym__strong_emphasis_open_underscore] = ACTIONS(5163), + [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__double_quote_close] = 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(1682)] = { - [sym__backslash_escape] = ACTIONS(5167), - [sym_entity_reference] = ACTIONS(5167), - [sym_numeric_character_reference] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5167), - [anon_sym_POUND] = ACTIONS(5167), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_PERCENT] = ACTIONS(5167), - [anon_sym_AMP] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(5167), - [anon_sym_QMARK] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH] = ACTIONS(5169), - [anon_sym_CARET] = ACTIONS(5169), - [anon_sym_BQUOTE] = ACTIONS(5167), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_TILDE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [sym__newline_token] = ACTIONS(5167), - [aux_sym_insert_token1] = ACTIONS(5167), - [aux_sym_delete_token1] = ACTIONS(5167), - [aux_sym_highlight_token1] = ACTIONS(5167), - [aux_sym_edit_comment_token1] = ACTIONS(5167), - [anon_sym_CARET_LBRACK] = ACTIONS(5167), - [anon_sym_LBRACK_CARET] = ACTIONS(5167), - [sym_uri_autolink] = ACTIONS(5167), - [sym_email_autolink] = ACTIONS(5167), - [sym__whitespace_ge_2] = ACTIONS(5167), - [aux_sym__whitespace_token1] = ACTIONS(5169), - [sym__word_no_digit] = ACTIONS(5167), - [sym__digits] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5169), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5167), - [sym__code_span_start] = ACTIONS(5167), - [sym__emphasis_open_star] = ACTIONS(5167), - [sym__emphasis_open_underscore] = ACTIONS(5167), - [sym__strikeout_open] = ACTIONS(5167), - [sym__latex_span_start] = ACTIONS(5167), - [sym__single_quote_open] = ACTIONS(5167), - [sym__single_quote_close] = ACTIONS(5167), - [sym__double_quote_open] = ACTIONS(5167), - [sym__superscript_open] = ACTIONS(5167), - [sym__subscript_open] = ACTIONS(5167), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5167), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5167), - [sym__cite_author_in_text] = ACTIONS(5167), - [sym__cite_suppress_author] = ACTIONS(5167), - [sym__shortcode_open_escaped] = ACTIONS(5167), - [sym__shortcode_open] = ACTIONS(5167), - [sym__unclosed_span] = ACTIONS(5167), - [sym__strong_emphasis_open_star] = ACTIONS(5167), - [sym__strong_emphasis_open_underscore] = ACTIONS(5167), + [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__double_quote_close] = 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(1683)] = { - [sym__backslash_escape] = ACTIONS(4673), - [sym_entity_reference] = ACTIONS(4673), - [sym_numeric_character_reference] = ACTIONS(4673), - [anon_sym_LT] = ACTIONS(4675), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_DQUOTE] = ACTIONS(4673), - [anon_sym_POUND] = ACTIONS(4673), - [anon_sym_DOLLAR] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4675), - [anon_sym_SQUOTE] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4675), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_COLON] = ACTIONS(4673), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_EQ] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4675), - [anon_sym_BSLASH] = ACTIONS(4675), - [anon_sym_CARET] = ACTIONS(4675), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACE] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [anon_sym_RPAREN] = ACTIONS(4673), - [sym__newline_token] = ACTIONS(4673), - [aux_sym_insert_token1] = ACTIONS(4673), - [aux_sym_delete_token1] = ACTIONS(4673), - [aux_sym_highlight_token1] = ACTIONS(4673), - [aux_sym_edit_comment_token1] = ACTIONS(4673), - [anon_sym_CARET_LBRACK] = ACTIONS(4673), - [anon_sym_LBRACK_CARET] = ACTIONS(4673), - [sym_uri_autolink] = ACTIONS(4673), - [sym_email_autolink] = ACTIONS(4673), - [sym__whitespace_ge_2] = ACTIONS(4673), - [aux_sym__whitespace_token1] = ACTIONS(4675), - [sym__word_no_digit] = ACTIONS(4673), - [sym__digits] = ACTIONS(4673), - [anon_sym_DASH_DASH] = ACTIONS(4675), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4673), - [sym__code_span_start] = ACTIONS(4673), - [sym__emphasis_open_star] = ACTIONS(4673), - [sym__emphasis_open_underscore] = ACTIONS(4673), - [sym__strikeout_open] = ACTIONS(4673), - [sym__latex_span_start] = ACTIONS(4673), - [sym__single_quote_open] = ACTIONS(4673), - [sym__single_quote_close] = ACTIONS(4673), - [sym__double_quote_open] = ACTIONS(4673), - [sym__superscript_open] = ACTIONS(4673), - [sym__subscript_open] = ACTIONS(4673), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4673), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4673), - [sym__cite_author_in_text] = ACTIONS(4673), - [sym__cite_suppress_author] = ACTIONS(4673), - [sym__shortcode_open_escaped] = ACTIONS(4673), - [sym__shortcode_open] = ACTIONS(4673), - [sym__unclosed_span] = ACTIONS(4673), - [sym__strong_emphasis_open_star] = ACTIONS(4673), - [sym__strong_emphasis_open_underscore] = ACTIONS(4673), + [sym__backslash_escape] = ACTIONS(4499), + [sym_entity_reference] = ACTIONS(4499), + [sym_numeric_character_reference] = ACTIONS(4499), + [anon_sym_LT] = ACTIONS(4501), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [anon_sym_POUND] = ACTIONS(4499), + [anon_sym_DOLLAR] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_AMP] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_COMMA] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4501), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_QMARK] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_BSLASH] = ACTIONS(4501), + [anon_sym_CARET] = ACTIONS(4501), + [anon_sym_BQUOTE] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4499), + [anon_sym_PIPE] = ACTIONS(4499), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_RPAREN] = ACTIONS(4499), + [sym__newline_token] = ACTIONS(4499), + [aux_sym_insert_token1] = ACTIONS(4499), + [aux_sym_delete_token1] = ACTIONS(4499), + [aux_sym_highlight_token1] = ACTIONS(4499), + [aux_sym_edit_comment_token1] = ACTIONS(4499), + [anon_sym_CARET_LBRACK] = ACTIONS(4499), + [anon_sym_LBRACK_CARET] = ACTIONS(4499), + [sym_uri_autolink] = ACTIONS(4499), + [sym_email_autolink] = ACTIONS(4499), + [sym__whitespace_ge_2] = ACTIONS(4499), + [aux_sym__whitespace_token1] = ACTIONS(4501), + [sym__word_no_digit] = ACTIONS(4499), + [sym__digits] = ACTIONS(4499), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4499), + [sym__code_span_start] = ACTIONS(4499), + [sym__emphasis_open_star] = ACTIONS(4499), + [sym__emphasis_open_underscore] = ACTIONS(4499), + [sym__strikeout_open] = ACTIONS(4499), + [sym__latex_span_start] = ACTIONS(4499), + [sym__single_quote_open] = ACTIONS(4499), + [sym__double_quote_open] = ACTIONS(4499), + [sym__double_quote_close] = ACTIONS(4499), + [sym__superscript_open] = ACTIONS(4499), + [sym__subscript_open] = ACTIONS(4499), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4499), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4499), + [sym__cite_author_in_text] = ACTIONS(4499), + [sym__cite_suppress_author] = ACTIONS(4499), + [sym__shortcode_open_escaped] = ACTIONS(4499), + [sym__shortcode_open] = ACTIONS(4499), + [sym__unclosed_span] = ACTIONS(4499), + [sym__strong_emphasis_open_star] = ACTIONS(4499), + [sym__strong_emphasis_open_underscore] = ACTIONS(4499), }, [STATE(1684)] = { - [sym__backslash_escape] = ACTIONS(4677), - [sym_entity_reference] = ACTIONS(4677), - [sym_numeric_character_reference] = ACTIONS(4677), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_DQUOTE] = ACTIONS(4677), - [anon_sym_POUND] = ACTIONS(4677), - [anon_sym_DOLLAR] = ACTIONS(4677), - [anon_sym_PERCENT] = ACTIONS(4677), - [anon_sym_AMP] = ACTIONS(4679), - [anon_sym_SQUOTE] = ACTIONS(4677), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_SLASH] = ACTIONS(4677), - [anon_sym_COLON] = ACTIONS(4677), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_EQ] = ACTIONS(4677), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4679), - [anon_sym_BSLASH] = ACTIONS(4679), - [anon_sym_CARET] = ACTIONS(4679), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACE] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [anon_sym_RPAREN] = ACTIONS(4677), - [sym__newline_token] = ACTIONS(4677), - [aux_sym_insert_token1] = ACTIONS(4677), - [aux_sym_delete_token1] = ACTIONS(4677), - [aux_sym_highlight_token1] = ACTIONS(4677), - [aux_sym_edit_comment_token1] = ACTIONS(4677), - [anon_sym_CARET_LBRACK] = ACTIONS(4677), - [anon_sym_LBRACK_CARET] = ACTIONS(4677), - [sym_uri_autolink] = ACTIONS(4677), - [sym_email_autolink] = ACTIONS(4677), - [sym__whitespace_ge_2] = ACTIONS(4677), - [aux_sym__whitespace_token1] = ACTIONS(4679), - [sym__word_no_digit] = ACTIONS(4677), - [sym__digits] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4679), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4677), - [sym__code_span_start] = ACTIONS(4677), - [sym__emphasis_open_star] = ACTIONS(4677), - [sym__emphasis_open_underscore] = ACTIONS(4677), - [sym__strikeout_open] = ACTIONS(4677), - [sym__latex_span_start] = ACTIONS(4677), - [sym__single_quote_open] = ACTIONS(4677), - [sym__single_quote_close] = ACTIONS(4677), - [sym__double_quote_open] = ACTIONS(4677), - [sym__superscript_open] = ACTIONS(4677), - [sym__subscript_open] = ACTIONS(4677), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4677), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4677), - [sym__cite_author_in_text] = ACTIONS(4677), - [sym__cite_suppress_author] = ACTIONS(4677), - [sym__shortcode_open_escaped] = ACTIONS(4677), - [sym__shortcode_open] = ACTIONS(4677), - [sym__unclosed_span] = ACTIONS(4677), - [sym__strong_emphasis_open_star] = ACTIONS(4677), - [sym__strong_emphasis_open_underscore] = ACTIONS(4677), + [sym__backslash_escape] = ACTIONS(4235), + [sym_entity_reference] = ACTIONS(4235), + [sym_numeric_character_reference] = ACTIONS(4235), + [anon_sym_LT] = ACTIONS(4237), + [anon_sym_GT] = ACTIONS(4235), + [anon_sym_BANG] = ACTIONS(4235), + [anon_sym_DQUOTE] = ACTIONS(4235), + [anon_sym_POUND] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_COMMA] = ACTIONS(4235), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_COLON] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(4235), + [anon_sym_QMARK] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4237), + [anon_sym_BSLASH] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_PIPE] = ACTIONS(4235), + [anon_sym_TILDE] = ACTIONS(4235), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_RPAREN] = ACTIONS(4235), + [sym__newline_token] = ACTIONS(4235), + [aux_sym_insert_token1] = ACTIONS(4235), + [aux_sym_delete_token1] = ACTIONS(4235), + [aux_sym_highlight_token1] = ACTIONS(4235), + [aux_sym_edit_comment_token1] = ACTIONS(4235), + [anon_sym_CARET_LBRACK] = ACTIONS(4235), + [anon_sym_LBRACK_CARET] = ACTIONS(4235), + [sym_uri_autolink] = ACTIONS(4235), + [sym_email_autolink] = ACTIONS(4235), + [sym__whitespace_ge_2] = ACTIONS(4235), + [aux_sym__whitespace_token1] = ACTIONS(4237), + [sym__word_no_digit] = ACTIONS(4235), + [sym__digits] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4235), + [sym__code_span_start] = ACTIONS(4235), + [sym__emphasis_open_star] = ACTIONS(4235), + [sym__emphasis_open_underscore] = ACTIONS(4235), + [sym__strikeout_open] = ACTIONS(4235), + [sym__latex_span_start] = ACTIONS(4235), + [sym__single_quote_open] = ACTIONS(4235), + [sym__double_quote_open] = ACTIONS(4235), + [sym__double_quote_close] = ACTIONS(4235), + [sym__superscript_open] = ACTIONS(4235), + [sym__subscript_open] = ACTIONS(4235), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4235), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4235), + [sym__cite_author_in_text] = ACTIONS(4235), + [sym__cite_suppress_author] = ACTIONS(4235), + [sym__shortcode_open_escaped] = ACTIONS(4235), + [sym__shortcode_open] = ACTIONS(4235), + [sym__unclosed_span] = ACTIONS(4235), + [sym__strong_emphasis_open_star] = ACTIONS(4235), + [sym__strong_emphasis_open_underscore] = ACTIONS(4235), }, [STATE(1685)] = { - [sym__backslash_escape] = ACTIONS(4681), - [sym_entity_reference] = ACTIONS(4681), - [sym_numeric_character_reference] = ACTIONS(4681), - [anon_sym_LT] = ACTIONS(4683), - [anon_sym_GT] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_DQUOTE] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(4681), - [anon_sym_DOLLAR] = ACTIONS(4681), - [anon_sym_PERCENT] = ACTIONS(4681), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_SQUOTE] = ACTIONS(4681), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PLUS] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_SLASH] = ACTIONS(4681), - [anon_sym_COLON] = ACTIONS(4681), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_EQ] = ACTIONS(4681), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_BSLASH] = ACTIONS(4683), - [anon_sym_CARET] = ACTIONS(4683), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACE] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [anon_sym_RPAREN] = ACTIONS(4681), - [sym__newline_token] = ACTIONS(4681), - [aux_sym_insert_token1] = ACTIONS(4681), - [aux_sym_delete_token1] = ACTIONS(4681), - [aux_sym_highlight_token1] = ACTIONS(4681), - [aux_sym_edit_comment_token1] = ACTIONS(4681), - [anon_sym_CARET_LBRACK] = ACTIONS(4681), - [anon_sym_LBRACK_CARET] = ACTIONS(4681), - [sym_uri_autolink] = ACTIONS(4681), - [sym_email_autolink] = ACTIONS(4681), - [sym__whitespace_ge_2] = ACTIONS(4681), - [aux_sym__whitespace_token1] = ACTIONS(4683), - [sym__word_no_digit] = ACTIONS(4681), - [sym__digits] = ACTIONS(4681), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4681), - [sym__code_span_start] = ACTIONS(4681), - [sym__emphasis_open_star] = ACTIONS(4681), - [sym__emphasis_open_underscore] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4681), - [sym__latex_span_start] = ACTIONS(4681), - [sym__single_quote_open] = ACTIONS(4681), - [sym__single_quote_close] = ACTIONS(4681), - [sym__double_quote_open] = ACTIONS(4681), - [sym__superscript_open] = ACTIONS(4681), - [sym__subscript_open] = ACTIONS(4681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4681), - [sym__cite_author_in_text] = ACTIONS(4681), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__shortcode_open_escaped] = ACTIONS(4681), - [sym__shortcode_open] = ACTIONS(4681), - [sym__unclosed_span] = ACTIONS(4681), - [sym__strong_emphasis_open_star] = ACTIONS(4681), - [sym__strong_emphasis_open_underscore] = ACTIONS(4681), + [sym__backslash_escape] = ACTIONS(4239), + [sym_entity_reference] = ACTIONS(4239), + [sym_numeric_character_reference] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4241), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_BANG] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4239), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_COMMA] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4241), + [anon_sym_DOT] = ACTIONS(4241), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4241), + [anon_sym_BSLASH] = ACTIONS(4241), + [anon_sym_CARET] = ACTIONS(4241), + [anon_sym_BQUOTE] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_TILDE] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [sym__newline_token] = ACTIONS(4239), + [aux_sym_insert_token1] = ACTIONS(4239), + [aux_sym_delete_token1] = ACTIONS(4239), + [aux_sym_highlight_token1] = ACTIONS(4239), + [aux_sym_edit_comment_token1] = ACTIONS(4239), + [anon_sym_CARET_LBRACK] = ACTIONS(4239), + [anon_sym_LBRACK_CARET] = ACTIONS(4239), + [sym_uri_autolink] = ACTIONS(4239), + [sym_email_autolink] = ACTIONS(4239), + [sym__whitespace_ge_2] = ACTIONS(4239), + [aux_sym__whitespace_token1] = ACTIONS(4241), + [sym__word_no_digit] = ACTIONS(4239), + [sym__digits] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4239), + [sym__code_span_start] = ACTIONS(4239), + [sym__emphasis_open_star] = ACTIONS(4239), + [sym__emphasis_open_underscore] = ACTIONS(4239), + [sym__strikeout_open] = ACTIONS(4239), + [sym__latex_span_start] = ACTIONS(4239), + [sym__single_quote_open] = ACTIONS(4239), + [sym__double_quote_open] = ACTIONS(4239), + [sym__double_quote_close] = ACTIONS(4239), + [sym__superscript_open] = ACTIONS(4239), + [sym__subscript_open] = ACTIONS(4239), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4239), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4239), + [sym__cite_author_in_text] = ACTIONS(4239), + [sym__cite_suppress_author] = ACTIONS(4239), + [sym__shortcode_open_escaped] = ACTIONS(4239), + [sym__shortcode_open] = ACTIONS(4239), + [sym__unclosed_span] = ACTIONS(4239), + [sym__strong_emphasis_open_star] = ACTIONS(4239), + [sym__strong_emphasis_open_underscore] = ACTIONS(4239), }, [STATE(1686)] = { - [sym__backslash_escape] = ACTIONS(4625), - [sym_entity_reference] = ACTIONS(4625), - [sym_numeric_character_reference] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_DQUOTE] = ACTIONS(4625), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4627), - [anon_sym_SQUOTE] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_COLON] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_BSLASH] = ACTIONS(4627), - [anon_sym_CARET] = ACTIONS(4627), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [anon_sym_RPAREN] = ACTIONS(4625), - [sym__newline_token] = ACTIONS(4625), - [aux_sym_insert_token1] = ACTIONS(4625), - [aux_sym_delete_token1] = ACTIONS(4625), - [aux_sym_highlight_token1] = ACTIONS(4625), - [aux_sym_edit_comment_token1] = ACTIONS(4625), - [anon_sym_CARET_LBRACK] = ACTIONS(4625), - [anon_sym_LBRACK_CARET] = ACTIONS(4625), - [sym_uri_autolink] = ACTIONS(4625), - [sym_email_autolink] = ACTIONS(4625), - [sym__whitespace_ge_2] = ACTIONS(4625), - [aux_sym__whitespace_token1] = ACTIONS(4627), - [sym__word_no_digit] = ACTIONS(4625), - [sym__digits] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_DASH_DASH_DASH] = ACTIONS(4625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4625), - [sym__code_span_start] = ACTIONS(4625), - [sym__emphasis_open_star] = ACTIONS(4625), - [sym__emphasis_open_underscore] = ACTIONS(4625), - [sym__strikeout_open] = ACTIONS(4625), - [sym__latex_span_start] = ACTIONS(4625), - [sym__single_quote_open] = ACTIONS(4625), - [sym__single_quote_close] = ACTIONS(4625), - [sym__double_quote_open] = ACTIONS(4625), - [sym__superscript_open] = ACTIONS(4625), - [sym__subscript_open] = ACTIONS(4625), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4625), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4625), - [sym__cite_author_in_text] = ACTIONS(4625), - [sym__cite_suppress_author] = ACTIONS(4625), - [sym__shortcode_open_escaped] = ACTIONS(4625), - [sym__shortcode_open] = ACTIONS(4625), - [sym__unclosed_span] = ACTIONS(4625), - [sym__strong_emphasis_open_star] = ACTIONS(4625), - [sym__strong_emphasis_open_underscore] = ACTIONS(4625), + [sym__backslash_escape] = ACTIONS(4507), + [sym_entity_reference] = ACTIONS(4507), + [sym_numeric_character_reference] = ACTIONS(4507), + [anon_sym_LT] = ACTIONS(4509), + [anon_sym_GT] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [anon_sym_POUND] = ACTIONS(4507), + [anon_sym_DOLLAR] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_COMMA] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4509), + [anon_sym_DOT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_QMARK] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4509), + [anon_sym_BSLASH] = ACTIONS(4509), + [anon_sym_CARET] = ACTIONS(4509), + [anon_sym_BQUOTE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_PIPE] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4507), + [anon_sym_RPAREN] = ACTIONS(4507), + [sym__newline_token] = ACTIONS(4507), + [aux_sym_insert_token1] = ACTIONS(4507), + [aux_sym_delete_token1] = ACTIONS(4507), + [aux_sym_highlight_token1] = ACTIONS(4507), + [aux_sym_edit_comment_token1] = ACTIONS(4507), + [anon_sym_CARET_LBRACK] = ACTIONS(4507), + [anon_sym_LBRACK_CARET] = ACTIONS(4507), + [sym_uri_autolink] = ACTIONS(4507), + [sym_email_autolink] = ACTIONS(4507), + [sym__whitespace_ge_2] = ACTIONS(4507), + [aux_sym__whitespace_token1] = ACTIONS(4509), + [sym__word_no_digit] = ACTIONS(4507), + [sym__digits] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4507), + [sym__code_span_start] = ACTIONS(4507), + [sym__emphasis_open_star] = ACTIONS(4507), + [sym__emphasis_open_underscore] = ACTIONS(4507), + [sym__strikeout_open] = ACTIONS(4507), + [sym__latex_span_start] = ACTIONS(4507), + [sym__single_quote_open] = ACTIONS(4507), + [sym__double_quote_open] = ACTIONS(4507), + [sym__double_quote_close] = ACTIONS(4507), + [sym__superscript_open] = ACTIONS(4507), + [sym__subscript_open] = ACTIONS(4507), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4507), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4507), + [sym__cite_author_in_text] = ACTIONS(4507), + [sym__cite_suppress_author] = ACTIONS(4507), + [sym__shortcode_open_escaped] = ACTIONS(4507), + [sym__shortcode_open] = ACTIONS(4507), + [sym__unclosed_span] = ACTIONS(4507), + [sym__strong_emphasis_open_star] = ACTIONS(4507), + [sym__strong_emphasis_open_underscore] = ACTIONS(4507), }, [STATE(1687)] = { - [sym__backslash_escape] = ACTIONS(5171), - [sym_entity_reference] = ACTIONS(5171), - [sym_numeric_character_reference] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_DQUOTE] = ACTIONS(5171), - [anon_sym_POUND] = ACTIONS(5171), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_PERCENT] = ACTIONS(5171), - [anon_sym_AMP] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5171), - [anon_sym_QMARK] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH] = ACTIONS(5173), - [anon_sym_CARET] = ACTIONS(5173), - [anon_sym_BQUOTE] = ACTIONS(5171), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_TILDE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [sym__newline_token] = ACTIONS(5171), - [aux_sym_insert_token1] = ACTIONS(5171), - [aux_sym_delete_token1] = ACTIONS(5171), - [aux_sym_highlight_token1] = ACTIONS(5171), - [aux_sym_edit_comment_token1] = ACTIONS(5171), - [anon_sym_CARET_LBRACK] = ACTIONS(5171), - [anon_sym_LBRACK_CARET] = ACTIONS(5171), - [sym_uri_autolink] = ACTIONS(5171), - [sym_email_autolink] = ACTIONS(5171), - [sym__whitespace_ge_2] = ACTIONS(5171), - [aux_sym__whitespace_token1] = ACTIONS(5173), - [sym__word_no_digit] = ACTIONS(5171), - [sym__digits] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5171), - [sym__code_span_start] = ACTIONS(5171), - [sym__emphasis_open_star] = ACTIONS(5171), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym__strikeout_open] = ACTIONS(5171), - [sym__latex_span_start] = ACTIONS(5171), - [sym__single_quote_open] = ACTIONS(5171), - [sym__single_quote_close] = ACTIONS(5171), - [sym__double_quote_open] = ACTIONS(5171), - [sym__superscript_open] = ACTIONS(5171), - [sym__subscript_open] = ACTIONS(5171), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5171), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5171), - [sym__cite_author_in_text] = ACTIONS(5171), - [sym__cite_suppress_author] = ACTIONS(5171), - [sym__shortcode_open_escaped] = ACTIONS(5171), - [sym__shortcode_open] = ACTIONS(5171), - [sym__unclosed_span] = ACTIONS(5171), - [sym__strong_emphasis_open_star] = ACTIONS(5171), - [sym__strong_emphasis_open_underscore] = ACTIONS(5171), + [sym__backslash_escape] = ACTIONS(4511), + [sym_entity_reference] = ACTIONS(4511), + [sym_numeric_character_reference] = ACTIONS(4511), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4511), + [anon_sym_BANG] = ACTIONS(4511), + [anon_sym_DQUOTE] = ACTIONS(4511), + [anon_sym_POUND] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_AMP] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(4511), + [anon_sym_COMMA] = ACTIONS(4511), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4511), + [anon_sym_SEMI] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4511), + [anon_sym_QMARK] = ACTIONS(4511), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH] = ACTIONS(4513), + [anon_sym_CARET] = ACTIONS(4513), + [anon_sym_BQUOTE] = ACTIONS(4511), + [anon_sym_LBRACE] = ACTIONS(4511), + [anon_sym_PIPE] = ACTIONS(4511), + [anon_sym_TILDE] = ACTIONS(4511), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_RPAREN] = ACTIONS(4511), + [sym__newline_token] = ACTIONS(4511), + [aux_sym_insert_token1] = ACTIONS(4511), + [aux_sym_delete_token1] = ACTIONS(4511), + [aux_sym_highlight_token1] = ACTIONS(4511), + [aux_sym_edit_comment_token1] = ACTIONS(4511), + [anon_sym_CARET_LBRACK] = ACTIONS(4511), + [anon_sym_LBRACK_CARET] = ACTIONS(4511), + [sym_uri_autolink] = ACTIONS(4511), + [sym_email_autolink] = ACTIONS(4511), + [sym__whitespace_ge_2] = ACTIONS(4511), + [aux_sym__whitespace_token1] = ACTIONS(4513), + [sym__word_no_digit] = ACTIONS(4511), + [sym__digits] = ACTIONS(4511), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4511), + [sym__code_span_start] = ACTIONS(4511), + [sym__emphasis_open_star] = ACTIONS(4511), + [sym__emphasis_open_underscore] = ACTIONS(4511), + [sym__strikeout_open] = ACTIONS(4511), + [sym__latex_span_start] = ACTIONS(4511), + [sym__single_quote_open] = ACTIONS(4511), + [sym__double_quote_open] = ACTIONS(4511), + [sym__double_quote_close] = ACTIONS(4511), + [sym__superscript_open] = ACTIONS(4511), + [sym__subscript_open] = ACTIONS(4511), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4511), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), + [sym__cite_author_in_text] = ACTIONS(4511), + [sym__cite_suppress_author] = ACTIONS(4511), + [sym__shortcode_open_escaped] = ACTIONS(4511), + [sym__shortcode_open] = ACTIONS(4511), + [sym__unclosed_span] = ACTIONS(4511), + [sym__strong_emphasis_open_star] = ACTIONS(4511), + [sym__strong_emphasis_open_underscore] = ACTIONS(4511), }, [STATE(1688)] = { - [sym__backslash_escape] = ACTIONS(5175), - [sym_entity_reference] = ACTIONS(5175), - [sym_numeric_character_reference] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_DQUOTE] = ACTIONS(5175), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_PERCENT] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_QMARK] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH] = ACTIONS(5177), - [anon_sym_CARET] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5175), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_TILDE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [sym__newline_token] = ACTIONS(5175), - [aux_sym_insert_token1] = ACTIONS(5175), - [aux_sym_delete_token1] = ACTIONS(5175), - [aux_sym_highlight_token1] = ACTIONS(5175), - [aux_sym_edit_comment_token1] = ACTIONS(5175), - [anon_sym_CARET_LBRACK] = ACTIONS(5175), - [anon_sym_LBRACK_CARET] = ACTIONS(5175), - [sym_uri_autolink] = ACTIONS(5175), - [sym_email_autolink] = ACTIONS(5175), - [sym__whitespace_ge_2] = ACTIONS(5175), - [aux_sym__whitespace_token1] = ACTIONS(5177), - [sym__word_no_digit] = ACTIONS(5175), - [sym__digits] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5177), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5175), - [sym__code_span_start] = ACTIONS(5175), - [sym__emphasis_open_star] = ACTIONS(5175), - [sym__emphasis_open_underscore] = ACTIONS(5175), - [sym__strikeout_open] = ACTIONS(5175), - [sym__latex_span_start] = ACTIONS(5175), - [sym__single_quote_open] = ACTIONS(5175), - [sym__single_quote_close] = ACTIONS(5175), - [sym__double_quote_open] = ACTIONS(5175), - [sym__superscript_open] = ACTIONS(5175), - [sym__subscript_open] = ACTIONS(5175), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5175), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5175), - [sym__cite_author_in_text] = ACTIONS(5175), - [sym__cite_suppress_author] = ACTIONS(5175), - [sym__shortcode_open_escaped] = ACTIONS(5175), - [sym__shortcode_open] = ACTIONS(5175), - [sym__unclosed_span] = ACTIONS(5175), - [sym__strong_emphasis_open_star] = ACTIONS(5175), - [sym__strong_emphasis_open_underscore] = ACTIONS(5175), + [sym__backslash_escape] = ACTIONS(4515), + [sym_entity_reference] = ACTIONS(4515), + [sym_numeric_character_reference] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_DQUOTE] = ACTIONS(4515), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_EQ] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_BSLASH] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_BQUOTE] = ACTIONS(4515), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_TILDE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_RPAREN] = ACTIONS(4515), + [sym__newline_token] = ACTIONS(4515), + [aux_sym_insert_token1] = ACTIONS(4515), + [aux_sym_delete_token1] = ACTIONS(4515), + [aux_sym_highlight_token1] = ACTIONS(4515), + [aux_sym_edit_comment_token1] = ACTIONS(4515), + [anon_sym_CARET_LBRACK] = ACTIONS(4515), + [anon_sym_LBRACK_CARET] = ACTIONS(4515), + [sym_uri_autolink] = ACTIONS(4515), + [sym_email_autolink] = ACTIONS(4515), + [sym__whitespace_ge_2] = ACTIONS(4515), + [aux_sym__whitespace_token1] = ACTIONS(4517), + [sym__word_no_digit] = ACTIONS(4515), + [sym__digits] = ACTIONS(4515), + [anon_sym_DASH_DASH] = ACTIONS(4517), + [anon_sym_DASH_DASH_DASH] = ACTIONS(4515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4515), + [sym__code_span_start] = ACTIONS(4515), + [sym__emphasis_open_star] = ACTIONS(4515), + [sym__emphasis_open_underscore] = ACTIONS(4515), + [sym__strikeout_open] = ACTIONS(4515), + [sym__latex_span_start] = ACTIONS(4515), + [sym__single_quote_open] = ACTIONS(4515), + [sym__double_quote_open] = ACTIONS(4515), + [sym__double_quote_close] = ACTIONS(4515), + [sym__superscript_open] = ACTIONS(4515), + [sym__subscript_open] = ACTIONS(4515), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4515), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4515), + [sym__cite_author_in_text] = ACTIONS(4515), + [sym__cite_suppress_author] = ACTIONS(4515), + [sym__shortcode_open_escaped] = ACTIONS(4515), + [sym__shortcode_open] = ACTIONS(4515), + [sym__unclosed_span] = ACTIONS(4515), + [sym__strong_emphasis_open_star] = ACTIONS(4515), + [sym__strong_emphasis_open_underscore] = ACTIONS(4515), }, [STATE(1689)] = { - [sym__backslash_escape] = ACTIONS(5075), - [sym_entity_reference] = ACTIONS(5075), - [sym_numeric_character_reference] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_POUND] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_AMP] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_QMARK] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_BSLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_TILDE] = ACTIONS(5075), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [sym__newline_token] = ACTIONS(5075), - [aux_sym_insert_token1] = ACTIONS(5075), - [aux_sym_insert_token2] = ACTIONS(5075), - [aux_sym_delete_token1] = ACTIONS(5075), - [aux_sym_highlight_token1] = ACTIONS(5075), - [aux_sym_edit_comment_token1] = ACTIONS(5075), - [anon_sym_CARET_LBRACK] = ACTIONS(5075), - [anon_sym_LBRACK_CARET] = ACTIONS(5075), - [sym_uri_autolink] = ACTIONS(5075), - [sym_email_autolink] = ACTIONS(5075), - [sym__whitespace_ge_2] = ACTIONS(5077), - [aux_sym__whitespace_token1] = ACTIONS(5077), - [sym__word_no_digit] = ACTIONS(5075), - [sym__digits] = ACTIONS(5075), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_DASH_DASH_DASH] = ACTIONS(5075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5075), - [sym__code_span_start] = ACTIONS(5075), - [sym__emphasis_open_star] = ACTIONS(5075), - [sym__emphasis_open_underscore] = ACTIONS(5075), - [sym__strikeout_open] = ACTIONS(5075), - [sym__latex_span_start] = ACTIONS(5075), - [sym__single_quote_open] = ACTIONS(5075), - [sym__double_quote_open] = ACTIONS(5075), - [sym__superscript_open] = ACTIONS(5075), - [sym__subscript_open] = ACTIONS(5075), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5075), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5075), - [sym__cite_author_in_text] = ACTIONS(5075), - [sym__cite_suppress_author] = ACTIONS(5075), - [sym__shortcode_open_escaped] = ACTIONS(5075), - [sym__shortcode_open] = ACTIONS(5075), - [sym__unclosed_span] = ACTIONS(5075), - [sym__strong_emphasis_open_star] = ACTIONS(5075), - [sym__strong_emphasis_open_underscore] = ACTIONS(5075), + [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_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__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), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 16, - ACTIONS(5187), 1, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5203), 1, + ACTIONS(4759), 1, anon_sym_RPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - STATE(2086), 1, + STATE(2072), 1, sym_link_destination, - STATE(2119), 1, + STATE(2073), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1695), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + STATE(1771), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -162953,45 +161239,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, [81] = 16, - ACTIONS(5187), 1, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5211), 1, + ACTIONS(4767), 1, anon_sym_RPAREN, - STATE(2136), 1, + STATE(2163), 1, sym_link_destination, - STATE(2137), 1, + STATE(2164), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163018,45 +161304,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, [162] = 16, - ACTIONS(5187), 1, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5213), 1, + ACTIONS(4769), 1, anon_sym_RPAREN, - STATE(2141), 1, + STATE(2273), 1, sym_link_destination, - STATE(2143), 1, + STATE(2277), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1702), 3, + STATE(1700), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163082,47 +161368,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [243] = 15, - ACTIONS(5187), 1, + [243] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5221), 1, + ACTIONS(4747), 1, + anon_sym_LT, + ACTIONS(4751), 1, + anon_sym_DQUOTE, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5223), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5225), 1, - anon_sym_RPAREN, - ACTIONS(5228), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5231), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5234), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5237), 1, - sym__last_token_punctuation, - STATE(1787), 1, - sym__soft_line_break, - ACTIONS(5219), 2, + ACTIONS(4771), 1, + anon_sym_RPAREN, + STATE(2262), 1, + sym_link_destination, + STATE(2263), 1, + sym_link_title, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1744), 2, + STATE(1699), 3, sym__whitespace, - aux_sym_link_title_repeat2, - STATE(1757), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - STATE(1806), 2, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1753), 3, sym_backslash_escape, + sym__link_destination_parenthesis, sym__word, - ACTIONS(5215), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5217), 27, - anon_sym_LT, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -163146,46 +161433,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [322] = 16, - ACTIONS(5187), 1, + [324] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5239), 1, + ACTIONS(4773), 1, anon_sym_RPAREN, - STATE(2151), 1, + STATE(2305), 1, sym_link_destination, - STATE(2178), 1, + STATE(2306), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1696), 3, + STATE(1698), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163211,46 +161498,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [403] = 16, - ACTIONS(5187), 1, + [405] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5241), 1, + ACTIONS(4775), 1, anon_sym_RPAREN, - STATE(2096), 1, + STATE(2179), 1, sym_link_destination, - STATE(2105), 1, + STATE(2180), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1705), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + ACTIONS(4745), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4749), 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, + [486] = 16, + ACTIONS(4743), 1, + sym__backslash_escape, + ACTIONS(4747), 1, + anon_sym_LT, + ACTIONS(4751), 1, + anon_sym_DQUOTE, + ACTIONS(4755), 1, + anon_sym_SQUOTE, + ACTIONS(4757), 1, + anon_sym_LPAREN, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(4763), 1, + sym__whitespace_ge_2, + ACTIONS(4765), 1, + aux_sym__whitespace_token1, + ACTIONS(4777), 1, + anon_sym_RPAREN, + STATE(2183), 1, + sym_link_destination, + STATE(2184), 1, + sym_link_title, + ACTIONS(4753), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1706), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + STATE(1753), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163276,46 +161628,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [484] = 16, - ACTIONS(5187), 1, + [567] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5243), 1, + ACTIONS(4779), 1, anon_sym_RPAREN, - STATE(2132), 1, + STATE(2313), 1, sym_link_destination, - STATE(2142), 1, + STATE(2314), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163341,46 +161693,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [565] = 16, - ACTIONS(5187), 1, + [648] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5245), 1, + ACTIONS(4781), 1, anon_sym_RPAREN, - STATE(2099), 1, + STATE(2316), 1, sym_link_destination, - STATE(2100), 1, + STATE(2317), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1699), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + STATE(1771), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163406,46 +161758,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [646] = 16, - ACTIONS(5187), 1, + [729] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5247), 1, + ACTIONS(4783), 1, anon_sym_RPAREN, - STATE(2102), 1, + STATE(2304), 1, sym_link_destination, - STATE(2103), 1, + STATE(2309), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1700), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + STATE(1771), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163471,46 +161823,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [727] = 16, - ACTIONS(5187), 1, + [810] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5249), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - STATE(2110), 1, + STATE(2076), 1, sym_link_destination, - STATE(2111), 1, + STATE(2077), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163536,46 +161888,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [808] = 16, - ACTIONS(5187), 1, + [891] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5251), 1, + ACTIONS(4787), 1, anon_sym_RPAREN, - STATE(2114), 1, + STATE(2206), 1, sym_link_destination, - STATE(2115), 1, + STATE(2207), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1772), 3, + STATE(1703), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + STATE(1753), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163601,46 +161953,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [889] = 16, - ACTIONS(5187), 1, + [972] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5253), 1, + ACTIONS(4789), 1, anon_sym_RPAREN, - STATE(2083), 1, + STATE(2209), 1, sym_link_destination, - STATE(2131), 1, + STATE(2210), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1772), 3, + STATE(1704), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + STATE(1753), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163666,46 +162018,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [970] = 16, - ACTIONS(5187), 1, + [1053] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5255), 1, + ACTIONS(4791), 1, anon_sym_RPAREN, - STATE(2089), 1, + STATE(2217), 1, sym_link_destination, - STATE(2206), 1, + STATE(2218), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163731,46 +162083,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1051] = 16, - ACTIONS(5187), 1, + [1134] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5257), 1, + ACTIONS(4793), 1, anon_sym_RPAREN, - STATE(2093), 1, + STATE(2221), 1, sym_link_destination, - STATE(2095), 1, + STATE(2222), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1709), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + STATE(1771), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163796,46 +162148,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1132] = 16, - ACTIONS(5187), 1, + [1215] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5259), 1, + ACTIONS(4795), 1, anon_sym_RPAREN, - STATE(2104), 1, + STATE(2191), 1, sym_link_destination, - STATE(2130), 1, + STATE(2192), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1712), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + STATE(1771), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163861,46 +162213,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1213] = 16, - ACTIONS(5187), 1, + [1296] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5261), 1, + ACTIONS(4797), 1, anon_sym_RPAREN, - STATE(2160), 1, + STATE(2194), 1, sym_link_destination, - STATE(2161), 1, + STATE(2197), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1707), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + STATE(1771), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163926,46 +162278,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1294] = 16, - ACTIONS(5187), 1, + [1377] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5263), 1, + ACTIONS(4799), 1, anon_sym_RPAREN, - STATE(2163), 1, + STATE(2300), 1, sym_link_destination, - STATE(2164), 1, + STATE(2301), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1708), 3, + STATE(1709), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -163991,46 +162343,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1375] = 16, - ACTIONS(5187), 1, + [1458] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5265), 1, + ACTIONS(4801), 1, anon_sym_RPAREN, - STATE(2171), 1, + STATE(2307), 1, sym_link_destination, - STATE(2172), 1, + STATE(2308), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1772), 3, + STATE(1710), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + STATE(1753), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164056,46 +162408,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1456] = 16, - ACTIONS(5187), 1, + [1539] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5267), 1, + ACTIONS(4803), 1, anon_sym_RPAREN, - STATE(2175), 1, - sym_link_destination, - STATE(2176), 1, + STATE(2233), 1, sym_link_title, - ACTIONS(5197), 2, + STATE(2331), 1, + sym_link_destination, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164121,46 +162473,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1537] = 16, - ACTIONS(5187), 1, + [1620] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5269), 1, + ACTIONS(4805), 1, anon_sym_RPAREN, - STATE(2139), 1, + STATE(2057), 1, sym_link_destination, - STATE(2140), 1, + STATE(2058), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164186,46 +162538,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1618] = 16, - ACTIONS(5187), 1, + [1701] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5271), 1, + ACTIONS(4807), 1, anon_sym_RPAREN, - STATE(2235), 1, + STATE(2270), 1, sym_link_destination, - STATE(2246), 1, + STATE(2281), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, STATE(1713), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164251,46 +162603,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1699] = 16, - ACTIONS(5187), 1, + [1782] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5273), 1, + ACTIONS(4809), 1, anon_sym_RPAREN, - STATE(2251), 1, + STATE(2282), 1, sym_link_destination, - STATE(2253), 1, + STATE(2284), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1714), 3, + STATE(1690), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164316,46 +162668,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1780] = 16, - ACTIONS(5187), 1, + [1863] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5275), 1, + ACTIONS(4811), 1, anon_sym_RPAREN, - STATE(2146), 1, + STATE(2059), 1, sym_link_destination, - STATE(2147), 1, + STATE(2060), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164381,46 +162733,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1861] = 16, - ACTIONS(5187), 1, + [1944] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5277), 1, + ACTIONS(4813), 1, anon_sym_RPAREN, - STATE(2274), 1, + STATE(2266), 1, sym_link_destination, - STATE(2275), 1, + STATE(2267), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1772), 3, + STATE(1716), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + STATE(1753), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164446,46 +162798,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1942] = 16, - ACTIONS(5187), 1, + [2025] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5279), 1, + ACTIONS(4815), 1, anon_sym_RPAREN, - STATE(2288), 1, + STATE(2268), 1, sym_link_destination, - STATE(2299), 1, + STATE(2269), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1772), 3, + STATE(1717), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + STATE(1753), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164511,46 +162863,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2023] = 16, - ACTIONS(5187), 1, + [2106] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5281), 1, + ACTIONS(4817), 1, anon_sym_RPAREN, - STATE(2217), 1, + STATE(2275), 1, sym_link_destination, - STATE(2218), 1, + STATE(2276), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1716), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + STATE(1771), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164576,46 +162928,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2104] = 16, - ACTIONS(5187), 1, + [2187] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5283), 1, + ACTIONS(4819), 1, anon_sym_RPAREN, - STATE(2226), 1, + STATE(2279), 1, sym_link_destination, - STATE(2227), 1, + STATE(2280), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164641,51 +162993,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2185] = 16, - ACTIONS(5187), 1, + [2268] = 15, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, - anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4825), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, - anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4829), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4831), 1, + anon_sym_RPAREN, + ACTIONS(4834), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4837), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4840), 1, aux_sym__whitespace_token1, - ACTIONS(5285), 1, - anon_sym_RPAREN, - STATE(2230), 1, - sym_link_destination, - STATE(2231), 1, - sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4843), 1, + sym__last_token_punctuation, + STATE(1788), 1, + sym__soft_line_break, + ACTIONS(4827), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, - sym_backslash_escape, + STATE(1742), 2, + sym__whitespace, + aux_sym_link_title_repeat1, + STATE(1756), 2, sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(1808), 2, + sym_backslash_escape, sym__word, - STATE(1772), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4821), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4823), 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, @@ -164706,46 +163057,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2266] = 16, - ACTIONS(5187), 1, + [2347] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5287), 1, + ACTIONS(4845), 1, anon_sym_RPAREN, - STATE(2154), 1, + STATE(2102), 1, sym_link_destination, - STATE(2155), 1, + STATE(2103), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1720), 3, + STATE(1721), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164771,46 +163122,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2347] = 16, - ACTIONS(5187), 1, + [2428] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5289), 1, + ACTIONS(4847), 1, anon_sym_RPAREN, - STATE(2159), 1, + STATE(2105), 1, sym_link_destination, - STATE(2166), 1, + STATE(2106), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1721), 3, + STATE(1722), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164836,46 +163187,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2428] = 16, - ACTIONS(5187), 1, + [2509] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5291), 1, + ACTIONS(4849), 1, anon_sym_RPAREN, - STATE(2183), 1, + STATE(2113), 1, sym_link_destination, - STATE(2191), 1, + STATE(2114), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164901,46 +163252,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2509] = 16, - ACTIONS(5187), 1, + [2590] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5293), 1, + ACTIONS(4851), 1, anon_sym_RPAREN, - STATE(2203), 1, + STATE(2117), 1, sym_link_destination, - STATE(2204), 1, + STATE(2118), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -164966,48 +163317,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2590] = 16, - ACTIONS(5187), 1, + [2671] = 15, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, - anon_sym_LT, - ACTIONS(5195), 1, - anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4825), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, - anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4834), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4837), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4840), 1, aux_sym__whitespace_token1, - ACTIONS(5295), 1, + ACTIONS(4843), 1, + sym__last_token_punctuation, + ACTIONS(4859), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_RPAREN, - STATE(2273), 1, - sym_link_destination, - STATE(2285), 1, - sym_link_title, - ACTIONS(5197), 2, + STATE(1795), 1, + sym__soft_line_break, + ACTIONS(4857), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1726), 3, + STATE(1741), 2, sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1756), 3, - sym_backslash_escape, + aux_sym_link_title_repeat2, + STATE(1756), 2, sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(1802), 2, + sym_backslash_escape, sym__word, - ACTIONS(5189), 4, + ACTIONS(4853), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4855), 27, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -165031,46 +163381,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2671] = 16, - ACTIONS(5187), 1, + [2750] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5297), 1, + ACTIONS(4864), 1, anon_sym_RPAREN, - STATE(2301), 1, + STATE(2246), 1, sym_link_destination, - STATE(2302), 1, + STATE(2258), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1729), 3, + STATE(1737), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165096,46 +163446,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2752] = 16, - ACTIONS(5187), 1, + [2831] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5299), 1, + ACTIONS(4866), 1, anon_sym_RPAREN, - STATE(2269), 1, + STATE(2134), 1, sym_link_destination, - STATE(2270), 1, + STATE(2135), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1727), 3, + STATE(1729), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165161,46 +163511,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2833] = 16, - ACTIONS(5187), 1, + [2912] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5301), 1, + ACTIONS(4868), 1, anon_sym_RPAREN, - STATE(2271), 1, + STATE(2142), 1, sym_link_destination, - STATE(2272), 1, + STATE(2144), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1728), 3, + STATE(1730), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165226,46 +163576,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2914] = 16, - ACTIONS(5187), 1, + [2993] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5303), 1, + ACTIONS(4870), 1, anon_sym_RPAREN, - STATE(2309), 1, + STATE(2165), 1, sym_link_destination, - STATE(2310), 1, + STATE(2295), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1772), 3, + STATE(1728), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + STATE(1753), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165291,46 +163641,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2995] = 16, - ACTIONS(5187), 1, + [3074] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5305), 1, + ACTIONS(4872), 1, anon_sym_RPAREN, - STATE(2279), 1, + STATE(2249), 1, sym_link_destination, - STATE(2280), 1, + STATE(2251), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165356,46 +163706,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3076] = 16, - ACTIONS(5187), 1, + [3155] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5307), 1, + ACTIONS(4874), 1, anon_sym_RPAREN, - STATE(2283), 1, + STATE(2226), 1, sym_link_destination, - STATE(2284), 1, + STATE(2237), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165421,46 +163771,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3157] = 16, - ACTIONS(5187), 1, + [3236] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5309), 1, + ACTIONS(4876), 1, anon_sym_RPAREN, - STATE(2313), 1, + STATE(2254), 1, sym_link_destination, - STATE(2314), 1, + STATE(2256), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165486,46 +163836,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3238] = 16, - ACTIONS(5187), 1, + [3317] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5311), 1, + ACTIONS(4878), 1, anon_sym_RPAREN, - STATE(2094), 1, + STATE(2148), 1, sym_link_destination, - STATE(2098), 1, + STATE(2151), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1701), 3, + STATE(1733), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165551,46 +163901,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3319] = 16, - ACTIONS(5187), 1, + [3398] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5313), 1, + ACTIONS(4880), 1, anon_sym_RPAREN, - STATE(2300), 1, + STATE(2155), 1, sym_link_destination, - STATE(2303), 1, + STATE(2156), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1735), 3, + STATE(1734), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165616,46 +163966,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3400] = 16, - ACTIONS(5187), 1, + [3479] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5315), 1, + ACTIONS(4882), 1, anon_sym_RPAREN, - STATE(2305), 1, + STATE(2181), 1, sym_link_destination, - STATE(2307), 1, + STATE(2182), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1736), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + STATE(1771), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165681,46 +164031,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3481] = 16, - ACTIONS(5187), 1, + [3560] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5317), 1, + ACTIONS(4884), 1, anon_sym_RPAREN, - STATE(2078), 1, + STATE(2187), 1, sym_link_destination, - STATE(2080), 1, + STATE(2189), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1737), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + STATE(1771), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165746,46 +164096,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3562] = 16, - ACTIONS(5187), 1, + [3641] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5319), 1, + ACTIONS(4886), 1, anon_sym_RPAREN, - STATE(2085), 1, + STATE(2149), 1, sym_link_destination, - STATE(2087), 1, + STATE(2150), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1691), 3, + STATE(1738), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165811,46 +164161,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3643] = 16, - ACTIONS(5187), 1, + [3722] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5321), 1, + ACTIONS(4888), 1, anon_sym_RPAREN, - STATE(2321), 1, + STATE(2152), 1, sym_link_destination, - STATE(2330), 1, + STATE(2153), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - STATE(1772), 3, + STATE(1691), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + STATE(1753), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165876,46 +164226,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3724] = 16, - ACTIONS(5187), 1, + [3803] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5323), 1, + ACTIONS(4890), 1, anon_sym_RPAREN, - STATE(2055), 1, + STATE(2260), 1, sym_link_destination, - STATE(2056), 1, + STATE(2261), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -165941,46 +164291,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3805] = 16, - ACTIONS(5187), 1, + [3884] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, + ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(5195), 1, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5199), 1, + ACTIONS(4755), 1, anon_sym_SQUOTE, - ACTIONS(5201), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5325), 1, + ACTIONS(4892), 1, anon_sym_RPAREN, - STATE(2112), 1, + STATE(2160), 1, sym_link_destination, - STATE(2116), 1, + STATE(2161), 1, sym_link_title, - ACTIONS(5197), 2, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1756), 3, + STATE(1753), 3, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, - STATE(1772), 3, + STATE(1771), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - ACTIONS(5189), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4749), 25, anon_sym_GT, anon_sym_BANG, anon_sym_POUND, @@ -166006,50 +164356,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3886] = 15, - ACTIONS(5187), 1, + [3965] = 16, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5221), 1, + ACTIONS(4747), 1, + anon_sym_LT, + ACTIONS(4751), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(4755), 1, + anon_sym_SQUOTE, + ACTIONS(4757), 1, + anon_sym_LPAREN, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5231), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5234), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5237), 1, - sym__last_token_punctuation, - ACTIONS(5333), 1, - anon_sym_LPAREN, - ACTIONS(5335), 1, + ACTIONS(4894), 1, anon_sym_RPAREN, - STATE(1799), 1, - sym__soft_line_break, - ACTIONS(5331), 2, + STATE(2302), 1, + sym_link_destination, + STATE(2303), 1, + sym_link_title, + ACTIONS(4753), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1747), 2, + STATE(1697), 3, sym__whitespace, - aux_sym_link_title_repeat1, - STATE(1757), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - STATE(1820), 2, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(1753), 3, sym_backslash_escape, + sym__link_destination_parenthesis, sym__word, - ACTIONS(5327), 4, + ACTIONS(4745), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5329), 27, - anon_sym_LT, + ACTIONS(4749), 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, @@ -166070,51 +164421,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3965] = 16, - ACTIONS(5187), 1, + [4046] = 13, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5191), 1, - anon_sym_LT, - ACTIONS(5195), 1, - anon_sym_DQUOTE, - ACTIONS(5199), 1, - anon_sym_SQUOTE, - ACTIONS(5201), 1, - anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5338), 1, + ACTIONS(4902), 1, + anon_sym_LPAREN, + ACTIONS(4904), 1, anon_sym_RPAREN, - STATE(2219), 1, - sym_link_destination, - STATE(2220), 1, - sym_link_title, - ACTIONS(5197), 2, + STATE(1805), 1, + sym__soft_line_break, + ACTIONS(4900), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1717), 3, + STATE(1752), 2, sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - STATE(1756), 3, - sym_backslash_escape, + aux_sym_link_title_repeat3, + STATE(1789), 2, sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(1820), 2, + sym_backslash_escape, sym__word, - ACTIONS(5189), 4, + ACTIONS(4896), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5193), 25, + ACTIONS(4898), 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, @@ -166135,39 +164482,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4046] = 13, - ACTIONS(5187), 1, + [4120] = 10, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5346), 1, - anon_sym_LPAREN, - ACTIONS(5348), 1, - anon_sym_RPAREN, - STATE(1807), 1, + ACTIONS(4912), 1, + anon_sym_SQUOTE, + STATE(1795), 1, sym__soft_line_break, - ACTIONS(5344), 2, + ACTIONS(4910), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1753), 2, - sym__whitespace, - aux_sym_link_title_repeat3, - STATE(1789), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - STATE(1805), 2, - sym_backslash_escape, - sym__word, - ACTIONS(5340), 4, + ACTIONS(4906), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5342), 28, + STATE(1744), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(4908), 29, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -166175,7 +164516,6 @@ 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, @@ -166196,33 +164536,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4120] = 10, - ACTIONS(5187), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4186] = 10, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5354), 1, + ACTIONS(4912), 1, anon_sym_DQUOTE, - STATE(1799), 1, + STATE(1788), 1, sym__soft_line_break, - ACTIONS(5356), 2, + ACTIONS(4918), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5350), 4, + ACTIONS(4914), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1747), 4, + STATE(1749), 4, sym_backslash_escape, sym__whitespace, sym__word, aux_sym_link_title_repeat1, - ACTIONS(5352), 29, + ACTIONS(4916), 29, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -166252,23 +164594,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4186] = 10, - ACTIONS(5187), 1, + [4252] = 10, + ACTIONS(4920), 1, sym__backslash_escape, - ACTIONS(5205), 1, + ACTIONS(4932), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_RPAREN, + ACTIONS(4940), 1, + aux_sym__whitespace_token1, + ACTIONS(4942), 1, + sym__last_token_punctuation, + ACTIONS(4929), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4938), 2, sym__newline_token, - ACTIONS(5207), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, - aux_sym__whitespace_token1, - ACTIONS(5354), 1, + ACTIONS(4923), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(1789), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + 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, - STATE(1787), 1, + 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, + [4318] = 10, + ACTIONS(4944), 1, + sym__backslash_escape, + ACTIONS(4956), 1, + anon_sym_SQUOTE, + ACTIONS(4958), 1, + sym__newline_token, + ACTIONS(4961), 1, + sym__whitespace_ge_2, + ACTIONS(4964), 1, + aux_sym__whitespace_token1, + STATE(1795), 1, sym__soft_line_break, - ACTIONS(5362), 2, + ACTIONS(4953), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5358), 4, + ACTIONS(4947), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, @@ -166278,7 +164676,7 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym__word, aux_sym_link_title_repeat2, - ACTIONS(5360), 29, + ACTIONS(4950), 29, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -166308,24 +164706,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4252] = 10, - ACTIONS(5364), 1, + [4384] = 9, + ACTIONS(4743), 1, + sym__backslash_escape, + ACTIONS(4843), 1, + sym__last_token_punctuation, + ACTIONS(4902), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + aux_sym__whitespace_token1, + ACTIONS(4971), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4973), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(4967), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(1756), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4969), 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, + [4448] = 10, + ACTIONS(4977), 1, sym__backslash_escape, - ACTIONS(5376), 1, + ACTIONS(4989), 1, anon_sym_LPAREN, - ACTIONS(5379), 1, + ACTIONS(4992), 1, anon_sym_RPAREN, - ACTIONS(5384), 1, + ACTIONS(4997), 1, aux_sym__whitespace_token1, - ACTIONS(5386), 1, + ACTIONS(4999), 1, sym__last_token_punctuation, - ACTIONS(5373), 2, + ACTIONS(4986), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5382), 2, + ACTIONS(4995), 2, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(5367), 4, + ACTIONS(4980), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, @@ -166335,7 +164788,7 @@ static const uint16_t ts_small_parse_table[] = { sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(5370), 28, + ACTIONS(4983), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -166364,40 +164817,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4318] = 10, - ACTIONS(5187), 1, + [4514] = 10, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5207), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5390), 1, - anon_sym_SQUOTE, - STATE(1787), 1, + ACTIONS(5003), 1, + anon_sym_DQUOTE, + STATE(1788), 1, sym__soft_line_break, - ACTIONS(5362), 2, + ACTIONS(4918), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5388), 4, + ACTIONS(5001), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1745), 4, + STATE(1742), 4, sym_backslash_escape, sym__whitespace, sym__word, - aux_sym_link_title_repeat2, - ACTIONS(5360), 29, + aux_sym_link_title_repeat1, + ACTIONS(4916), 29, 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, @@ -166420,33 +164873,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4384] = 10, - ACTIONS(5392), 1, + [4580] = 10, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5404), 1, - anon_sym_SQUOTE, - ACTIONS(5406), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5409), 1, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5412), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - STATE(1787), 1, + ACTIONS(5003), 1, + anon_sym_SQUOTE, + STATE(1795), 1, sym__soft_line_break, - ACTIONS(5401), 2, + ACTIONS(4910), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5395), 4, + ACTIONS(5005), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1745), 4, + STATE(1741), 4, sym_backslash_escape, sym__whitespace, sym__word, aux_sym_link_title_repeat2, - ACTIONS(5398), 29, + ACTIONS(4908), 29, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -166476,33 +164929,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4450] = 10, - ACTIONS(5415), 1, + [4646] = 10, + ACTIONS(5007), 1, sym__backslash_escape, - ACTIONS(5424), 1, + ACTIONS(5016), 1, anon_sym_DQUOTE, - ACTIONS(5429), 1, + ACTIONS(5021), 1, sym__newline_token, - ACTIONS(5432), 1, + ACTIONS(5024), 1, sym__whitespace_ge_2, - ACTIONS(5435), 1, + ACTIONS(5027), 1, aux_sym__whitespace_token1, - STATE(1799), 1, + STATE(1788), 1, sym__soft_line_break, - ACTIONS(5426), 2, + ACTIONS(5018), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5418), 4, + ACTIONS(5010), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1746), 4, + STATE(1749), 4, sym_backslash_escape, sym__whitespace, sym__word, aux_sym_link_title_repeat1, - ACTIONS(5421), 29, + ACTIONS(5013), 29, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -166532,36 +164985,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [4516] = 10, - ACTIONS(5187), 1, + [4712] = 8, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5205), 1, + ACTIONS(4902), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + aux_sym__whitespace_token1, + ACTIONS(4971), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5032), 3, + anon_sym_RPAREN, sym__newline_token, - ACTIONS(5207), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, - aux_sym__whitespace_token1, - ACTIONS(5390), 1, + ACTIONS(5030), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(1754), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4969), 28, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, anon_sym_DQUOTE, - STATE(1799), 1, + 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(4743), 1, + sym__backslash_escape, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(4763), 1, + sym__whitespace_ge_2, + ACTIONS(4765), 1, + aux_sym__whitespace_token1, + ACTIONS(5003), 1, + anon_sym_RPAREN, + STATE(1805), 1, sym__soft_line_break, - ACTIONS(5356), 2, + ACTIONS(5040), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5438), 4, + ACTIONS(5036), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1746), 4, + STATE(1752), 4, sym_backslash_escape, sym__whitespace, sym__word, - aux_sym_link_title_repeat1, - ACTIONS(5352), 29, + aux_sym_link_title_repeat3, + ACTIONS(5038), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -166586,91 +165093,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [4582] = 10, - ACTIONS(5440), 1, + [4838] = 10, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5452), 1, - anon_sym_LPAREN, - ACTIONS(5455), 1, - anon_sym_RPAREN, - ACTIONS(5460), 1, - aux_sym__whitespace_token1, - ACTIONS(5462), 1, - sym__last_token_punctuation, - ACTIONS(5449), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5458), 2, + ACTIONS(4761), 1, sym__newline_token, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5443), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(1789), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5446), 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, - [4648] = 9, - ACTIONS(5187), 1, - sym__backslash_escape, - ACTIONS(5237), 1, - sym__last_token_punctuation, - ACTIONS(5346), 1, - anon_sym_LPAREN, - ACTIONS(5472), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5468), 2, + ACTIONS(4912), 1, + anon_sym_RPAREN, + STATE(1805), 1, + sym__soft_line_break, + ACTIONS(5040), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5470), 3, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(5464), 4, + ACTIONS(5042), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, STATE(1757), 4, sym_backslash_escape, - sym__link_destination_parenthesis, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5466), 28, + aux_sym_link_title_repeat3, + ACTIONS(5038), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -166699,86 +165148,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4712] = 8, - ACTIONS(5474), 1, + [4903] = 8, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5486), 1, + ACTIONS(4902), 1, anon_sym_LPAREN, - ACTIONS(5491), 1, + ACTIONS(4975), 1, aux_sym__whitespace_token1, - ACTIONS(5483), 2, + ACTIONS(4971), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5489), 3, + ACTIONS(4973), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(5477), 4, + ACTIONS(4967), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1750), 4, + STATE(1756), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(5480), 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(5493), 1, - sym__backslash_escape, - ACTIONS(5505), 1, - anon_sym_RPAREN, - ACTIONS(5507), 1, - sym__newline_token, - ACTIONS(5510), 1, - sym__whitespace_ge_2, - ACTIONS(5513), 1, - aux_sym__whitespace_token1, - STATE(1807), 1, - sym__soft_line_break, - ACTIONS(5502), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5496), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(1751), 4, - sym_backslash_escape, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat3, - ACTIONS(5499), 28, + ACTIONS(4969), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -166807,31 +165201,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4838] = 8, - ACTIONS(5187), 1, + [4964] = 8, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5346), 1, + ACTIONS(4902), 1, anon_sym_LPAREN, - ACTIONS(5520), 1, + ACTIONS(5048), 1, aux_sym__whitespace_token1, - ACTIONS(5468), 2, + ACTIONS(4971), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5518), 3, + ACTIONS(5046), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(5516), 4, + ACTIONS(5044), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1750), 4, + STATE(1755), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(5466), 28, + ACTIONS(4969), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -166860,141 +165254,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [4899] = 10, - ACTIONS(5187), 1, + [5025] = 8, + ACTIONS(5050), 1, sym__backslash_escape, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(5207), 1, - sym__whitespace_ge_2, - ACTIONS(5209), 1, - aux_sym__whitespace_token1, - ACTIONS(5390), 1, - anon_sym_RPAREN, - STATE(1807), 1, - sym__soft_line_break, - ACTIONS(5526), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5522), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(1751), 4, - sym_backslash_escape, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat3, - ACTIONS(5524), 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, - [4964] = 10, - ACTIONS(5187), 1, - sym__backslash_escape, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(5207), 1, - sym__whitespace_ge_2, - ACTIONS(5209), 1, - aux_sym__whitespace_token1, - ACTIONS(5354), 1, - anon_sym_RPAREN, - STATE(1807), 1, - sym__soft_line_break, - ACTIONS(5526), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5528), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(1753), 4, - sym_backslash_escape, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat3, - ACTIONS(5524), 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, - [5029] = 8, - ACTIONS(5187), 1, - sym__backslash_escape, - ACTIONS(5346), 1, + ACTIONS(5062), 1, anon_sym_LPAREN, - ACTIONS(5534), 1, + ACTIONS(5067), 1, aux_sym__whitespace_token1, - ACTIONS(5468), 2, + ACTIONS(5059), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5532), 3, + ACTIONS(5065), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(5530), 4, + ACTIONS(5053), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1752), 4, + STATE(1755), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(5466), 28, + ACTIONS(5056), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167023,31 +165307,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [5090] = 8, - ACTIONS(5187), 1, + [5086] = 8, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5346), 1, + ACTIONS(4902), 1, anon_sym_LPAREN, - ACTIONS(5472), 1, + ACTIONS(5034), 1, aux_sym__whitespace_token1, - ACTIONS(5468), 2, + ACTIONS(4971), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5470), 3, + ACTIONS(5032), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(5464), 4, + ACTIONS(5044), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1757), 4, + STATE(1755), 4, sym_backslash_escape, sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(5466), 28, + ACTIONS(4969), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167076,31 +165360,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [5151] = 8, - ACTIONS(5187), 1, + [5147] = 10, + ACTIONS(5069), 1, sym__backslash_escape, - ACTIONS(5346), 1, - anon_sym_LPAREN, - ACTIONS(5534), 1, - aux_sym__whitespace_token1, - ACTIONS(5468), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5532), 3, + ACTIONS(5081), 1, anon_sym_RPAREN, + ACTIONS(5083), 1, sym__newline_token, + ACTIONS(5086), 1, sym__whitespace_ge_2, - ACTIONS(5516), 4, + ACTIONS(5089), 1, + aux_sym__whitespace_token1, + STATE(1805), 1, + sym__soft_line_break, + ACTIONS(5078), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5072), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1750), 4, + STATE(1757), 4, sym_backslash_escape, - sym__link_destination_parenthesis, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5466), 28, + aux_sym_link_title_repeat3, + ACTIONS(5075), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167130,34 +165416,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, [5212] = 8, - ACTIONS(5187), 1, - sym__backslash_escape, - ACTIONS(5207), 1, + ACTIONS(5094), 1, + sym__newline_token, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5538), 1, - anon_sym_GT, - ACTIONS(5542), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5536), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5102), 1, + sym__code_span_close, + STATE(1772), 1, + aux_sym_code_span_repeat1, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, - STATE(1782), 5, - sym_backslash_escape, - sym__text_no_angle, + STATE(1832), 4, sym__whitespace, sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(5540), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5092), 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, @@ -167171,6 +165456,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__, @@ -167182,17 +165468,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [5272] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5554), 1, + ACTIONS(5104), 1, sym__code_span_close, - STATE(1767), 1, + STATE(1765), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -167200,7 +165486,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167234,33 +165520,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [5332] = 8, - ACTIONS(5546), 1, - sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(4743), 1, + sym__backslash_escape, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5556), 1, - sym__code_span_close, - STATE(1783), 1, - aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5112), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5106), 4, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1832), 4, + STATE(1764), 5, + sym_backslash_escape, + sym__text_no_angle, sym__whitespace, sym__word, - sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5544), 32, - anon_sym_LT, - anon_sym_GT, + aux_sym_link_destination_repeat1, + ACTIONS(5110), 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, @@ -167274,7 +165561,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__, @@ -167286,17 +165572,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [5392] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5558), 1, + ACTIONS(5114), 1, sym__code_span_close, - STATE(1783), 1, + STATE(1772), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -167304,7 +165590,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167338,17 +165624,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [5452] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5560), 1, + ACTIONS(5116), 1, sym__code_span_close, - STATE(1769), 1, + STATE(1772), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -167356,7 +165642,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167390,17 +165676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [5512] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5562), 1, + ACTIONS(5118), 1, sym__code_span_close, - STATE(1765), 1, + STATE(1774), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -167408,7 +165694,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167442,33 +165728,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [5572] = 8, - ACTIONS(5546), 1, - sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(4743), 1, + sym__backslash_escape, + ACTIONS(4763), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(4765), 1, aux_sym__whitespace_token1, - ACTIONS(5564), 1, - sym__code_span_close, - STATE(1783), 1, - aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5122), 1, + anon_sym_GT, + ACTIONS(5112), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5120), 4, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1832), 4, + STATE(1780), 5, + sym_backslash_escape, + sym__text_no_angle, sym__whitespace, sym__word, - sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5544), 32, - anon_sym_LT, - anon_sym_GT, + aux_sym_link_destination_repeat1, + ACTIONS(5110), 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, @@ -167482,7 +165769,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__, @@ -167494,17 +165780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [5632] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5566), 1, + ACTIONS(5124), 1, sym__code_span_close, - STATE(1783), 1, + STATE(1772), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -167512,7 +165798,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167546,17 +165832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [5692] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5568), 1, + ACTIONS(5126), 1, sym__code_span_close, - STATE(1783), 1, + STATE(1772), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -167564,7 +165850,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167598,17 +165884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [5752] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5570), 1, + ACTIONS(5128), 1, sym__code_span_close, - STATE(1783), 1, + STATE(1772), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -167616,7 +165902,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167650,17 +165936,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [5812] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5572), 1, + ACTIONS(5130), 1, sym__code_span_close, - STATE(1783), 1, + STATE(1778), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -167668,7 +165954,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167702,17 +165988,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [5872] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5574), 1, + ACTIONS(5132), 1, sym__code_span_close, - STATE(1783), 1, + STATE(1776), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -167720,7 +166006,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167754,17 +166040,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [5932] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5576), 1, + ACTIONS(5134), 1, sym__code_span_close, - STATE(1775), 1, + STATE(1772), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -167772,7 +166058,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167805,26 +166091,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [5992] = 8, - ACTIONS(5546), 1, + [5992] = 6, + ACTIONS(5140), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5143), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5146), 1, aux_sym__whitespace_token1, - ACTIONS(5578), 1, - sym__code_span_close, - STATE(1784), 1, - aux_sym_code_span_repeat1, - ACTIONS(5552), 2, - sym__word_no_digit, - sym__digits, - STATE(1832), 4, + ACTIONS(5138), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1771), 3, sym__whitespace, - sym__word, sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5544), 32, + aux_sym_inline_link_repeat1, + ACTIONS(5136), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167832,7 +166116,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, @@ -167846,7 +166129,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__, @@ -167857,24 +166139,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6052] = 6, - ACTIONS(5584), 1, + sym__word_no_digit, + sym__digits, + [6048] = 8, + ACTIONS(5152), 1, sym__newline_token, - ACTIONS(5587), 1, + ACTIONS(5155), 1, sym__whitespace_ge_2, - ACTIONS(5590), 1, + ACTIONS(5158), 1, aux_sym__whitespace_token1, - ACTIONS(5582), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1772), 3, + ACTIONS(5164), 1, + sym__code_span_close, + STATE(1772), 1, + aux_sym_code_span_repeat1, + ACTIONS(5161), 2, + sym__word_no_digit, + sym__digits, + STATE(1832), 4, sym__whitespace, + sym__word, sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(5580), 35, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + sym__code_span_text_base, + ACTIONS(5149), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167882,6 +166168,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, @@ -167895,6 +166182,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__, @@ -167905,20 +166193,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - sym__word_no_digit, - sym__digits, [6108] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5593), 1, + ACTIONS(5166), 1, sym__code_span_close, - STATE(1785), 1, + STATE(1775), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -167926,7 +166212,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -167960,34 +166246,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6168] = 8, - ACTIONS(5595), 1, - sym__backslash_escape, - ACTIONS(5601), 1, - anon_sym_GT, - ACTIONS(5609), 1, + ACTIONS(5094), 1, + sym__newline_token, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5612), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5606), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5598), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5168), 1, + sym__code_span_close, + STATE(1772), 1, + aux_sym_code_span_repeat1, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, - STATE(1774), 5, - sym_backslash_escape, - sym__text_no_angle, + STATE(1832), 4, sym__whitespace, sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(5603), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5092), 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, @@ -168001,6 +166286,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__, @@ -168012,17 +166298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6228] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5615), 1, + ACTIONS(5170), 1, sym__code_span_close, - STATE(1783), 1, + STATE(1772), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -168030,7 +166316,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -168064,17 +166350,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6288] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5617), 1, + ACTIONS(5172), 1, sym__code_span_close, - STATE(1783), 1, + STATE(1772), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -168082,7 +166368,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -168116,17 +166402,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6348] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5619), 1, + ACTIONS(5174), 1, sym__code_span_close, - STATE(1761), 1, + STATE(1767), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -168134,7 +166420,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -168168,17 +166454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6408] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5621), 1, + ACTIONS(5176), 1, sym__code_span_close, - STATE(1760), 1, + STATE(1772), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -168186,7 +166472,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -168220,17 +166506,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6468] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5623), 1, + ACTIONS(5178), 1, sym__code_span_close, - STATE(1776), 1, + STATE(1761), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -168238,7 +166524,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -168272,33 +166558,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6528] = 8, - ACTIONS(5546), 1, - sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5180), 1, + sym__backslash_escape, + ACTIONS(5186), 1, + anon_sym_GT, + ACTIONS(5194), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5197), 1, aux_sym__whitespace_token1, - ACTIONS(5625), 1, - sym__code_span_close, - STATE(1766), 1, - aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5191), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5183), 4, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1832), 4, + STATE(1780), 5, + sym_backslash_escape, + sym__text_no_angle, sym__whitespace, sym__word, - sym__soft_line_break, - sym__code_span_text_base, - ACTIONS(5544), 32, - anon_sym_LT, - anon_sym_GT, + aux_sym_link_destination_repeat1, + ACTIONS(5188), 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, @@ -168312,7 +166599,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__, @@ -168324,17 +166610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6588] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5627), 1, + ACTIONS(5200), 1, sym__code_span_close, - STATE(1764), 1, + STATE(1766), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -168342,7 +166628,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -168376,34 +166662,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6648] = 8, - ACTIONS(5187), 1, - sym__backslash_escape, - ACTIONS(5207), 1, + ACTIONS(5094), 1, + sym__newline_token, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5209), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5631), 1, - anon_sym_GT, - ACTIONS(5542), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5629), 4, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5202), 1, + sym__code_span_close, + STATE(1772), 1, + aux_sym_code_span_repeat1, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, - STATE(1774), 5, - sym_backslash_escape, - sym__text_no_angle, + STATE(1832), 4, sym__whitespace, sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(5540), 28, + sym__soft_line_break, + sym__code_span_text_base, + ACTIONS(5092), 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, @@ -168417,6 +166702,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__, @@ -168428,17 +166714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6708] = 8, - ACTIONS(5636), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5639), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5642), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5648), 1, + ACTIONS(5204), 1, sym__code_span_close, - STATE(1783), 1, + STATE(1782), 1, aux_sym_code_span_repeat1, - ACTIONS(5645), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -168446,7 +166732,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5633), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -168480,17 +166766,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6768] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5650), 1, + ACTIONS(5206), 1, sym__code_span_close, - STATE(1783), 1, + STATE(1770), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -168498,7 +166784,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -168532,17 +166818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6828] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5652), 1, + ACTIONS(5208), 1, sym__code_span_close, - STATE(1783), 1, + STATE(1762), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -168550,7 +166836,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -168584,17 +166870,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, [6888] = 8, - ACTIONS(5546), 1, + ACTIONS(5094), 1, sym__newline_token, - ACTIONS(5548), 1, + ACTIONS(5096), 1, sym__whitespace_ge_2, - ACTIONS(5550), 1, + ACTIONS(5098), 1, aux_sym__whitespace_token1, - ACTIONS(5654), 1, + ACTIONS(5210), 1, sym__code_span_close, - STATE(1768), 1, + STATE(1758), 1, aux_sym_code_span_repeat1, - ACTIONS(5552), 2, + ACTIONS(5100), 2, sym__word_no_digit, sym__digits, STATE(1832), 4, @@ -168602,7 +166888,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word, sym__soft_line_break, sym__code_span_text_base, - ACTIONS(5544), 32, + ACTIONS(5092), 32, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -168635,16 +166921,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [6948] = 4, - ACTIONS(5656), 1, + [6948] = 3, + ACTIONS(4999), 1, + sym__last_token_punctuation, + ACTIONS(4997), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4995), 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, - STATE(2729), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6996] = 4, + ACTIONS(5212), 1, + sym__newline_token, + STATE(2670), 1, sym__soft_line_break, - ACTIONS(5384), 3, + ACTIONS(4997), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4995), 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, + [7046] = 7, + ACTIONS(4743), 1, + sym__backslash_escape, + ACTIONS(4902), 1, + anon_sym_LPAREN, + ACTIONS(5215), 1, + anon_sym_RPAREN, + ACTIONS(4971), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5044), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(1755), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4969), 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, + [7102] = 3, + ACTIONS(5223), 1, + sym__last_token_punctuation, + ACTIONS(5220), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5382), 36, + ACTIONS(5217), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -168678,17 +167102,24 @@ 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, - [6998] = 3, - ACTIONS(5663), 1, + [7150] = 6, + ACTIONS(5231), 1, + anon_sym_LPAREN, + ACTIONS(5235), 1, + aux_sym__whitespace_token1, + ACTIONS(5237), 1, sym__last_token_punctuation, - ACTIONS(5661), 3, + ACTIONS(5228), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5659), 37, + ACTIONS(5233), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5225), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -168720,33 +167151,20 @@ 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, - [7046] = 7, - ACTIONS(5187), 1, - sym__backslash_escape, - ACTIONS(5346), 1, - anon_sym_LPAREN, - ACTIONS(5665), 1, - anon_sym_RPAREN, - ACTIONS(5468), 2, + [7204] = 3, + ACTIONS(4942), 1, + sym__last_token_punctuation, + ACTIONS(4940), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5516), 4, + aux_sym__whitespace_token1, + ACTIONS(4938), 37, + sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - STATE(1750), 4, - sym_backslash_escape, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5466), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -168775,14 +167193,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [7102] = 3, - ACTIONS(5673), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7252] = 3, + ACTIONS(5241), 1, sym__last_token_punctuation, - ACTIONS(5670), 3, + ACTIONS(5239), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5667), 37, + ACTIONS(5231), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -168820,14 +167244,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7150] = 3, - ACTIONS(5386), 1, - sym__last_token_punctuation, - ACTIONS(5384), 3, + [7300] = 3, + ACTIONS(5243), 1, + sym__last_token_whitespace, + ACTIONS(4357), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5382), 37, + ACTIONS(4355), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -168865,14 +167289,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7198] = 3, - ACTIONS(5675), 1, - sym__last_token_whitespace, - ACTIONS(4817), 3, + [7348] = 4, + ACTIONS(5245), 1, + sym__newline_token, + STATE(2707), 1, + sym__soft_line_break, + ACTIONS(4940), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4815), 37, + ACTIONS(4938), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -168906,24 +167332,22 @@ 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, - [7246] = 6, - ACTIONS(5659), 1, - anon_sym_LPAREN, - ACTIONS(5685), 1, - aux_sym__whitespace_token1, - ACTIONS(5687), 1, + [7398] = 5, + ACTIONS(5241), 1, sym__last_token_punctuation, - ACTIONS(5680), 2, + ACTIONS(5251), 1, + aux_sym__whitespace_token1, + ACTIONS(5239), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5683), 2, + ACTIONS(5248), 3, + anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - ACTIONS(5677), 34, + ACTIONS(5231), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -168955,17 +167379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RPAREN, + anon_sym_LPAREN, sym__word_no_digit, sym__digits, - [7300] = 3, - ACTIONS(5695), 1, - sym__last_token_punctuation, - ACTIONS(5692), 3, + [7450] = 3, + ACTIONS(5254), 1, + sym__last_token_whitespace, + ACTIONS(4299), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5689), 37, + ACTIONS(4297), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -169003,17 +167427,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7348] = 7, - ACTIONS(5187), 1, + [7498] = 7, + ACTIONS(4743), 1, sym__backslash_escape, - ACTIONS(5346), 1, + ACTIONS(4902), 1, anon_sym_LPAREN, - ACTIONS(5699), 1, + ACTIONS(5258), 1, anon_sym_RPAREN, - ACTIONS(5468), 2, + ACTIONS(4971), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5697), 4, + ACTIONS(5256), 4, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, @@ -169023,7 +167447,7 @@ static const uint16_t ts_small_parse_table[] = { sym__link_destination_parenthesis, sym__word, aux_sym_link_destination_repeat2, - ACTIONS(5466), 28, + ACTIONS(4969), 28, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -169052,61 +167476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [7404] = 5, - ACTIONS(5663), 1, + [7554] = 3, + ACTIONS(5266), 1, sym__last_token_punctuation, - ACTIONS(5704), 1, - aux_sym__whitespace_token1, - ACTIONS(5661), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5701), 3, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(5659), 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_LPAREN, - sym__word_no_digit, - sym__digits, - [7456] = 3, - ACTIONS(5707), 1, - sym__last_token_whitespace, - ACTIONS(4743), 3, + ACTIONS(5263), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4741), 37, + ACTIONS(5260), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -169144,14 +167521,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7504] = 3, - ACTIONS(5462), 1, - sym__last_token_punctuation, - ACTIONS(5460), 3, + [7602] = 4, + ACTIONS(5275), 1, + aux_sym__whitespace_token1, + ACTIONS(5270), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5458), 37, + ACTIONS(5272), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5268), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -169184,21 +167564,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, - [7552] = 4, - ACTIONS(5709), 1, - sym__newline_token, - STATE(2713), 1, - sym__soft_line_break, - ACTIONS(5460), 3, + [7651] = 2, + ACTIONS(5280), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5458), 36, + ACTIONS(5278), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -169232,15 +167605,16 @@ 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, - [7602] = 2, - ACTIONS(5714), 3, + [7696] = 2, + ACTIONS(5263), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5712), 37, + ACTIONS(5260), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -169278,31 +167652,31 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7647] = 6, - ACTIONS(5718), 1, - anon_sym_DQUOTE, - ACTIONS(5720), 1, + [7741] = 6, + ACTIONS(5284), 1, + anon_sym_SQUOTE, + ACTIONS(5286), 1, anon_sym_BSLASH, - ACTIONS(5722), 1, + ACTIONS(5288), 1, sym__newline_token, - STATE(1811), 3, + STATE(1804), 3, sym__word, sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(5724), 4, + aux_sym_key_value_value_repeat1, + ACTIONS(5290), 4, sym__commonmark_whitespace, - anon_sym_BSLASH_DQUOTE, + anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, - ACTIONS(5716), 30, + ACTIONS(5282), 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, anon_sym_COMMA, @@ -169325,111 +167699,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [7700] = 6, - ACTIONS(5729), 1, - anon_sym_DQUOTE, - ACTIONS(5731), 1, + [7794] = 6, + ACTIONS(5286), 1, anon_sym_BSLASH, - ACTIONS(5734), 1, + ACTIONS(5288), 1, sym__newline_token, - STATE(1802), 3, + ACTIONS(5292), 1, + anon_sym_SQUOTE, + STATE(1811), 3, sym__word, sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(5737), 4, + aux_sym_key_value_value_repeat1, + ACTIONS(5294), 4, sym__commonmark_whitespace, - anon_sym_BSLASH_DQUOTE, - sym__word_no_digit, - sym__digits, - ACTIONS(5726), 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, - [7753] = 2, - ACTIONS(4941), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4939), 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, + anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, - [7798] = 5, - ACTIONS(5489), 1, - anon_sym_LPAREN, - ACTIONS(5746), 1, - aux_sym__whitespace_token1, - ACTIONS(5505), 2, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(5743), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5740), 34, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5282), 30, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -169437,53 +167723,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, - [7849] = 5, - ACTIONS(5659), 1, - anon_sym_LPAREN, - ACTIONS(5685), 1, - aux_sym__whitespace_token1, - ACTIONS(5680), 2, anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5683), 2, - sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(5677), 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, @@ -169504,15 +167744,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__word_no_digit, - sym__digits, - [7900] = 2, - ACTIONS(5670), 3, + [7847] = 4, + ACTIONS(5296), 1, + sym__newline_token, + STATE(2668), 1, + sym__soft_line_break, + ACTIONS(5235), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5667), 37, + ACTIONS(5233), 35, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -169544,22 +167787,63 @@ 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, - [7945] = 4, - ACTIONS(5748), 1, + [7896] = 6, + ACTIONS(5302), 1, + anon_sym_DQUOTE, + ACTIONS(5304), 1, + anon_sym_BSLASH, + ACTIONS(5307), 1, sym__newline_token, - STATE(2802), 1, + STATE(1806), 3, + sym__word, sym__soft_line_break, - ACTIONS(5685), 3, + aux_sym_key_value_value_repeat2, + ACTIONS(5310), 4, + sym__commonmark_whitespace, + anon_sym_BSLASH_DQUOTE, + sym__word_no_digit, + sym__digits, + ACTIONS(5299), 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, + [7949] = 2, + ACTIONS(5067), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5683), 35, + ACTIONS(5065), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -169591,16 +167875,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, [7994] = 2, - ACTIONS(5491), 3, + ACTIONS(5220), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5489), 37, + ACTIONS(5217), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -169639,11 +167925,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, [8039] = 2, - ACTIONS(5753), 3, + ACTIONS(4621), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5751), 37, + ACTIONS(4619), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -169681,23 +167967,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8084] = 6, - ACTIONS(5757), 1, - anon_sym_SQUOTE, - ACTIONS(5759), 1, + [8084] = 2, + ACTIONS(5270), 3, + anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5761), 1, - sym__newline_token, - STATE(1819), 3, - sym__word, - sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(5763), 4, - sym__commonmark_whitespace, - anon_sym_BSLASH_SQUOTE, - sym__word_no_digit, - sym__digits, - ACTIONS(5755), 30, + aux_sym__whitespace_token1, + ACTIONS(5268), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -169705,7 +167983,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, anon_sym_COMMA, @@ -169728,31 +168006,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [8137] = 6, - ACTIONS(5720), 1, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8129] = 6, + ACTIONS(5316), 1, + anon_sym_SQUOTE, + ACTIONS(5318), 1, anon_sym_BSLASH, - ACTIONS(5722), 1, + ACTIONS(5321), 1, sym__newline_token, - ACTIONS(5757), 1, - anon_sym_DQUOTE, - STATE(1802), 3, + STATE(1811), 3, sym__word, sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(5765), 4, + aux_sym_key_value_value_repeat1, + ACTIONS(5324), 4, sym__commonmark_whitespace, - anon_sym_BSLASH_DQUOTE, + anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, - ACTIONS(5716), 30, + ACTIONS(5313), 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, anon_sym_COMMA, @@ -169775,12 +168057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [8190] = 2, - ACTIONS(5767), 3, + [8182] = 2, + ACTIONS(5329), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5424), 37, + ACTIONS(5327), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -169818,12 +168100,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8235] = 2, - ACTIONS(5771), 3, + [8227] = 3, + ACTIONS(5331), 1, + sym__last_token_punctuation, + ACTIONS(5235), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5769), 37, + ACTIONS(5233), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -169855,33 +168139,35 @@ 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, - [8280] = 4, - ACTIONS(5776), 1, - aux_sym__whitespace_token1, - ACTIONS(5753), 2, - anon_sym_AMP, + [8274] = 6, + ACTIONS(5292), 1, + anon_sym_DQUOTE, + ACTIONS(5335), 1, anon_sym_BSLASH, - ACTIONS(5773), 3, - anon_sym_RPAREN, + ACTIONS(5337), 1, sym__newline_token, - sym__whitespace_ge_2, - ACTIONS(5751), 34, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(1806), 3, + sym__word, + sym__soft_line_break, + aux_sym_key_value_value_repeat2, + ACTIONS(5339), 4, + sym__commonmark_whitespace, + anon_sym_BSLASH_DQUOTE, + sym__word_no_digit, + sym__digits, + ACTIONS(5333), 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, @@ -169904,14 +168190,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, anon_sym_LPAREN, - sym__word_no_digit, - sym__digits, - [8329] = 2, - ACTIONS(5781), 3, + anon_sym_RPAREN, + [8327] = 2, + ACTIONS(4565), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5779), 37, + ACTIONS(4563), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -169949,23 +168234,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8374] = 6, - ACTIONS(5718), 1, - anon_sym_SQUOTE, - ACTIONS(5759), 1, + [8372] = 2, + ACTIONS(4629), 3, + anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5761), 1, - sym__newline_token, - STATE(1810), 3, - sym__word, - sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(5783), 4, - sym__commonmark_whitespace, - anon_sym_BSLASH_SQUOTE, - sym__word_no_digit, - sym__digits, - ACTIONS(5755), 30, + aux_sym__whitespace_token1, + ACTIONS(4627), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -169973,7 +168250,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, anon_sym_COMMA, @@ -169996,12 +168273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [8427] = 2, - ACTIONS(5181), 3, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8417] = 2, + ACTIONS(5343), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5179), 37, + ACTIONS(5341), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -170039,12 +168320,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8472] = 2, - ACTIONS(5009), 3, + [8462] = 2, + ACTIONS(5348), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5007), 37, + ACTIONS(5345), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -170082,23 +168363,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8517] = 6, - ACTIONS(5788), 1, - anon_sym_SQUOTE, - ACTIONS(5790), 1, + [8507] = 2, + ACTIONS(5354), 3, + anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5793), 1, - sym__newline_token, - STATE(1819), 3, - sym__word, - sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(5796), 4, - sym__commonmark_whitespace, - anon_sym_BSLASH_SQUOTE, - sym__word_no_digit, - sym__digits, - ACTIONS(5785), 30, + aux_sym__whitespace_token1, + ACTIONS(5351), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -170106,7 +168379,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, anon_sym_COMMA, @@ -170129,12 +168402,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, - [8570] = 2, - ACTIONS(5692), 3, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8552] = 5, + ACTIONS(5231), 1, + anon_sym_LPAREN, + ACTIONS(5235), 1, + aux_sym__whitespace_token1, + ACTIONS(5228), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5689), 37, + ACTIONS(5233), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(5225), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -170166,18 +168449,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, - [8615] = 2, - ACTIONS(5802), 3, + [8603] = 2, + ACTIONS(5357), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5799), 37, + ACTIONS(5016), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -170215,12 +168495,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8660] = 2, - ACTIONS(5808), 3, + [8648] = 2, + ACTIONS(5359), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5805), 37, + ACTIONS(4956), 37, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -170258,22 +168538,30 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8705] = 2, - ACTIONS(5811), 3, - anon_sym_AMP, + [8693] = 6, + ACTIONS(5284), 1, + anon_sym_DQUOTE, + ACTIONS(5335), 1, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5404), 37, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5337), 1, + sym__newline_token, + STATE(1814), 3, + sym__word, + sym__soft_line_break, + aux_sym_key_value_value_repeat2, + ACTIONS(5361), 4, + sym__commonmark_whitespace, + anon_sym_BSLASH_DQUOTE, + sym__word_no_digit, + sym__digits, + ACTIONS(5333), 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, @@ -170297,18 +168585,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LPAREN, anon_sym_RPAREN, + [8746] = 5, + ACTIONS(5065), 1, + anon_sym_LPAREN, + ACTIONS(5369), 1, + aux_sym__whitespace_token1, + ACTIONS(5081), 2, sym__newline_token, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [8750] = 3, - ACTIONS(5813), 1, - sym__last_token_punctuation, - ACTIONS(5685), 3, + ACTIONS(5366), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5683), 36, + ACTIONS(5363), 34, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -170341,21 +168629,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8797] = 3, - ACTIONS(5819), 1, - sym__last_token_punctuation, - ACTIONS(5817), 3, + [8797] = 2, + ACTIONS(5369), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5815), 35, + ACTIONS(5081), 36, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, + anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -170383,20 +168668,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, - [8843] = 2, - ACTIONS(5823), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [8841] = 3, + ACTIONS(5373), 1, aux_sym__whitespace_token1, - ACTIONS(5821), 36, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5375), 1, + sym__last_token_punctuation, + ACTIONS(5371), 37, + sym__code_span_close, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -170404,6 +168687,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, @@ -170417,6 +168701,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__, @@ -170425,21 +168710,23 @@ 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, - [8887] = 2, - ACTIONS(5746), 3, + [8887] = 3, + ACTIONS(5381), 1, + sym__last_token_punctuation, + ACTIONS(5379), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5505), 36, + ACTIONS(5377), 35, sym__backslash_escape, sym_entity_reference, sym_numeric_character_reference, - anon_sym_LT, anon_sym_GT, anon_sym_BANG, anon_sym_DQUOTE, @@ -170467,18 +168754,20 @@ 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, - [8931] = 3, - ACTIONS(4743), 1, + [8933] = 2, + ACTIONS(5385), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5825), 1, - sym__last_token_whitespace, - ACTIONS(4741), 37, - sym__code_span_close, + ACTIONS(5383), 36, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -170486,7 +168775,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, @@ -170500,7 +168788,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__, @@ -170509,18 +168796,17 @@ 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, [8977] = 3, - ACTIONS(5829), 1, + ACTIONS(4299), 1, aux_sym__whitespace_token1, - ACTIONS(5831), 1, - sym__last_token_punctuation, - ACTIONS(5827), 37, + ACTIONS(5387), 1, + sym__last_token_whitespace, + ACTIONS(4297), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -170559,11 +168845,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, [9023] = 3, - ACTIONS(4817), 1, + ACTIONS(4357), 1, aux_sym__whitespace_token1, - ACTIONS(5833), 1, + ACTIONS(5389), 1, sym__last_token_whitespace, - ACTIONS(4815), 37, + ACTIONS(4355), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -170601,11 +168887,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9069] = 2, - ACTIONS(5837), 1, - aux_sym__whitespace_token1, - ACTIONS(5835), 37, - sym__code_span_close, + [9069] = 3, + ACTIONS(5393), 1, + anon_sym_BSLASH, + ACTIONS(5395), 1, + sym__last_token_punctuation, + ACTIONS(5391), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -170627,7 +168914,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__, @@ -170639,13 +168925,14 @@ 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, - [9112] = 2, - ACTIONS(5841), 1, + [9114] = 2, + ACTIONS(5399), 1, aux_sym__whitespace_token1, - ACTIONS(5839), 37, + ACTIONS(5397), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -170683,19 +168970,21 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9155] = 2, - ACTIONS(5009), 1, + [9157] = 2, + ACTIONS(5403), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5007), 37, - sym__code_span_close, - anon_sym_LT, + ACTIONS(5401), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, 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, @@ -170709,7 +168998,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__, @@ -170720,16 +169008,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, - [9198] = 3, - ACTIONS(5845), 1, + [9200] = 3, + ACTIONS(4357), 1, anon_sym_BSLASH, - ACTIONS(5847), 1, - sym__last_token_punctuation, - ACTIONS(5843), 36, + ACTIONS(5405), 1, + sym__last_token_whitespace, + ACTIONS(4355), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -170763,15 +169050,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, - [9243] = 3, - ACTIONS(4817), 1, + [9245] = 3, + ACTIONS(4357), 1, anon_sym_BSLASH, - ACTIONS(5849), 1, + ACTIONS(5407), 1, sym__last_token_whitespace, - ACTIONS(4815), 36, + ACTIONS(4355), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -170808,12 +169095,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_SQUOTE, sym__word_no_digit, sym__digits, - [9288] = 3, - ACTIONS(4817), 1, + [9290] = 3, + ACTIONS(5411), 1, anon_sym_BSLASH, - ACTIONS(5851), 1, - sym__last_token_whitespace, - ACTIONS(4815), 36, + ACTIONS(5413), 1, + sym__last_token_punctuation, + ACTIONS(5409), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -170850,10 +169137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_DQUOTE, sym__word_no_digit, sym__digits, - [9333] = 2, - ACTIONS(5181), 1, + [9335] = 2, + ACTIONS(5417), 1, aux_sym__whitespace_token1, - ACTIONS(5179), 37, + ACTIONS(5415), 37, sym__code_span_close, anon_sym_LT, anon_sym_GT, @@ -170891,12 +169178,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9376] = 3, - ACTIONS(5855), 1, - anon_sym_BSLASH, - ACTIONS(5857), 1, - sym__last_token_punctuation, - ACTIONS(5853), 36, + [9378] = 2, + ACTIONS(4621), 1, + aux_sym__whitespace_token1, + ACTIONS(4619), 37, + sym__code_span_close, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -170918,6 +169204,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__, @@ -170929,25 +169216,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, sym__newline_token, - sym__commonmark_whitespace, - anon_sym_BSLASH_DQUOTE, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, [9421] = 2, - ACTIONS(5861), 3, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(4629), 1, aux_sym__whitespace_token1, - ACTIONS(5859), 35, - sym__backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4627), 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, @@ -170961,6 +169245,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__, @@ -170971,13 +169256,14 @@ 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, [9464] = 2, - ACTIONS(5863), 1, + ACTIONS(4621), 1, anon_sym_BSLASH, - ACTIONS(5729), 36, + ACTIONS(4619), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -171015,9 +169301,9 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, [9506] = 2, - ACTIONS(5865), 1, + ACTIONS(4621), 1, anon_sym_BSLASH, - ACTIONS(5788), 36, + ACTIONS(4619), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -171055,9 +169341,9 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, [9548] = 2, - ACTIONS(5181), 1, + ACTIONS(5419), 1, anon_sym_BSLASH, - ACTIONS(5179), 36, + ACTIONS(5302), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -171095,9 +169381,9 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, [9590] = 2, - ACTIONS(5181), 1, + ACTIONS(5421), 1, anon_sym_BSLASH, - ACTIONS(5179), 36, + ACTIONS(5316), 36, anon_sym_LT, anon_sym_GT, anon_sym_BANG, @@ -171135,11306 +169421,11306 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, [9632] = 10, - ACTIONS(5867), 1, + ACTIONS(5423), 1, sym_shortcode_name, - ACTIONS(5873), 1, + ACTIONS(5429), 1, sym_shortcode_number, - ACTIONS(5877), 1, + ACTIONS(5433), 1, sym__whitespace_ge_2, - ACTIONS(5879), 1, + ACTIONS(5435), 1, aux_sym__whitespace_token1, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - STATE(1896), 1, + STATE(1898), 1, sym__whitespace, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2630), 5, + STATE(2610), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [9670] = 10, - ACTIONS(5877), 1, + ACTIONS(5433), 1, sym__whitespace_ge_2, - ACTIONS(5879), 1, + ACTIONS(5435), 1, aux_sym__whitespace_token1, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5883), 1, + ACTIONS(5439), 1, sym_shortcode_name, - ACTIONS(5885), 1, + ACTIONS(5441), 1, sym_shortcode_number, STATE(1897), 1, sym__whitespace, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2627), 5, + STATE(2621), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [9708] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5891), 1, - sym__shortcode_close_escaped, + ACTIONS(5447), 1, + sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [9743] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5893), 1, + ACTIONS(5449), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [9778] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5895), 1, - sym__shortcode_close, + ACTIONS(5451), 1, + sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [9813] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5897), 1, + ACTIONS(5453), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [9848] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5899), 1, + ACTIONS(5455), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [9883] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5901), 1, + ACTIONS(5457), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [9918] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5903), 1, + ACTIONS(5459), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [9953] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5905), 1, + ACTIONS(5461), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [9988] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5907), 1, + ACTIONS(5463), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10023] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5909), 1, + ACTIONS(5465), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10058] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5911), 1, + ACTIONS(5467), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10093] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5913), 1, + ACTIONS(5469), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10128] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5915), 1, + ACTIONS(5471), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10163] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5917), 1, + ACTIONS(5473), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10198] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5919), 1, + ACTIONS(5475), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10233] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5921), 1, - sym__shortcode_close_escaped, + ACTIONS(5477), 1, + sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10268] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5923), 1, - sym__shortcode_close, + ACTIONS(5479), 1, + sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10303] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5925), 1, + ACTIONS(5481), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10338] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5927), 1, + ACTIONS(5483), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10373] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5929), 1, + ACTIONS(5485), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10408] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5931), 1, + ACTIONS(5487), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10443] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5933), 1, - sym__shortcode_close_escaped, + ACTIONS(5489), 1, + sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10478] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5935), 1, + ACTIONS(5491), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10513] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5937), 1, + ACTIONS(5493), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10548] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5939), 1, + ACTIONS(5495), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10583] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5941), 1, + ACTIONS(5497), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10618] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5943), 1, + ACTIONS(5499), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10653] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5945), 1, + ACTIONS(5501), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10688] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5947), 1, + ACTIONS(5503), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10723] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5949), 1, + ACTIONS(5505), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10758] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5951), 1, + ACTIONS(5507), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10793] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5953), 1, + ACTIONS(5509), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10828] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5955), 1, + ACTIONS(5511), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10863] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5957), 1, + ACTIONS(5513), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10898] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5959), 1, + ACTIONS(5515), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10933] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5961), 1, - sym__shortcode_close_escaped, + ACTIONS(5517), 1, + sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [10968] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5963), 1, - sym__shortcode_close, + ACTIONS(5519), 1, + sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11003] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5965), 1, + ACTIONS(5521), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11038] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5967), 1, + ACTIONS(5523), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11073] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5969), 1, + ACTIONS(5525), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11108] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5971), 1, + ACTIONS(5527), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11143] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5973), 1, - sym__shortcode_close_escaped, + ACTIONS(5529), 1, + sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11178] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5975), 1, + ACTIONS(5531), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11213] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5977), 1, + ACTIONS(5533), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11248] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5979), 1, - sym__shortcode_close, + ACTIONS(5535), 1, + sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11283] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5981), 1, + ACTIONS(5537), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11318] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5983), 1, + ACTIONS(5539), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11353] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5985), 1, + ACTIONS(5541), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11388] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5987), 1, + ACTIONS(5543), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11423] = 9, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5887), 1, + ACTIONS(5443), 1, sym_shortcode_name, - ACTIONS(5889), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5989), 1, - sym__shortcode_close, + ACTIONS(5545), 1, + sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11458] = 7, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5991), 1, - sym_shortcode_name, - ACTIONS(5993), 1, + ACTIONS(5445), 1, sym_shortcode_number, - ACTIONS(5869), 2, + ACTIONS(5547), 1, + sym_shortcode_name, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2637), 5, + STATE(2648), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11487] = 7, - ACTIONS(5867), 1, + ACTIONS(5437), 1, + sym__shortcode_open, + ACTIONS(5549), 1, sym_shortcode_name, - ACTIONS(5873), 1, + ACTIONS(5551), 1, sym_shortcode_number, - ACTIONS(5881), 1, - sym__shortcode_open, - ACTIONS(5869), 2, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2630), 5, + STATE(2632), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, [11516] = 7, - ACTIONS(5881), 1, + ACTIONS(5437), 1, sym__shortcode_open, - ACTIONS(5889), 1, - sym_shortcode_number, - ACTIONS(5995), 1, + ACTIONS(5439), 1, sym_shortcode_name, - ACTIONS(5869), 2, + ACTIONS(5441), 1, + sym_shortcode_number, + ACTIONS(5425), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(5871), 2, + ACTIONS(5427), 2, aux_sym_shortcode_string_token1, aux_sym_shortcode_string_token2, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - STATE(2622), 5, + STATE(2621), 5, sym_shortcode, sym__shortcode_value, sym_shortcode_naked_string, sym_shortcode_string, sym_shortcode_boolean, - [11545] = 11, - ACTIONS(5997), 1, - anon_sym_RBRACE, - ACTIONS(5999), 1, - sym_raw_specifier, - ACTIONS(6001), 1, - sym__commonmark_whitespace, - ACTIONS(6003), 1, - sym_commonmark_name, - ACTIONS(6005), 1, - sym_id_specifier, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - STATE(2039), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2169), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2450), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [11579] = 9, - ACTIONS(5205), 1, + [11545] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6017), 1, + ACTIONS(5559), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2326), 1, + STATE(2292), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11609] = 9, - ACTIONS(5205), 1, + [11575] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6023), 1, + ACTIONS(5565), 1, anon_sym_RPAREN, - STATE(2148), 1, + STATE(2115), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11639] = 11, - ACTIONS(6005), 1, - sym_id_specifier, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6025), 1, - anon_sym_RBRACE, - ACTIONS(6027), 1, - sym_raw_specifier, - ACTIONS(6029), 1, - sym__commonmark_whitespace, - ACTIONS(6031), 1, - sym_commonmark_name, - STATE(2019), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2075), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2361), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [11673] = 9, - ACTIONS(5205), 1, + [11605] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6033), 1, + ACTIONS(5567), 1, anon_sym_RPAREN, - STATE(2249), 1, + STATE(2195), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11703] = 11, - ACTIONS(6005), 1, - sym_id_specifier, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6035), 1, - anon_sym_RBRACE, - ACTIONS(6037), 1, - sym_raw_specifier, - ACTIONS(6039), 1, - sym__commonmark_whitespace, - ACTIONS(6041), 1, - sym_commonmark_name, - STATE(2026), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2262), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2375), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [11737] = 9, - ACTIONS(5205), 1, + [11635] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6043), 1, + ACTIONS(5569), 1, anon_sym_RPAREN, - STATE(2210), 1, + STATE(2201), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11767] = 9, - ACTIONS(5205), 1, + [11665] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6045), 1, + ACTIONS(5571), 1, anon_sym_RPAREN, STATE(2213), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11797] = 9, - ACTIONS(5205), 1, + [11695] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6047), 1, + ACTIONS(5573), 1, anon_sym_RPAREN, - STATE(2173), 1, + STATE(2219), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, + [11725] = 11, + ACTIONS(5575), 1, + anon_sym_RBRACE, + ACTIONS(5577), 1, + sym_raw_specifier, + ACTIONS(5579), 1, + sym__commonmark_whitespace, + ACTIONS(5581), 1, + sym_commonmark_name, + ACTIONS(5583), 1, + sym_id_specifier, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + STATE(2052), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2141), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2402), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [11759] = 11, + ACTIONS(5583), 1, + sym_id_specifier, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5589), 1, + anon_sym_RBRACE, + ACTIONS(5591), 1, + sym_raw_specifier, + ACTIONS(5593), 1, + sym__commonmark_whitespace, + ACTIONS(5595), 1, + sym_commonmark_name, + STATE(2040), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2138), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2357), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [11793] = 11, + ACTIONS(5583), 1, + sym_id_specifier, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5597), 1, + anon_sym_RBRACE, + ACTIONS(5599), 1, + sym_raw_specifier, + ACTIONS(5601), 1, + sym__commonmark_whitespace, + ACTIONS(5603), 1, + sym_commonmark_name, + STATE(2021), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2271), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2420), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, [11827] = 9, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6049), 1, + ACTIONS(5605), 1, anon_sym_RPAREN, - STATE(2208), 1, + STATE(2245), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [11857] = 9, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6051), 1, + ACTIONS(5607), 1, anon_sym_RPAREN, - STATE(2222), 1, + STATE(2080), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [11887] = 9, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6053), 1, + ACTIONS(5609), 1, anon_sym_RPAREN, - STATE(2228), 1, + STATE(2252), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [11917] = 9, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6055), 1, + ACTIONS(5611), 1, anon_sym_RPAREN, - STATE(2254), 1, + STATE(2061), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [11947] = 11, - ACTIONS(6005), 1, - sym_id_specifier, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6057), 1, - anon_sym_RBRACE, - ACTIONS(6059), 1, - sym_raw_specifier, - ACTIONS(6061), 1, - sym__commonmark_whitespace, - ACTIONS(6063), 1, - sym_commonmark_name, - STATE(2021), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2255), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2372), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [11981] = 9, - ACTIONS(5205), 1, + [11947] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6065), 1, + ACTIONS(5613), 1, anon_sym_RPAREN, - STATE(2081), 1, + STATE(2063), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12011] = 11, - ACTIONS(6005), 1, - sym_id_specifier, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6067), 1, - anon_sym_RBRACE, - ACTIONS(6069), 1, - sym_raw_specifier, - ACTIONS(6071), 1, - sym__commonmark_whitespace, - ACTIONS(6073), 1, - sym_commonmark_name, - STATE(2023), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2152), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2436), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [12045] = 9, - ACTIONS(5205), 1, + [11977] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6075), 1, + ACTIONS(5615), 1, anon_sym_RPAREN, - STATE(2059), 1, + STATE(2067), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12075] = 9, - ACTIONS(5205), 1, + [12007] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6077), 1, + ACTIONS(5617), 1, anon_sym_RPAREN, - STATE(2062), 1, + STATE(2069), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12105] = 9, - ACTIONS(5205), 1, + [12037] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6079), 1, + ACTIONS(5619), 1, anon_sym_RPAREN, - STATE(2264), 1, + STATE(2083), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12135] = 9, - ACTIONS(5205), 1, + [12067] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6081), 1, + ACTIONS(5621), 1, anon_sym_RPAREN, - STATE(2304), 1, + STATE(2088), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12165] = 9, - ACTIONS(5205), 1, + [12097] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6083), 1, + ACTIONS(5623), 1, anon_sym_RPAREN, - STATE(2066), 1, + STATE(2090), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12195] = 9, - ACTIONS(5205), 1, + [12127] = 11, + ACTIONS(5583), 1, + sym_id_specifier, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5625), 1, + anon_sym_RBRACE, + ACTIONS(5627), 1, + sym_raw_specifier, + ACTIONS(5629), 1, + sym__commonmark_whitespace, + ACTIONS(5631), 1, + sym_commonmark_name, + STATE(2016), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2081), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2391), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [12161] = 3, + ACTIONS(5633), 1, + sym__last_token_whitespace, + ACTIONS(4299), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4297), 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, + [12179] = 9, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5553), 1, + anon_sym_DQUOTE, + ACTIONS(5555), 1, + anon_sym_SQUOTE, + ACTIONS(5557), 1, + anon_sym_LPAREN, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(5635), 1, + anon_sym_RPAREN, + STATE(2121), 1, + sym_link_title, + STATE(1969), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [12209] = 9, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5553), 1, + anon_sym_DQUOTE, + ACTIONS(5555), 1, + anon_sym_SQUOTE, + ACTIONS(5557), 1, + anon_sym_LPAREN, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(5637), 1, + anon_sym_RPAREN, + STATE(2124), 1, + sym_link_title, + STATE(1969), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [12239] = 3, + ACTIONS(5639), 1, + sym__last_token_whitespace, + ACTIONS(4299), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4297), 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, + [12257] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6085), 1, + ACTIONS(5641), 1, anon_sym_RPAREN, - STATE(2068), 1, + STATE(2127), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12225] = 9, - ACTIONS(5205), 1, + [12287] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6087), 1, + ACTIONS(5643), 1, anon_sym_RPAREN, - STATE(2149), 1, + STATE(2129), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12255] = 11, - ACTIONS(6005), 1, + [12317] = 11, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6089), 1, + ACTIONS(5645), 1, anon_sym_RBRACE, - ACTIONS(6091), 1, + ACTIONS(5647), 1, sym_raw_specifier, - ACTIONS(6093), 1, + ACTIONS(5649), 1, sym__commonmark_whitespace, - ACTIONS(6095), 1, + ACTIONS(5651), 1, sym_commonmark_name, - STATE(2051), 1, + STATE(2023), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2267), 1, + STATE(2139), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2412), 1, + STATE(2380), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [12289] = 11, - ACTIONS(6005), 1, + [12351] = 11, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6097), 1, + ACTIONS(5653), 1, anon_sym_RBRACE, - ACTIONS(6099), 1, + ACTIONS(5655), 1, sym_raw_specifier, - ACTIONS(6101), 1, + ACTIONS(5657), 1, sym__commonmark_whitespace, - ACTIONS(6103), 1, + ACTIONS(5659), 1, sym_commonmark_name, - STATE(2031), 1, + STATE(2050), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2106), 1, + STATE(2198), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2382), 1, + STATE(2381), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [12323] = 9, - ACTIONS(5205), 1, + [12385] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6105), 1, + ACTIONS(5661), 1, anon_sym_RPAREN, - STATE(2118), 1, + STATE(2109), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12353] = 9, - ACTIONS(5205), 1, + [12415] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6107), 1, + ACTIONS(5663), 1, anon_sym_RPAREN, - STATE(2121), 1, + STATE(2167), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12383] = 9, - ACTIONS(5205), 1, + [12445] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6109), 1, + ACTIONS(5665), 1, anon_sym_RPAREN, - STATE(2125), 1, + STATE(2169), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12413] = 9, - ACTIONS(5205), 1, + [12475] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6111), 1, + ACTIONS(5667), 1, anon_sym_RPAREN, - STATE(2127), 1, + STATE(2079), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12443] = 9, - ACTIONS(5205), 1, + [12505] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6113), 1, + ACTIONS(5669), 1, anon_sym_RPAREN, - STATE(2156), 1, + STATE(2085), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12473] = 9, - ACTIONS(5205), 1, + [12535] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6115), 1, + ACTIONS(5671), 1, anon_sym_RPAREN, - STATE(2165), 1, + STATE(2173), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12503] = 11, - ACTIONS(6005), 1, - sym_id_specifier, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6117), 1, - anon_sym_RBRACE, - ACTIONS(6119), 1, - sym_raw_specifier, - ACTIONS(6121), 1, - sym__commonmark_whitespace, - ACTIONS(6123), 1, - sym_commonmark_name, - STATE(2018), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2133), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2349), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [12537] = 9, - ACTIONS(5205), 1, + [12565] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6125), 1, + ACTIONS(5673), 1, anon_sym_RPAREN, - STATE(2197), 1, + STATE(2175), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12567] = 9, - ACTIONS(5205), 1, + [12595] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6127), 1, + ACTIONS(5675), 1, anon_sym_RPAREN, - STATE(2179), 1, + STATE(2200), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12597] = 9, - ACTIONS(5205), 1, + [12625] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6129), 1, + ACTIONS(5677), 1, anon_sym_RPAREN, - STATE(2182), 1, + STATE(2205), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12627] = 9, - ACTIONS(5205), 1, + [12655] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6131), 1, + ACTIONS(5679), 1, anon_sym_RPAREN, - STATE(2186), 1, + STATE(2097), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12657] = 9, - ACTIONS(5205), 1, + [12685] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6133), 1, + ACTIONS(5681), 1, anon_sym_RPAREN, - STATE(2188), 1, + STATE(2100), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12687] = 9, - ACTIONS(5205), 1, + [12715] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6135), 1, + ACTIONS(5683), 1, anon_sym_RPAREN, - STATE(2199), 1, + STATE(2239), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12717] = 11, - ACTIONS(6005), 1, - sym_id_specifier, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6137), 1, - anon_sym_RBRACE, - ACTIONS(6139), 1, - sym_raw_specifier, - ACTIONS(6141), 1, - sym__commonmark_whitespace, - ACTIONS(6143), 1, - sym_commonmark_name, - STATE(2038), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2211), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2368), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [12751] = 9, - ACTIONS(5205), 1, + [12745] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6145), 1, + ACTIONS(5685), 1, anon_sym_RPAREN, - STATE(2202), 1, + STATE(2241), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12781] = 11, - ACTIONS(6005), 1, - sym_id_specifier, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6147), 1, - anon_sym_RBRACE, - ACTIONS(6149), 1, - sym_raw_specifier, - ACTIONS(6151), 1, - sym__commonmark_whitespace, - ACTIONS(6153), 1, - sym_commonmark_name, - STATE(2032), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2332), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2358), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [12815] = 9, - ACTIONS(5205), 1, + [12775] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6155), 1, + ACTIONS(5687), 1, anon_sym_RPAREN, - STATE(2252), 1, + STATE(2225), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12845] = 9, - ACTIONS(5205), 1, + [12805] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6157), 1, + ACTIONS(5689), 1, anon_sym_RPAREN, - STATE(2234), 1, + STATE(2228), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12875] = 9, - ACTIONS(5205), 1, + [12835] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6159), 1, + ACTIONS(5691), 1, anon_sym_RPAREN, - STATE(2237), 1, + STATE(2320), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12905] = 9, - ACTIONS(5205), 1, + [12865] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6161), 1, + ACTIONS(5693), 1, anon_sym_RPAREN, - STATE(2241), 1, + STATE(2232), 1, + sym_link_title, + STATE(1969), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [12895] = 9, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5553), 1, + anon_sym_DQUOTE, + ACTIONS(5555), 1, + anon_sym_SQUOTE, + ACTIONS(5557), 1, + anon_sym_LPAREN, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(5695), 1, + anon_sym_RPAREN, + STATE(2234), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12935] = 9, - ACTIONS(5205), 1, + [12925] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6163), 1, + ACTIONS(5697), 1, anon_sym_RPAREN, - STATE(2243), 1, + STATE(2137), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [12965] = 11, - ACTIONS(6005), 1, + [12955] = 11, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6165), 1, + ACTIONS(5699), 1, anon_sym_RBRACE, - ACTIONS(6167), 1, + ACTIONS(5701), 1, sym_raw_specifier, - ACTIONS(6169), 1, + ACTIONS(5703), 1, sym__commonmark_whitespace, - ACTIONS(6171), 1, + ACTIONS(5705), 1, sym_commonmark_name, - STATE(2036), 1, + STATE(2018), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2079), 1, + STATE(2257), 1, aux_sym_commonmark_attribute_repeat2, STATE(2360), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [12999] = 11, - ACTIONS(6005), 1, + [12989] = 9, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5553), 1, + anon_sym_DQUOTE, + ACTIONS(5555), 1, + anon_sym_SQUOTE, + ACTIONS(5557), 1, + anon_sym_LPAREN, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(5707), 1, + anon_sym_RPAREN, + STATE(2143), 1, + sym_link_title, + STATE(1969), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [13019] = 11, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6173), 1, + ACTIONS(5709), 1, anon_sym_RBRACE, - ACTIONS(6175), 1, + ACTIONS(5711), 1, sym_raw_specifier, - ACTIONS(6177), 1, + ACTIONS(5713), 1, sym__commonmark_whitespace, - ACTIONS(6179), 1, + ACTIONS(5715), 1, sym_commonmark_name, - STATE(2045), 1, + STATE(2034), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2088), 1, + STATE(2185), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2366), 1, + STATE(2385), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [13033] = 3, - ACTIONS(6181), 1, - sym__last_token_whitespace, - ACTIONS(4743), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(4741), 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, - [13051] = 9, - ACTIONS(5205), 1, + [13053] = 11, + ACTIONS(5583), 1, + sym_id_specifier, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5717), 1, + anon_sym_RBRACE, + ACTIONS(5719), 1, + sym_raw_specifier, + ACTIONS(5721), 1, + sym__commonmark_whitespace, + ACTIONS(5723), 1, + sym_commonmark_name, + STATE(2030), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2093), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2375), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [13087] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6183), 1, + ACTIONS(5725), 1, anon_sym_RPAREN, - STATE(2315), 1, + STATE(2283), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13081] = 9, - ACTIONS(5205), 1, + [13117] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6185), 1, + ACTIONS(5727), 1, anon_sym_RPAREN, - STATE(2287), 1, + STATE(2286), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13111] = 9, - ACTIONS(5205), 1, + [13147] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6187), 1, + ACTIONS(5729), 1, anon_sym_RPAREN, STATE(2290), 1, sym_link_title, - STATE(1989), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [13141] = 9, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(6011), 1, - anon_sym_DQUOTE, - ACTIONS(6013), 1, - anon_sym_SQUOTE, - ACTIONS(6015), 1, - anon_sym_LPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - ACTIONS(6189), 1, - anon_sym_RPAREN, - STATE(2057), 1, - sym_link_title, - STATE(1989), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [13171] = 9, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(6011), 1, - anon_sym_DQUOTE, - ACTIONS(6013), 1, - anon_sym_SQUOTE, - ACTIONS(6015), 1, - anon_sym_LPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - ACTIONS(6191), 1, - anon_sym_RPAREN, - STATE(2294), 1, - sym_link_title, - STATE(1989), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [13201] = 9, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(6011), 1, - anon_sym_DQUOTE, - ACTIONS(6013), 1, - anon_sym_SQUOTE, - ACTIONS(6015), 1, - anon_sym_LPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - ACTIONS(6193), 1, - anon_sym_RPAREN, - STATE(2296), 1, - sym_link_title, - STATE(1989), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [13231] = 3, - ACTIONS(6195), 1, - sym__last_token_whitespace, - ACTIONS(4743), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(4741), 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, - [13249] = 9, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(6011), 1, - anon_sym_DQUOTE, - ACTIONS(6013), 1, - anon_sym_SQUOTE, - ACTIONS(6015), 1, - anon_sym_LPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - ACTIONS(6197), 1, - anon_sym_RPAREN, - STATE(2071), 1, - sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13279] = 9, - ACTIONS(5205), 1, + [13177] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6199), 1, + ACTIONS(5731), 1, anon_sym_RPAREN, - STATE(2073), 1, + STATE(2078), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13309] = 9, - ACTIONS(5205), 1, + [13207] = 11, + ACTIONS(5583), 1, + sym_id_specifier, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5733), 1, + anon_sym_RBRACE, + ACTIONS(5735), 1, + sym_raw_specifier, + ACTIONS(5737), 1, + sym__commonmark_whitespace, + ACTIONS(5739), 1, + sym_commonmark_name, + STATE(2022), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2229), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2343), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [13241] = 11, + ACTIONS(5583), 1, + sym_id_specifier, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5741), 1, + anon_sym_RBRACE, + ACTIONS(5743), 1, + sym_raw_specifier, + ACTIONS(5745), 1, + sym__commonmark_whitespace, + ACTIONS(5747), 1, + sym_commonmark_name, + STATE(2037), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2297), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2351), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [13275] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6201), 1, + ACTIONS(5749), 1, anon_sym_RPAREN, - STATE(2317), 1, + STATE(2319), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13339] = 9, - ACTIONS(5205), 1, + [13305] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6203), 1, + ACTIONS(5751), 1, anon_sym_RPAREN, - STATE(2054), 1, + STATE(2322), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13369] = 9, - ACTIONS(5205), 1, + [13335] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6205), 1, + ACTIONS(5753), 1, anon_sym_RPAREN, - STATE(2324), 1, + STATE(2326), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13399] = 9, - ACTIONS(5205), 1, + [13365] = 9, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6011), 1, + ACTIONS(5553), 1, anon_sym_DQUOTE, - ACTIONS(6013), 1, + ACTIONS(5555), 1, anon_sym_SQUOTE, - ACTIONS(6015), 1, + ACTIONS(5557), 1, anon_sym_LPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6207), 1, + ACTIONS(5755), 1, anon_sym_RPAREN, - STATE(2167), 1, + STATE(2328), 1, sym_link_title, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [13429] = 10, - ACTIONS(6005), 1, + [13395] = 11, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6209), 1, + ACTIONS(5757), 1, anon_sym_RBRACE, - ACTIONS(6211), 1, + ACTIONS(5759), 1, sym_raw_specifier, - ACTIONS(6213), 1, + ACTIONS(5761), 1, + sym__commonmark_whitespace, + ACTIONS(5763), 1, sym_commonmark_name, - STATE(2040), 1, + STATE(2020), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2216), 1, + STATE(2196), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2359), 1, + STATE(2425), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, + sym__attribute, + [13429] = 10, + ACTIONS(5583), 1, + sym_id_specifier, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5625), 1, + anon_sym_RBRACE, + ACTIONS(5765), 1, + sym__commonmark_whitespace, + ACTIONS(5767), 1, + sym_commonmark_name, + STATE(2016), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2081), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2391), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, [13460] = 6, - ACTIONS(6215), 1, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6221), 1, + ACTIONS(5775), 1, sym__latex_span_close, - STATE(1971), 1, + STATE(2000), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, [13483] = 6, - ACTIONS(6215), 1, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6223), 1, + ACTIONS(5777), 1, sym__latex_span_close, - STATE(1973), 1, + STATE(1967), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, [13506] = 10, - ACTIONS(6005), 1, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6117), 1, - anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6225), 1, - sym__commonmark_whitespace, - STATE(2018), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2133), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2349), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [13537] = 6, - ACTIONS(6215), 1, - sym__backslash_escape, - ACTIONS(6219), 1, - sym__newline_token, - ACTIONS(6227), 1, - sym__latex_span_close, - STATE(2003), 1, - aux_sym_latex_span_repeat1, - STATE(2076), 2, - sym_backslash_escape, - sym__soft_line_break, - ACTIONS(6217), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [13560] = 10, - ACTIONS(5997), 1, + ACTIONS(5779), 1, anon_sym_RBRACE, - ACTIONS(6005), 1, - sym_id_specifier, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6229), 1, - sym__commonmark_whitespace, - STATE(2039), 1, + ACTIONS(5781), 1, + sym_raw_specifier, + STATE(2043), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2169), 1, + STATE(2147), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2450), 1, + STATE(2336), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [13591] = 10, - ACTIONS(6005), 1, + [13537] = 2, + ACTIONS(4629), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4627), 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, + [13552] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6231), 1, + ACTIONS(5783), 1, anon_sym_RBRACE, - ACTIONS(6233), 1, + ACTIONS(5785), 1, sym_raw_specifier, - STATE(2027), 1, + STATE(2047), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2144), 1, + STATE(2145), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2346), 1, + STATE(2443), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [13622] = 6, - ACTIONS(6215), 1, + [13583] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6235), 1, + ACTIONS(5787), 1, sym__latex_span_close, - STATE(1986), 1, + STATE(2000), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13645] = 6, - ACTIONS(6215), 1, + [13606] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6237), 1, + ACTIONS(5789), 1, sym__latex_span_close, - STATE(1972), 1, + STATE(2003), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13668] = 10, - ACTIONS(6005), 1, - sym_id_specifier, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6067), 1, - anon_sym_RBRACE, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6239), 1, - sym__commonmark_whitespace, - STATE(2023), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2152), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2436), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [13699] = 6, - ACTIONS(6215), 1, - sym__backslash_escape, - ACTIONS(6219), 1, + [13629] = 5, + ACTIONS(5140), 1, sym__newline_token, - ACTIONS(6241), 1, - sym__latex_span_close, - STATE(2011), 1, - aux_sym_latex_span_repeat1, - STATE(2076), 2, - sym_backslash_escape, + ACTIONS(5791), 1, + sym__whitespace_ge_2, + ACTIONS(5794), 1, + aux_sym__whitespace_token1, + STATE(1969), 3, + sym__whitespace, sym__soft_line_break, - ACTIONS(6217), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [13722] = 6, - ACTIONS(6215), 1, + aux_sym_inline_link_repeat1, + ACTIONS(5136), 4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [13650] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6243), 1, + ACTIONS(5797), 1, sym__latex_span_close, - STATE(2011), 1, + STATE(1978), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13745] = 6, - ACTIONS(6215), 1, + [13673] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6245), 1, + ACTIONS(5799), 1, sym__latex_span_close, - STATE(2011), 1, + STATE(1975), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13768] = 10, - ACTIONS(6005), 1, + [13696] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6247), 1, + ACTIONS(5653), 1, anon_sym_RBRACE, - ACTIONS(6249), 1, - sym_raw_specifier, - STATE(2024), 1, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5801), 1, + sym__commonmark_whitespace, + STATE(2050), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2150), 1, + STATE(2198), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2357), 1, + STATE(2381), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [13799] = 10, - ACTIONS(6005), 1, + [13727] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6025), 1, + ACTIONS(5757), 1, anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6251), 1, + ACTIONS(5803), 1, sym__commonmark_whitespace, - STATE(2019), 1, + STATE(2020), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2075), 1, + STATE(2196), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2361), 1, + STATE(2425), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, + sym__attribute, + [13758] = 10, + ACTIONS(5583), 1, + sym_id_specifier, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5805), 1, + anon_sym_RBRACE, + ACTIONS(5807), 1, + sym_raw_specifier, + STATE(2035), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2264), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2335), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, - [13830] = 10, - ACTIONS(6005), 1, + [13789] = 6, + ACTIONS(5769), 1, + sym__backslash_escape, + ACTIONS(5773), 1, + sym__newline_token, + ACTIONS(5809), 1, + sym__latex_span_close, + STATE(2000), 1, + aux_sym_latex_span_repeat1, + STATE(2146), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(5771), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [13812] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6165), 1, + ACTIONS(5717), 1, anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6253), 1, + ACTIONS(5811), 1, sym__commonmark_whitespace, - STATE(2036), 1, + STATE(2030), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2079), 1, + STATE(2093), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2360), 1, + STATE(2375), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [13861] = 3, - ACTIONS(4743), 1, - aux_sym__whitespace_token1, - ACTIONS(6255), 1, - sym__last_token_whitespace, - ACTIONS(4741), 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, - [13878] = 10, - ACTIONS(6005), 1, + [13843] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6257), 1, + ACTIONS(5813), 1, anon_sym_RBRACE, - ACTIONS(6259), 1, + ACTIONS(5815), 1, sym_raw_specifier, - STATE(2017), 1, + STATE(2031), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2291), 1, + STATE(2122), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2339), 1, + STATE(2411), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [13909] = 10, - ACTIONS(6005), 1, + [13874] = 6, + ACTIONS(5769), 1, + sym__backslash_escape, + ACTIONS(5773), 1, + sym__newline_token, + ACTIONS(5817), 1, + sym__latex_span_close, + STATE(2000), 1, + aux_sym_latex_span_repeat1, + STATE(2146), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(5771), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [13897] = 6, + ACTIONS(5769), 1, + sym__backslash_escape, + ACTIONS(5773), 1, + sym__newline_token, + ACTIONS(5819), 1, + sym__latex_span_close, + STATE(2001), 1, + aux_sym_latex_span_repeat1, + STATE(2146), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(5771), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [13920] = 3, + ACTIONS(5821), 1, + sym__last_token_whitespace, + ACTIONS(4299), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4297), 6, + sym__shortcode_open, + aux_sym_shortcode_string_token1, + aux_sym_shortcode_string_token2, + sym_shortcode_number, + anon_sym_true, + anon_sym_false, + [13937] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6097), 1, + ACTIONS(5709), 1, anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6261), 1, + ACTIONS(5823), 1, sym__commonmark_whitespace, - STATE(2031), 1, + STATE(2034), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2106), 1, + STATE(2185), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2382), 1, + STATE(2385), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [13940] = 6, - ACTIONS(6215), 1, + [13968] = 6, + ACTIONS(5769), 1, + sym__backslash_escape, + ACTIONS(5773), 1, + sym__newline_token, + ACTIONS(5825), 1, + sym__latex_span_close, + STATE(2012), 1, + aux_sym_latex_span_repeat1, + STATE(2146), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(5771), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [13991] = 6, + ACTIONS(5769), 1, + sym__backslash_escape, + ACTIONS(5773), 1, + sym__newline_token, + ACTIONS(5827), 1, + sym__latex_span_close, + STATE(1962), 1, + aux_sym_latex_span_repeat1, + STATE(2146), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(5771), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [14014] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6263), 1, + ACTIONS(5829), 1, sym__latex_span_close, - STATE(2011), 1, + STATE(1988), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13963] = 6, - ACTIONS(6215), 1, + [14037] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6265), 1, + ACTIONS(5831), 1, sym__latex_span_close, - STATE(1984), 1, + STATE(2000), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [13986] = 10, - ACTIONS(6005), 1, + [14060] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6147), 1, + ACTIONS(5589), 1, anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6267), 1, + ACTIONS(5833), 1, sym__commonmark_whitespace, - STATE(2032), 1, + STATE(2040), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2332), 1, + STATE(2138), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2358), 1, + STATE(2357), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14017] = 6, - ACTIONS(6215), 1, + [14091] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6269), 1, + ACTIONS(5835), 1, sym__latex_span_close, - STATE(1991), 1, + STATE(1994), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14040] = 6, - ACTIONS(6215), 1, + [14114] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6271), 1, + ACTIONS(5837), 1, sym__latex_span_close, - STATE(2011), 1, + STATE(2000), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14063] = 10, - ACTIONS(6005), 1, + [14137] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6057), 1, + ACTIONS(5741), 1, anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6273), 1, + ACTIONS(5839), 1, sym__commonmark_whitespace, - STATE(2021), 1, + STATE(2037), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2255), 1, + STATE(2297), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2372), 1, + STATE(2351), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [14168] = 10, + ACTIONS(5583), 1, + sym_id_specifier, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5645), 1, + anon_sym_RBRACE, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5841), 1, + sym__commonmark_whitespace, + STATE(2023), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2139), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2380), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14094] = 6, - ACTIONS(6215), 1, - sym__backslash_escape, - ACTIONS(6219), 1, - sym__newline_token, - ACTIONS(6275), 1, - sym__latex_span_close, - STATE(2011), 1, - aux_sym_latex_span_repeat1, - STATE(2076), 2, - sym_backslash_escape, - sym__soft_line_break, - ACTIONS(6217), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [14117] = 10, - ACTIONS(6005), 1, + [14199] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6277), 1, + ACTIONS(5843), 1, anon_sym_RBRACE, - ACTIONS(6279), 1, + ACTIONS(5845), 1, sym_raw_specifier, - STATE(2048), 1, + STATE(2049), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2091), 1, + STATE(2132), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2367), 1, + STATE(2441), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14148] = 10, - ACTIONS(6005), 1, + [14230] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6281), 1, + ACTIONS(5847), 1, anon_sym_RBRACE, - ACTIONS(6283), 1, + ACTIONS(5849), 1, sym_raw_specifier, - STATE(2033), 1, + STATE(2039), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2097), 1, + STATE(2255), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2371), 1, + STATE(2366), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14179] = 5, - ACTIONS(5584), 1, - sym__newline_token, - ACTIONS(6285), 1, - sym__whitespace_ge_2, - ACTIONS(6288), 1, - aux_sym__whitespace_token1, - STATE(1989), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - ACTIONS(5580), 4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - [14200] = 3, - ACTIONS(6291), 1, - sym__last_token_whitespace, - ACTIONS(4743), 3, + [14261] = 2, + ACTIONS(4629), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(4741), 6, + ACTIONS(4627), 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, - [14217] = 6, - ACTIONS(6215), 1, + [14276] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6293), 1, + ACTIONS(5851), 1, sym__latex_span_close, - STATE(2011), 1, + STATE(2000), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14240] = 6, - ACTIONS(6215), 1, + [14299] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6295), 1, + ACTIONS(5853), 1, sym__latex_span_close, - STATE(1995), 1, + STATE(2008), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14263] = 10, - ACTIONS(6005), 1, + [14322] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6035), 1, + ACTIONS(5597), 1, anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6297), 1, + ACTIONS(5855), 1, sym__commonmark_whitespace, - STATE(2026), 1, + STATE(2021), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2262), 1, + STATE(2271), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2375), 1, + STATE(2420), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14294] = 10, - ACTIONS(6005), 1, + [14353] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6299), 1, + ACTIONS(5857), 1, anon_sym_RBRACE, - ACTIONS(6301), 1, + ACTIONS(5859), 1, sym_raw_specifier, - STATE(2041), 1, + STATE(2046), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2207), 1, + STATE(2154), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2350), 1, + STATE(2340), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14325] = 6, - ACTIONS(6215), 1, - sym__backslash_escape, - ACTIONS(6219), 1, - sym__newline_token, - ACTIONS(6303), 1, - sym__latex_span_close, - STATE(2011), 1, - aux_sym_latex_span_repeat1, - STATE(2076), 2, - sym_backslash_escape, - sym__soft_line_break, - ACTIONS(6217), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [14348] = 10, - ACTIONS(6005), 1, + [14384] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6305), 1, + ACTIONS(5861), 1, anon_sym_RBRACE, - ACTIONS(6307), 1, + ACTIONS(5863), 1, sym_raw_specifier, - STATE(2028), 1, + STATE(2025), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2158), 1, + STATE(2204), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2338), 1, + STATE(2386), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14379] = 10, - ACTIONS(6005), 1, + [14415] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6309), 1, + ACTIONS(5733), 1, anon_sym_RBRACE, - ACTIONS(6311), 1, - sym_raw_specifier, - STATE(2042), 1, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5865), 1, + sym__commonmark_whitespace, + STATE(2022), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2058), 1, + STATE(2229), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2352), 1, + STATE(2343), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14410] = 6, - ACTIONS(6215), 1, + [14446] = 6, + ACTIONS(5867), 1, + sym__backslash_escape, + ACTIONS(5873), 1, + sym__newline_token, + ACTIONS(5876), 1, + sym__latex_span_close, + STATE(2000), 1, + aux_sym_latex_span_repeat1, + STATE(2146), 2, + sym_backslash_escape, + sym__soft_line_break, + ACTIONS(5870), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [14469] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6313), 1, + ACTIONS(5878), 1, sym__latex_span_close, - STATE(2007), 1, + STATE(2000), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14433] = 2, - ACTIONS(5009), 3, + [14492] = 3, + ACTIONS(4299), 1, + aux_sym__whitespace_token1, + ACTIONS(5880), 1, + sym__last_token_whitespace, + ACTIONS(4297), 8, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(5007), 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, - [14448] = 6, - ACTIONS(6215), 1, + sym__whitespace_ge_2, + [14509] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6315), 1, + ACTIONS(5882), 1, sym__latex_span_close, - STATE(2004), 1, + STATE(2000), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14471] = 10, - ACTIONS(6005), 1, + [14532] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6317), 1, + ACTIONS(5884), 1, anon_sym_RBRACE, - ACTIONS(6319), 1, + ACTIONS(5886), 1, sym_raw_specifier, - STATE(2029), 1, + STATE(2028), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2265), 1, + STATE(2296), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2377), 1, + STATE(2356), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14502] = 10, - ACTIONS(6005), 1, + [14563] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6173), 1, - anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6321), 1, - sym__commonmark_whitespace, - STATE(2045), 1, + ACTIONS(5888), 1, + anon_sym_RBRACE, + ACTIONS(5890), 1, + sym_raw_specifier, + STATE(2042), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2088), 1, + STATE(2101), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2366), 1, + STATE(2339), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14533] = 6, - ACTIONS(6215), 1, - sym__backslash_escape, - ACTIONS(6219), 1, - sym__newline_token, - ACTIONS(6323), 1, - sym__latex_span_close, - STATE(2011), 1, - aux_sym_latex_span_repeat1, - STATE(2076), 2, - sym_backslash_escape, - sym__soft_line_break, - ACTIONS(6217), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [14556] = 6, - ACTIONS(6215), 1, + [14594] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6325), 1, + ACTIONS(5892), 1, sym__latex_span_close, - STATE(2011), 1, + STATE(1985), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14579] = 10, - ACTIONS(6005), 1, + [14617] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6137), 1, - anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6327), 1, - sym__commonmark_whitespace, - STATE(2038), 1, + ACTIONS(5894), 1, + anon_sym_RBRACE, + ACTIONS(5896), 1, + sym_raw_specifier, + STATE(2024), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2211), 1, + STATE(2265), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2368), 1, + STATE(2400), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14610] = 6, - ACTIONS(6215), 1, - sym__backslash_escape, - ACTIONS(6219), 1, - sym__newline_token, - ACTIONS(6329), 1, - sym__latex_span_close, - STATE(2011), 1, - aux_sym_latex_span_repeat1, - STATE(2076), 2, - sym_backslash_escape, - sym__soft_line_break, - ACTIONS(6217), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [14633] = 6, - ACTIONS(6215), 1, + [14648] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6331), 1, + ACTIONS(5898), 1, sym__latex_span_close, - STATE(2011), 1, + STATE(2000), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14656] = 10, - ACTIONS(6005), 1, + [14671] = 10, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6333), 1, + ACTIONS(5900), 1, anon_sym_RBRACE, - ACTIONS(6335), 1, + ACTIONS(5902), 1, sym_raw_specifier, - STATE(2049), 1, + STATE(2041), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2214), 1, + STATE(2054), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2355), 1, + STATE(2372), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14687] = 6, - ACTIONS(6215), 1, + [14702] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6337), 1, + ACTIONS(5904), 1, sym__latex_span_close, - STATE(1980), 1, + STATE(2000), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14710] = 10, - ACTIONS(6005), 1, + [14725] = 10, + ACTIONS(5575), 1, + anon_sym_RBRACE, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6339), 1, - anon_sym_RBRACE, - ACTIONS(6341), 1, - sym_raw_specifier, + ACTIONS(5906), 1, + sym__commonmark_whitespace, STATE(2052), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2268), 1, + STATE(2141), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2379), 1, + STATE(2402), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14741] = 6, - ACTIONS(6343), 1, + [14756] = 6, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6349), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6352), 1, + ACTIONS(5908), 1, sym__latex_span_close, - STATE(2011), 1, + STATE(2000), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6346), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [14764] = 2, - ACTIONS(5009), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(5007), 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, [14779] = 6, - ACTIONS(6215), 1, + ACTIONS(5769), 1, sym__backslash_escape, - ACTIONS(6219), 1, + ACTIONS(5773), 1, sym__newline_token, - ACTIONS(6354), 1, + ACTIONS(5910), 1, sym__latex_span_close, - STATE(2006), 1, + STATE(2010), 1, aux_sym_latex_span_repeat1, - STATE(2076), 2, + STATE(2146), 2, sym_backslash_escape, sym__soft_line_break, - ACTIONS(6217), 4, + ACTIONS(5771), 4, anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_latex_span_token1, aux_sym_latex_span_token2, [14802] = 10, - ACTIONS(6005), 1, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6089), 1, + ACTIONS(5699), 1, anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6356), 1, + ACTIONS(5912), 1, sym__commonmark_whitespace, - STATE(2051), 1, + STATE(2018), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2267), 1, + STATE(2257), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2412), 1, + STATE(2360), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, [14833] = 9, - ACTIONS(6005), 1, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6209), 1, - anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - STATE(2040), 1, + ACTIONS(5813), 1, + anon_sym_RBRACE, + STATE(2031), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2216), 1, + STATE(2122), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2359), 1, + STATE(2411), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14861] = 2, - ACTIONS(5009), 1, - aux_sym__whitespace_token1, - ACTIONS(5007), 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, - [14875] = 9, - ACTIONS(6005), 1, + [14861] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6358), 1, + ACTIONS(5813), 1, anon_sym_RBRACE, - STATE(2316), 1, + STATE(2122), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2345), 1, + STATE(2411), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14903] = 9, - ACTIONS(6005), 1, + [14889] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6247), 1, + ACTIONS(5894), 1, anon_sym_RBRACE, - STATE(2150), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2334), 1, + STATE(2024), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2357), 1, + STATE(2265), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2400), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14931] = 9, - ACTIONS(6005), 1, + [14917] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6231), 1, + ACTIONS(5894), 1, anon_sym_RBRACE, - STATE(2144), 1, + STATE(2265), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2346), 1, + STATE(2400), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14959] = 9, - ACTIONS(6005), 1, + [14945] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6317), 1, + ACTIONS(5861), 1, anon_sym_RBRACE, - STATE(2029), 1, + STATE(2025), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2265), 1, + STATE(2204), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2377), 1, + STATE(2386), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [14987] = 9, - ACTIONS(6005), 1, + [14973] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6317), 1, + ACTIONS(5861), 1, anon_sym_RBRACE, - STATE(2265), 1, + STATE(2204), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2377), 1, + STATE(2386), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15015] = 9, - ACTIONS(6005), 1, + [15001] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6305), 1, + ACTIONS(5884), 1, anon_sym_RBRACE, - STATE(2028), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2158), 1, + STATE(2296), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2338), 1, + STATE(2334), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2356), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15043] = 9, - ACTIONS(6005), 1, + [15029] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6305), 1, + ACTIONS(5847), 1, anon_sym_RBRACE, - STATE(2158), 1, + STATE(2255), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2338), 1, + STATE(2366), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15071] = 9, - ACTIONS(6005), 1, + [15057] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6360), 1, + ACTIONS(5857), 1, anon_sym_RBRACE, - STATE(2177), 1, + STATE(2154), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2363), 1, + STATE(2340), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15099] = 9, - ACTIONS(6005), 1, + [15085] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6339), 1, + ACTIONS(5914), 1, anon_sym_RBRACE, - STATE(2052), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2268), 1, + STATE(2272), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2379), 1, + STATE(2334), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2422), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15127] = 9, - ACTIONS(6005), 1, + [15113] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6339), 1, + ACTIONS(5916), 1, anon_sym_RBRACE, - STATE(2268), 1, + STATE(2214), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2379), 1, + STATE(2348), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15155] = 9, - ACTIONS(6005), 1, + [15141] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6362), 1, + ACTIONS(5888), 1, anon_sym_RBRACE, - STATE(2194), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2334), 1, + STATE(2042), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2353), 1, + STATE(2101), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2339), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15183] = 9, - ACTIONS(6005), 1, + [15169] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6364), 1, + ACTIONS(5779), 1, anon_sym_RBRACE, - STATE(2168), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2334), 1, + STATE(2043), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2343), 1, + STATE(2147), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2336), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15211] = 9, - ACTIONS(6005), 1, + [15197] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6366), 1, + ACTIONS(5918), 1, anon_sym_RBRACE, - STATE(2306), 1, + STATE(2318), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2392), 1, + STATE(2413), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15239] = 9, - ACTIONS(6005), 1, + [15225] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6247), 1, + ACTIONS(5884), 1, anon_sym_RBRACE, - STATE(2024), 1, + STATE(2028), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2150), 1, + STATE(2296), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2357), 1, + STATE(2356), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15267] = 9, - ACTIONS(6005), 1, + [15253] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6299), 1, + ACTIONS(5888), 1, anon_sym_RBRACE, - STATE(2207), 1, + STATE(2101), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2350), 1, + STATE(2339), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15295] = 9, - ACTIONS(6005), 1, + [15281] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6209), 1, - anon_sym_RBRACE, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - STATE(2216), 1, + ACTIONS(5920), 1, + anon_sym_RBRACE, + STATE(2170), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2359), 1, + STATE(2405), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15323] = 9, - ACTIONS(6005), 1, + [15309] = 2, + ACTIONS(4629), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(4627), 6, + sym__shortcode_open, + aux_sym_shortcode_string_token1, + aux_sym_shortcode_string_token2, + sym_shortcode_number, + anon_sym_true, + anon_sym_false, + [15323] = 2, + ACTIONS(4629), 1, + aux_sym__whitespace_token1, + ACTIONS(4627), 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, + [15337] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6368), 1, + ACTIONS(5805), 1, anon_sym_RBRACE, - STATE(2107), 1, + STATE(2264), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2376), 1, + STATE(2335), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15351] = 9, - ACTIONS(6005), 1, + [15365] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6333), 1, + ACTIONS(5922), 1, anon_sym_RBRACE, - STATE(2049), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2214), 1, + STATE(2311), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2355), 1, + STATE(2334), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2403), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15379] = 9, - ACTIONS(6005), 1, + [15393] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6277), 1, + ACTIONS(5900), 1, anon_sym_RBRACE, - STATE(2048), 1, + STATE(2041), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2091), 1, + STATE(2054), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2367), 1, + STATE(2372), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15407] = 9, - ACTIONS(6005), 1, + [15421] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6277), 1, + ACTIONS(5900), 1, anon_sym_RBRACE, - STATE(2091), 1, + STATE(2054), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2367), 1, + STATE(2372), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15435] = 9, - ACTIONS(6005), 1, + [15449] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6309), 1, + ACTIONS(5783), 1, anon_sym_RBRACE, - STATE(2042), 1, + STATE(2047), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2058), 1, + STATE(2145), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2352), 1, + STATE(2443), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15463] = 9, - ACTIONS(6005), 1, + [15477] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6309), 1, + ACTIONS(5924), 1, anon_sym_RBRACE, - STATE(2058), 1, + STATE(2287), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2352), 1, + STATE(2345), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15491] = 9, - ACTIONS(6005), 1, + [15505] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6333), 1, + ACTIONS(5783), 1, anon_sym_RBRACE, - STATE(2214), 1, + STATE(2145), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2355), 1, + STATE(2443), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15519] = 9, - ACTIONS(6005), 1, + [15533] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6370), 1, + ACTIONS(5926), 1, anon_sym_RBRACE, - STATE(2223), 1, + STATE(2310), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2362), 1, + STATE(2393), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15547] = 9, - ACTIONS(6005), 1, + [15561] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6372), 1, + ACTIONS(5928), 1, anon_sym_RBRACE, - STATE(2101), 1, + STATE(2110), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2341), 1, + STATE(2401), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15575] = 9, - ACTIONS(6005), 1, + [15589] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6374), 1, + ACTIONS(5930), 1, anon_sym_RBRACE, - STATE(2082), 1, + STATE(2157), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2378), 1, + STATE(2358), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15603] = 9, - ACTIONS(6005), 1, + [15617] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6231), 1, + ACTIONS(5857), 1, anon_sym_RBRACE, - STATE(2027), 1, + STATE(2046), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2144), 1, + STATE(2154), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2346), 1, + STATE(2340), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15631] = 9, - ACTIONS(6005), 1, + [15645] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6281), 1, + ACTIONS(5843), 1, anon_sym_RBRACE, - STATE(2033), 1, + STATE(2049), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2097), 1, + STATE(2132), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2371), 1, + STATE(2441), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15659] = 9, - ACTIONS(6005), 1, + [15673] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6281), 1, + ACTIONS(5932), 1, anon_sym_RBRACE, - STATE(2097), 1, + STATE(2188), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2371), 1, + STATE(2382), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15687] = 9, - ACTIONS(6005), 1, + [15701] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6257), 1, + ACTIONS(5934), 1, anon_sym_RBRACE, - STATE(2017), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(2291), 1, + STATE(2166), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2339), 1, + STATE(2334), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(2431), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15715] = 9, - ACTIONS(6005), 1, + [15729] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6299), 1, + ACTIONS(5847), 1, anon_sym_RBRACE, - STATE(2041), 1, + STATE(2039), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2207), 1, + STATE(2255), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2350), 1, + STATE(2366), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15743] = 9, - ACTIONS(6005), 1, + [15757] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6376), 1, + ACTIONS(5936), 1, anon_sym_RBRACE, - STATE(2135), 1, + STATE(2136), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2385), 1, + STATE(2341), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15771] = 9, - ACTIONS(6005), 1, + [15785] = 9, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6378), 1, + ACTIONS(5843), 1, anon_sym_RBRACE, - STATE(2261), 1, + STATE(2132), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2364), 1, + STATE(2441), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [15799] = 2, - ACTIONS(5009), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(5007), 6, - sym__shortcode_open, - aux_sym_shortcode_string_token1, - aux_sym_shortcode_string_token2, - sym_shortcode_number, - anon_sym_true, - anon_sym_false, [15813] = 9, - ACTIONS(6005), 1, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6257), 1, + ACTIONS(5805), 1, anon_sym_RBRACE, - STATE(2291), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2334), 1, + STATE(2035), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2339), 1, + STATE(2264), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2335), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, [15841] = 9, - ACTIONS(6005), 1, + ACTIONS(5583), 1, sym_id_specifier, - ACTIONS(6007), 1, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6380), 1, + ACTIONS(5779), 1, anon_sym_RBRACE, - STATE(2276), 1, + STATE(2147), 1, aux_sym_commonmark_attribute_repeat2, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - STATE(2380), 1, + STATE(2336), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, [15869] = 3, - ACTIONS(6382), 1, + ACTIONS(5938), 1, sym__last_token_whitespace, - ACTIONS(4815), 2, + ACTIONS(4355), 2, sym__latex_span_close, sym__backslash_escape, - ACTIONS(4817), 5, + ACTIONS(4357), 5, anon_sym_LBRACK, anon_sym_RBRACK, sym__newline_token, aux_sym_latex_span_token1, aux_sym_latex_span_token2, - [15884] = 5, - ACTIONS(5205), 1, + [15884] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5926), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2393), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [15906] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6017), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2325), 3, + ACTIONS(5667), 1, + anon_sym_RPAREN, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [15902] = 5, - ACTIONS(5205), 1, + [15924] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6077), 1, + ACTIONS(5613), 1, anon_sym_RPAREN, - STATE(1920), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [15920] = 5, - ACTIONS(5205), 1, + [15942] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6077), 1, + ACTIONS(5613), 1, anon_sym_RPAREN, - STATE(2064), 3, + STATE(1914), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [15938] = 5, - ACTIONS(5205), 1, + [15960] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6199), 1, + ACTIONS(5613), 1, anon_sym_RPAREN, - STATE(2072), 3, + STATE(2065), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [15956] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6374), 1, - anon_sym_RBRACE, - STATE(2378), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, [15978] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6083), 1, + ACTIONS(5667), 1, anon_sym_RPAREN, - STATE(2065), 3, + STATE(1936), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [15996] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6199), 1, + ACTIONS(5667), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2084), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16014] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6083), 1, + ACTIONS(5615), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2066), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16032] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6085), 1, + ACTIONS(5615), 1, anon_sym_RPAREN, - STATE(2067), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16050] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6384), 1, + ACTIONS(5617), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2068), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16068] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6085), 1, + ACTIONS(5669), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16086] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6386), 1, + ACTIONS(5617), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16104] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6386), 1, + ACTIONS(5940), 1, anon_sym_RPAREN, - STATE(2069), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16122] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6388), 1, + ACTIONS(5940), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2070), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16140] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6388), 1, + ACTIONS(5942), 1, anon_sym_RPAREN, - STATE(2070), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16158] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6390), 1, + ACTIONS(5942), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2071), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16176] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6392), 1, + ACTIONS(5944), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16194] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6384), 1, + ACTIONS(5946), 1, anon_sym_RPAREN, - STATE(2074), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16212] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6394), 1, + ACTIONS(5669), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1937), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16230] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6394), 1, + ACTIONS(5669), 1, anon_sym_RPAREN, - STATE(2077), 3, + STATE(2092), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [16248] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6396), 1, + ACTIONS(5661), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16266] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6231), 1, - anon_sym_RBRACE, - STATE(2346), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [16288] = 2, - ACTIONS(6398), 2, - sym__latex_span_close, - sym__backslash_escape, - ACTIONS(6400), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__newline_token, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [16300] = 5, - ACTIONS(5205), 1, + [16266] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6402), 1, + ACTIONS(5619), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16318] = 5, - ACTIONS(5205), 1, + [16284] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5325), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1901), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [16336] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6277), 1, - anon_sym_RBRACE, - STATE(2367), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [16358] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(5325), 1, + ACTIONS(5619), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - STATE(2108), 3, + STATE(1917), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16376] = 5, - ACTIONS(5205), 1, + [16302] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6087), 1, + ACTIONS(5619), 1, anon_sym_RPAREN, - STATE(2329), 3, + STATE(2086), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16394] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6404), 1, - anon_sym_RBRACE, - STATE(2344), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [16416] = 5, - ACTIONS(5205), 1, + [16320] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6145), 1, + ACTIONS(5565), 1, anon_sym_RPAREN, - STATE(1940), 3, + STATE(2111), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16434] = 5, - ACTIONS(5205), 1, + [16338] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6065), 1, - anon_sym_RPAREN, - STATE(1989), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [16452] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(5211), 1, + ACTIONS(5679), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - STATE(1960), 3, + STATE(2096), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16470] = 5, - ACTIONS(5205), 1, + [16356] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5241), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1907), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [16488] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(5211), 1, + ACTIONS(5621), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - STATE(2134), 3, + STATE(2087), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16506] = 7, - ACTIONS(6007), 1, + [16374] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6281), 1, + ACTIONS(5813), 1, anon_sym_RBRACE, - STATE(2371), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2411), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, - [16528] = 5, - ACTIONS(5205), 1, + [16396] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6065), 1, + ACTIONS(5621), 1, anon_sym_RPAREN, - STATE(1921), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16546] = 5, - ACTIONS(5205), 1, + [16414] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6047), 1, + ACTIONS(5623), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2089), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16564] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6376), 1, - anon_sym_RBRACE, - STATE(2385), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [16586] = 5, - ACTIONS(5205), 1, + [16432] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6087), 1, + ACTIONS(5679), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16604] = 5, - ACTIONS(5205), 1, + [16450] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5269), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1928), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [16622] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(5253), 1, + ACTIONS(5681), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - STATE(1938), 3, + STATE(2098), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16640] = 5, - ACTIONS(5205), 1, + [16468] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5269), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2138), 3, + ACTIONS(5623), 1, + anon_sym_RPAREN, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16658] = 5, - ACTIONS(5205), 1, + [16486] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6047), 1, + ACTIONS(5948), 1, anon_sym_RPAREN, - STATE(1917), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16676] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6368), 1, - anon_sym_RBRACE, - STATE(2376), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [16698] = 5, - ACTIONS(5205), 1, + [16504] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5253), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2263), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [16716] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(5249), 1, + ACTIONS(5948), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - STATE(1924), 3, + STATE(2094), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16734] = 5, - ACTIONS(5205), 1, + [16522] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5249), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2109), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [16752] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6406), 1, - anon_sym_RBRACE, - STATE(2354), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [16774] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(5251), 1, + ACTIONS(5950), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - STATE(1925), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16792] = 5, - ACTIONS(5205), 1, + [16540] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5251), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2113), 3, + ACTIONS(5950), 1, + anon_sym_RPAREN, + STATE(2095), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16810] = 5, - ACTIONS(5205), 1, + [16558] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5275), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1929), 3, + ACTIONS(5565), 1, + anon_sym_RPAREN, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16828] = 5, - ACTIONS(5205), 1, + [16576] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6047), 1, + ACTIONS(5681), 1, anon_sym_RPAREN, - STATE(2192), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16846] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6299), 1, - anon_sym_RBRACE, - STATE(2350), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [16868] = 7, - ACTIONS(6007), 1, + [16594] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6408), 1, + ACTIONS(5888), 1, anon_sym_RBRACE, - STATE(2381), 1, + STATE(2339), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [16890] = 5, - ACTIONS(5205), 1, + [16616] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6023), 1, + ACTIONS(5952), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16908] = 5, - ACTIONS(5205), 1, + [16634] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6105), 1, + ACTIONS(5954), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16926] = 5, - ACTIONS(5205), 1, + [16652] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6105), 1, + ACTIONS(5956), 1, anon_sym_RPAREN, - STATE(1926), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16944] = 5, - ACTIONS(5205), 1, + [16670] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6105), 1, + ACTIONS(5956), 1, anon_sym_RPAREN, - STATE(2120), 3, + STATE(2104), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16962] = 5, - ACTIONS(5205), 1, + [16688] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6023), 1, + ACTIONS(5958), 1, anon_sym_RPAREN, - STATE(1903), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16980] = 5, - ACTIONS(5205), 1, + [16706] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6107), 1, + ACTIONS(5960), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [16998] = 5, - ACTIONS(5205), 1, + [16724] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6107), 1, + ACTIONS(5958), 1, anon_sym_RPAREN, - STATE(1927), 3, + STATE(2107), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17016] = 5, - ACTIONS(5205), 1, + [16742] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5928), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2401), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [16764] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4849), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6107), 1, - anon_sym_RPAREN, - STATE(2123), 3, + STATE(1920), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17034] = 5, - ACTIONS(5205), 1, + [16782] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4849), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6023), 1, - anon_sym_RPAREN, - STATE(2157), 3, + STATE(2112), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17052] = 5, - ACTIONS(5205), 1, + [16800] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6410), 1, + ACTIONS(5962), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17070] = 5, - ACTIONS(5205), 1, + [16818] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4851), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6109), 1, - anon_sym_RPAREN, - STATE(2124), 3, + STATE(1921), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17088] = 5, - ACTIONS(5205), 1, + [16836] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5241), 1, + ACTIONS(4851), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2090), 3, + STATE(2116), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17106] = 5, - ACTIONS(5205), 1, + [16854] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6109), 1, + ACTIONS(5964), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17124] = 5, - ACTIONS(5205), 1, + [16872] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6111), 1, + ACTIONS(5966), 1, anon_sym_RPAREN, - STATE(2126), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17142] = 5, - ACTIONS(5205), 1, + [16890] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6049), 1, + ACTIONS(5966), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2119), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17160] = 5, - ACTIONS(5205), 1, + [16908] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5968), 1, + anon_sym_RBRACE, + STATE(2342), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2496), 1, + sym__attribute, + [16930] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6111), 1, + ACTIONS(5970), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17178] = 5, - ACTIONS(5205), 1, + [16948] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6412), 1, + ACTIONS(5635), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17196] = 5, - ACTIONS(5205), 1, + [16966] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6412), 1, + ACTIONS(5635), 1, anon_sym_RPAREN, - STATE(2128), 3, + STATE(1923), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17214] = 5, - ACTIONS(5205), 1, + [16984] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6414), 1, + ACTIONS(5635), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2123), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17232] = 5, - ACTIONS(5205), 1, + [17002] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6414), 1, + ACTIONS(5970), 1, anon_sym_RPAREN, - STATE(2129), 3, + STATE(2120), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17250] = 5, - ACTIONS(5205), 1, + [17020] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6416), 1, + ACTIONS(5637), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17268] = 5, - ACTIONS(5205), 1, + [17038] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6418), 1, + ACTIONS(5637), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1924), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17286] = 5, - ACTIONS(5205), 1, + [17056] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5275), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2145), 3, + ACTIONS(5637), 1, + anon_sym_RPAREN, + STATE(2125), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17304] = 5, - ACTIONS(5205), 1, + [17074] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6145), 1, + ACTIONS(5972), 1, anon_sym_RPAREN, - STATE(2259), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17322] = 5, - ACTIONS(5205), 1, + [17092] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6049), 1, + ACTIONS(5974), 1, anon_sym_RPAREN, - STATE(1918), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17340] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6247), 1, - anon_sym_RBRACE, - STATE(2357), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [17362] = 5, - ACTIONS(5205), 1, + [17110] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6207), 1, + ACTIONS(5641), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2126), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17380] = 7, - ACTIONS(6007), 1, + [17128] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6420), 1, + ACTIONS(5920), 1, anon_sym_RBRACE, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2438), 1, + STATE(2405), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [17402] = 5, - ACTIONS(5205), 1, + [17150] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6207), 1, + ACTIONS(5641), 1, anon_sym_RPAREN, - STATE(1911), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17420] = 5, - ACTIONS(5205), 1, + [17168] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6207), 1, + ACTIONS(5643), 1, anon_sym_RPAREN, - STATE(2238), 3, + STATE(2128), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17438] = 5, - ACTIONS(5205), 1, + [17186] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6113), 1, + ACTIONS(5643), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17456] = 5, - ACTIONS(5205), 1, + [17204] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6113), 1, + ACTIONS(5976), 1, anon_sym_RPAREN, - STATE(1931), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17474] = 5, - ACTIONS(5205), 1, + [17222] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6113), 1, + ACTIONS(5976), 1, anon_sym_RPAREN, - STATE(2162), 3, + STATE(2130), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17492] = 5, - ACTIONS(5205), 1, + [17240] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5255), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1913), 3, + ACTIONS(5978), 1, + anon_sym_RPAREN, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17510] = 5, - ACTIONS(5205), 1, + [17258] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6049), 1, + ACTIONS(5978), 1, anon_sym_RPAREN, - STATE(2258), 3, + STATE(2131), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17528] = 5, - ACTIONS(5205), 1, + [17276] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5255), 1, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(5980), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + STATE(1969), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17294] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2084), 3, + ACTIONS(5982), 1, + anon_sym_RPAREN, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17546] = 7, - ACTIONS(6007), 1, + [17312] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6362), 1, + ACTIONS(5936), 1, anon_sym_RBRACE, - STATE(2353), 1, + STATE(2341), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [17568] = 5, - ACTIONS(5205), 1, + [17334] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6115), 1, + ACTIONS(5984), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17586] = 5, - ACTIONS(5205), 1, + [17352] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - ACTIONS(6115), 1, + ACTIONS(4874), 1, anon_sym_RPAREN, - STATE(1936), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [17604] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6115), 1, - anon_sym_RPAREN, - STATE(2193), 3, + STATE(1942), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17622] = 5, - ACTIONS(5205), 1, + [17370] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4874), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6033), 1, - anon_sym_RPAREN, - STATE(2248), 3, + STATE(2203), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17640] = 5, - ACTIONS(5205), 1, + [17388] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5986), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2371), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [17410] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6422), 1, + ACTIONS(5605), 1, anon_sym_RPAREN, - STATE(2281), 3, + STATE(2244), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17658] = 7, - ACTIONS(6007), 1, + [17428] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6360), 1, + ACTIONS(5783), 1, anon_sym_RBRACE, - STATE(2363), 1, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2443), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2496), 1, + sym__attribute, + [17450] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5857), 1, + anon_sym_RBRACE, + STATE(2340), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [17680] = 5, - ACTIONS(5205), 1, + [17472] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5243), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1908), 3, + ACTIONS(5605), 1, + anon_sym_RPAREN, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17698] = 7, - ACTIONS(6007), 1, + [17490] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6305), 1, + ACTIONS(5779), 1, anon_sym_RBRACE, - STATE(2338), 1, + STATE(2336), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [17720] = 2, - ACTIONS(4939), 2, - sym__latex_span_close, - sym__backslash_escape, - ACTIONS(4941), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__newline_token, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [17732] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(5291), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - STATE(1905), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [17750] = 5, - ACTIONS(5205), 1, + [17512] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5291), 1, + ACTIONS(4876), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2180), 3, + STATE(1953), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17768] = 5, - ACTIONS(5205), 1, + [17530] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6125), 1, + ACTIONS(5609), 1, anon_sym_RPAREN, - STATE(2196), 3, + STATE(2250), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17786] = 5, - ACTIONS(5205), 1, + [17548] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4876), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6033), 1, - anon_sym_RPAREN, - STATE(1989), 3, + STATE(2253), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17804] = 7, - ACTIONS(6007), 1, + [17566] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6364), 1, + ACTIONS(5934), 1, anon_sym_RBRACE, - STATE(2343), 1, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2431), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2496), 1, + sym__attribute, + [17588] = 2, + ACTIONS(5988), 2, + sym__latex_span_close, + sym__backslash_escape, + ACTIONS(5990), 5, + anon_sym_LBRACK, + anon_sym_RBRACK, + sym__newline_token, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [17600] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5930), 1, + anon_sym_RBRACE, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2358), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, - [17826] = 5, - ACTIONS(5205), 1, + [17622] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5293), 1, + ACTIONS(4882), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1906), 3, + STATE(1901), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17844] = 5, - ACTIONS(5205), 1, + [17640] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5265), 1, + ACTIONS(4892), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1932), 3, + STATE(1928), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17862] = 5, - ACTIONS(5205), 1, + [17658] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5265), 1, + ACTIONS(4892), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2170), 3, + STATE(2159), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17880] = 5, - ACTIONS(5205), 1, + [17676] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - ACTIONS(6125), 1, - anon_sym_RPAREN, - STATE(1989), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [17898] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(5267), 1, + ACTIONS(4882), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1933), 3, + STATE(2178), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17916] = 5, - ACTIONS(5205), 1, + [17694] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5267), 1, + ACTIONS(4767), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2174), 3, + STATE(1929), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17934] = 5, - ACTIONS(5205), 1, + [17712] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4767), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6135), 1, - anon_sym_RPAREN, - STATE(2198), 3, + STATE(2162), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17952] = 5, - ACTIONS(5205), 1, + [17730] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5932), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2382), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [17752] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5293), 1, + ACTIONS(4884), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2195), 3, + STATE(1902), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17970] = 5, - ACTIONS(5205), 1, + [17770] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4884), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6055), 1, - anon_sym_RPAREN, - STATE(2250), 3, + STATE(2186), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [17988] = 7, - ACTIONS(6007), 1, + [17788] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6424), 1, + ACTIONS(5992), 1, anon_sym_RBRACE, - STATE(2347), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [18010] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6333), 1, - anon_sym_RBRACE, - STATE(2355), 1, + STATE(2424), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [18032] = 5, - ACTIONS(5205), 1, + [17810] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6127), 1, + ACTIONS(5609), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18050] = 5, - ACTIONS(5205), 1, + [17828] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6127), 1, + ACTIONS(5663), 1, anon_sym_RPAREN, - STATE(1934), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18068] = 5, - ACTIONS(5205), 1, + [17846] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6127), 1, + ACTIONS(5663), 1, anon_sym_RPAREN, - STATE(2181), 3, + STATE(1932), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18086] = 5, - ACTIONS(5205), 1, + [17864] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6079), 1, + ACTIONS(5663), 1, anon_sym_RPAREN, - STATE(2260), 3, + STATE(2168), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18104] = 5, - ACTIONS(5205), 1, + [17882] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6129), 1, + ACTIONS(5665), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18122] = 5, - ACTIONS(5205), 1, + [17900] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6129), 1, + ACTIONS(5665), 1, anon_sym_RPAREN, - STATE(1935), 3, + STATE(1933), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18140] = 5, - ACTIONS(5205), 1, + [17918] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6129), 1, + ACTIONS(5665), 1, + anon_sym_RPAREN, + STATE(2171), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17936] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(4872), 1, anon_sym_RPAREN, - STATE(2184), 3, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + STATE(1945), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18158] = 7, - ACTIONS(6007), 1, + [17954] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6426), 1, + ACTIONS(5994), 1, anon_sym_RBRACE, - STATE(2370), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2412), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, - [18180] = 5, - ACTIONS(5205), 1, + [17976] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5243), 1, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(5671), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + STATE(2172), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [17994] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2122), 3, + ACTIONS(5671), 1, + anon_sym_RPAREN, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18198] = 5, - ACTIONS(5205), 1, + [18012] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6131), 1, + ACTIONS(5673), 1, anon_sym_RPAREN, - STATE(2185), 3, + STATE(2174), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18216] = 5, - ACTIONS(5205), 1, + [18030] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5996), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2347), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [18052] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6043), 1, + ACTIONS(5673), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18234] = 5, - ACTIONS(5205), 1, + [18070] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6131), 1, + ACTIONS(5998), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18252] = 5, - ACTIONS(5205), 1, + [18088] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6133), 1, + ACTIONS(5998), 1, anon_sym_RPAREN, - STATE(2187), 3, + STATE(2176), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18270] = 5, - ACTIONS(5205), 1, + [18106] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6043), 1, + ACTIONS(6000), 1, anon_sym_RPAREN, - STATE(1909), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18288] = 5, - ACTIONS(5205), 1, + [18124] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6133), 1, + ACTIONS(6000), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2177), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18306] = 5, - ACTIONS(5205), 1, + [18142] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6428), 1, + ACTIONS(6002), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18324] = 5, - ACTIONS(5205), 1, + [18160] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6428), 1, + ACTIONS(6004), 1, anon_sym_RPAREN, - STATE(2189), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18342] = 5, - ACTIONS(5205), 1, + [18178] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6430), 1, + ACTIONS(5567), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18360] = 5, - ACTIONS(5205), 1, + [18196] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4795), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6430), 1, - anon_sym_RPAREN, - STATE(2190), 3, + STATE(1934), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18378] = 5, - ACTIONS(5205), 1, + [18214] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4795), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6432), 1, - anon_sym_RPAREN, - STATE(1989), 3, + STATE(2190), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18396] = 5, - ACTIONS(5205), 1, + [18232] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6434), 1, + ACTIONS(5567), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1903), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18414] = 5, - ACTIONS(5205), 1, + [18250] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6043), 1, + ACTIONS(5567), 1, anon_sym_RPAREN, - STATE(2212), 3, + STATE(2199), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18432] = 5, - ACTIONS(5205), 1, + [18268] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4797), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6079), 1, - anon_sym_RPAREN, - STATE(1989), 3, + STATE(1935), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18450] = 5, - ACTIONS(5205), 1, + [18286] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4797), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6135), 1, - anon_sym_RPAREN, - STATE(1989), 3, + STATE(2193), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18468] = 7, - ACTIONS(6007), 1, + [18304] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6436), 1, + ACTIONS(5805), 1, anon_sym_RBRACE, - STATE(2369), 1, + STATE(2335), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [18490] = 5, - ACTIONS(5205), 1, + [18326] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6045), 1, + ACTIONS(5569), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18508] = 5, - ACTIONS(5205), 1, + [18344] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + ACTIONS(5569), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1904), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18526] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - ACTIONS(6438), 1, - anon_sym_RPAREN, - STATE(2200), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [18544] = 5, - ACTIONS(5205), 1, + [18362] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6006), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2434), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [18384] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6440), 1, + ACTIONS(5569), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2208), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18562] = 5, - ACTIONS(5205), 1, + [18402] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6440), 1, + ACTIONS(5675), 1, anon_sym_RPAREN, - STATE(2201), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18580] = 5, - ACTIONS(5205), 1, + [18420] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6442), 1, + ACTIONS(5675), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1938), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18598] = 5, - ACTIONS(5205), 1, + [18438] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6444), 1, + ACTIONS(5675), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2202), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18616] = 5, - ACTIONS(5205), 1, + [18456] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6155), 1, + ACTIONS(5677), 1, anon_sym_RPAREN, - STATE(2247), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18634] = 5, - ACTIONS(5205), 1, + [18474] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6045), 1, + ACTIONS(5677), 1, anon_sym_RPAREN, - STATE(1910), 3, + STATE(1939), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18652] = 5, - ACTIONS(5205), 1, + [18492] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6045), 1, + ACTIONS(5571), 1, anon_sym_RPAREN, - STATE(2215), 3, + STATE(2212), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18670] = 2, - ACTIONS(5179), 2, - sym__latex_span_close, - sym__backslash_escape, - ACTIONS(5181), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__newline_token, - aux_sym_latex_span_token1, - aux_sym_latex_span_token2, - [18682] = 5, - ACTIONS(5205), 1, + [18510] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5861), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2386), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [18532] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6065), 1, + ACTIONS(5677), 1, anon_sym_RPAREN, - STATE(2092), 3, + STATE(2211), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18700] = 7, - ACTIONS(6007), 1, + [18550] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6372), 1, + ACTIONS(5843), 1, anon_sym_RBRACE, - STATE(2341), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2441), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, - [18722] = 5, - ACTIONS(5205), 1, + [18572] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6081), 1, + ACTIONS(5571), 1, anon_sym_RPAREN, - STATE(2277), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18740] = 5, - ACTIONS(5205), 1, + [18590] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6077), 1, + ACTIONS(5683), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2238), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18758] = 5, - ACTIONS(5205), 1, + [18608] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6051), 1, + ACTIONS(5573), 1, anon_sym_RPAREN, - STATE(2221), 3, + STATE(2215), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18776] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6309), 1, - anon_sym_RBRACE, - STATE(2352), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [18798] = 5, - ACTIONS(5205), 1, + [18626] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6051), 1, + ACTIONS(5683), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18816] = 5, - ACTIONS(5205), 1, + [18644] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6053), 1, + ACTIONS(5691), 1, anon_sym_RPAREN, - STATE(2224), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18834] = 7, - ACTIONS(6007), 1, + [18662] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6378), 1, + ACTIONS(5916), 1, anon_sym_RBRACE, - STATE(2364), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2348), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, - [18856] = 5, - ACTIONS(5205), 1, + [18684] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6053), 1, + ACTIONS(5685), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2240), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18874] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6370), 1, - anon_sym_RBRACE, - STATE(2362), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [18896] = 5, - ACTIONS(5205), 1, + [18702] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5283), 1, + ACTIONS(4791), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1941), 3, + STATE(1940), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18914] = 5, - ACTIONS(5205), 1, + [18720] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5283), 1, + ACTIONS(4791), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2225), 3, + STATE(2216), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18932] = 5, - ACTIONS(5205), 1, + [18738] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5285), 1, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(5573), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + STATE(1969), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [18756] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(4793), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1942), 3, + STATE(1941), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18950] = 5, - ACTIONS(5205), 1, + [18774] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5285), 1, + ACTIONS(4793), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2229), 3, + STATE(2220), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18968] = 5, - ACTIONS(5205), 1, + [18792] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6446), 1, + ACTIONS(5685), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [18986] = 5, - ACTIONS(5205), 1, + [18810] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6446), 1, + ACTIONS(6008), 1, anon_sym_RPAREN, - STATE(2232), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19004] = 7, - ACTIONS(6007), 1, + [18828] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(6008), 1, + anon_sym_RPAREN, + STATE(2223), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [18846] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6448), 1, + ACTIONS(6010), 1, anon_sym_RBRACE, - STATE(2365), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2450), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, - [19026] = 5, - ACTIONS(5205), 1, + [18868] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6450), 1, + ACTIONS(6012), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19044] = 5, - ACTIONS(5205), 1, + [18886] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6157), 1, + ACTIONS(5687), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19062] = 5, - ACTIONS(5205), 1, + [18904] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6157), 1, + ACTIONS(5687), 1, anon_sym_RPAREN, STATE(1943), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19080] = 5, - ACTIONS(5205), 1, + [18922] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6157), 1, + ACTIONS(5687), 1, anon_sym_RPAREN, - STATE(2236), 3, + STATE(2227), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19098] = 5, - ACTIONS(5205), 1, + [18940] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6450), 1, + ACTIONS(6012), 1, anon_sym_RPAREN, - STATE(2233), 3, + STATE(2224), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19116] = 5, - ACTIONS(5205), 1, + [18958] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6159), 1, + ACTIONS(5689), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19134] = 5, - ACTIONS(5205), 1, + [18976] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6159), 1, + ACTIONS(5689), 1, anon_sym_RPAREN, STATE(1944), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19152] = 5, - ACTIONS(5205), 1, + [18994] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6159), 1, + ACTIONS(5689), 1, anon_sym_RPAREN, - STATE(2239), 3, + STATE(2230), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19170] = 5, - ACTIONS(5205), 1, + [19012] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6452), 1, + ACTIONS(6014), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19188] = 5, - ACTIONS(5205), 1, + [19030] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6454), 1, + ACTIONS(6016), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19206] = 5, - ACTIONS(5205), 1, + [19048] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6161), 1, + ACTIONS(5693), 1, anon_sym_RPAREN, - STATE(2240), 3, + STATE(2231), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19224] = 5, - ACTIONS(5205), 1, + [19066] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5277), 1, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(5691), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + STATE(1927), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [19084] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1948), 3, + ACTIONS(5693), 1, + anon_sym_RPAREN, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19242] = 5, - ACTIONS(5205), 1, + [19102] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6161), 1, + ACTIONS(5695), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2332), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19260] = 5, - ACTIONS(5205), 1, + [19120] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5847), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2366), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [19142] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6163), 1, + ACTIONS(5695), 1, anon_sym_RPAREN, - STATE(2242), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19278] = 5, - ACTIONS(5205), 1, + [19160] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6055), 1, + ACTIONS(6018), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19296] = 5, - ACTIONS(5205), 1, + [19178] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6163), 1, + ACTIONS(6018), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2235), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19314] = 5, - ACTIONS(5205), 1, + [19196] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6456), 1, + ACTIONS(5611), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2062), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19332] = 5, - ACTIONS(5205), 1, + [19214] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6456), 1, + ACTIONS(6020), 1, anon_sym_RPAREN, - STATE(2244), 3, + STATE(2236), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19350] = 5, - ACTIONS(5205), 1, + [19232] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6458), 1, + ACTIONS(6022), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19368] = 5, - ACTIONS(5205), 1, + [19250] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6458), 1, + ACTIONS(6024), 1, anon_sym_RPAREN, - STATE(2245), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19386] = 5, - ACTIONS(5205), 1, + [19268] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6460), 1, + ACTIONS(5691), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2074), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19404] = 5, - ACTIONS(5205), 1, + [19286] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6462), 1, + ACTIONS(6026), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19422] = 5, - ACTIONS(5205), 1, + [19304] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5277), 1, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(6026), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + STATE(2242), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [19322] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2266), 3, + ACTIONS(6028), 1, + anon_sym_RPAREN, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19440] = 5, - ACTIONS(5205), 1, + [19340] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6464), 1, + ACTIONS(6028), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2243), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19458] = 5, - ACTIONS(5205), 1, + [19358] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6466), 1, + ACTIONS(6030), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19476] = 5, - ACTIONS(5205), 1, + [19376] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6466), 1, + ACTIONS(6032), 1, anon_sym_RPAREN, - STATE(2256), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19494] = 5, - ACTIONS(5205), 1, + [19394] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6468), 1, + ACTIONS(6034), 1, + anon_sym_RPAREN, + STATE(1969), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [19412] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(6034), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2099), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19512] = 5, - ACTIONS(5205), 1, + [19430] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5279), 1, + ACTIONS(4890), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1951), 3, + STATE(1947), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19530] = 5, - ACTIONS(5205), 1, + [19448] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6464), 1, + ACTIONS(5697), 1, anon_sym_RPAREN, - STATE(2117), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19548] = 5, - ACTIONS(5205), 1, + [19466] = 2, + ACTIONS(4619), 2, + sym__latex_span_close, + sym__backslash_escape, + ACTIONS(4621), 5, + anon_sym_LBRACK, + anon_sym_RBRACK, + sym__newline_token, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, + [19478] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5279), 1, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(5697), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + STATE(1908), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [19496] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2286), 3, + ACTIONS(6036), 1, + anon_sym_RPAREN, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19566] = 5, - ACTIONS(5205), 1, + [19514] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6468), 1, + ACTIONS(5697), 1, anon_sym_RPAREN, - STATE(2257), 3, + STATE(2140), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19584] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6317), 1, - anon_sym_RBRACE, - STATE(2377), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [19606] = 5, - ACTIONS(5205), 1, + [19532] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6470), 1, + ACTIONS(6036), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2133), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19624] = 5, - ACTIONS(5205), 1, + [19550] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6472), 1, + ACTIONS(5731), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19642] = 5, - ACTIONS(5205), 1, + [19568] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(5731), 1, + anon_sym_RPAREN, + STATE(1900), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [19586] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5924), 1, + anon_sym_RBRACE, + STATE(2345), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2496), 1, + sym__attribute, + [19608] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + ACTIONS(5731), 1, + anon_sym_RPAREN, + STATE(2091), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [19626] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5894), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2400), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [19648] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4890), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6081), 1, - anon_sym_RPAREN, - STATE(1989), 3, + STATE(2259), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19660] = 5, - ACTIONS(5205), 1, + [19666] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6155), 1, + ACTIONS(5707), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19678] = 5, - ACTIONS(5205), 1, + [19684] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6474), 1, + ACTIONS(5707), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1910), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19696] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6476), 1, - anon_sym_RBRACE, - STATE(2374), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [19718] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6339), 1, - anon_sym_RBRACE, - STATE(2379), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [19740] = 5, - ACTIONS(5205), 1, + [19702] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6145), 1, + ACTIONS(5707), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2158), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19758] = 5, - ACTIONS(5205), 1, + [19720] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4783), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6474), 1, - anon_sym_RPAREN, - STATE(2311), 3, + STATE(1909), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19776] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6366), 1, - anon_sym_RBRACE, - STATE(2392), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [19798] = 5, - ACTIONS(5205), 1, + [19738] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4783), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6183), 1, - anon_sym_RPAREN, - STATE(1989), 3, + STATE(2298), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19816] = 7, - ACTIONS(6007), 1, + [19756] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6257), 1, + ACTIONS(5922), 1, anon_sym_RBRACE, - STATE(2339), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2403), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, - [19838] = 7, - ACTIONS(6007), 1, + [19778] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6380), 1, + ACTIONS(5914), 1, anon_sym_RBRACE, - STATE(2380), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2422), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, - [19860] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(5305), 1, - anon_sym_RPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - STATE(1949), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [19878] = 5, - ACTIONS(5205), 1, + [19800] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5305), 1, + ACTIONS(4817), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2278), 3, + STATE(1950), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19896] = 5, - ACTIONS(5205), 1, + [19818] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5307), 1, + ACTIONS(4817), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1950), 3, + STATE(2274), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19914] = 5, - ACTIONS(5205), 1, + [19836] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5307), 1, + ACTIONS(4819), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2282), 3, + STATE(1951), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19932] = 5, - ACTIONS(5205), 1, + [19854] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5303), 1, + ACTIONS(4819), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1957), 3, + STATE(2278), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19950] = 5, - ACTIONS(5205), 1, + [19872] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - ACTIONS(6183), 1, + ACTIONS(4811), 1, anon_sym_RPAREN, - STATE(1955), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [19968] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6183), 1, - anon_sym_RPAREN, - STATE(2331), 3, + STATE(1930), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [19986] = 7, - ACTIONS(6007), 1, + [19890] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6478), 1, + ACTIONS(5884), 1, anon_sym_RBRACE, - STATE(2383), 1, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2356), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2496), 1, + sym__attribute, + [19912] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6038), 1, + anon_sym_RBRACE, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2392), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, - [20008] = 5, - ACTIONS(5205), 1, + [19934] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6480), 1, - anon_sym_RPAREN, - STATE(1989), 3, + STATE(1915), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20026] = 5, - ACTIONS(5205), 1, + [19952] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6185), 1, + ACTIONS(5725), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20044] = 5, - ACTIONS(5205), 1, + [19970] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6185), 1, + ACTIONS(5725), 1, anon_sym_RPAREN, STATE(1952), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20062] = 5, - ACTIONS(5205), 1, + [19988] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6185), 1, + ACTIONS(5725), 1, anon_sym_RPAREN, - STATE(2289), 3, + STATE(2285), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20080] = 5, - ACTIONS(5205), 1, + [20006] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6482), 1, - anon_sym_RPAREN, - STATE(1989), 3, + STATE(2075), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20098] = 5, - ACTIONS(5205), 1, + [20024] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6187), 1, + ACTIONS(5727), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20116] = 5, - ACTIONS(5205), 1, + [20042] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6187), 1, + ACTIONS(5727), 1, anon_sym_RPAREN, - STATE(1953), 3, + STATE(1899), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20134] = 5, - ACTIONS(5205), 1, + [20060] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6187), 1, + ACTIONS(5727), 1, anon_sym_RPAREN, - STATE(2292), 3, + STATE(2288), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20152] = 5, - ACTIONS(5205), 1, + [20078] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5303), 1, + ACTIONS(4811), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2308), 3, + STATE(2055), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20170] = 5, - ACTIONS(5205), 1, + [20096] = 5, + ACTIONS(4759), 1, + anon_sym_RPAREN, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6189), 1, - anon_sym_RPAREN, - STATE(1989), 3, + STATE(1931), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20188] = 5, - ACTIONS(5205), 1, + [20114] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6191), 1, + ACTIONS(5729), 1, anon_sym_RPAREN, - STATE(2293), 3, + STATE(2289), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20206] = 5, - ACTIONS(5205), 1, + [20132] = 5, + ACTIONS(4759), 1, + anon_sym_RPAREN, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6189), 1, - anon_sym_RPAREN, - STATE(1956), 3, + STATE(2064), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20224] = 5, - ACTIONS(5205), 1, + [20150] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6191), 1, + ACTIONS(5729), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20242] = 5, - ACTIONS(5205), 1, + [20168] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5559), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6193), 1, - anon_sym_RPAREN, - STATE(2295), 3, + STATE(2291), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20260] = 7, - ACTIONS(6007), 1, + [20186] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6358), 1, + ACTIONS(6040), 1, anon_sym_RBRACE, - STATE(2345), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2430), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, - [20282] = 5, - ACTIONS(5205), 1, + [20208] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5559), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6193), 1, - anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20300] = 5, - ACTIONS(5205), 1, + [20226] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6484), 1, + ACTIONS(6042), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20318] = 5, - ACTIONS(5205), 1, + [20244] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6484), 1, + ACTIONS(6042), 1, anon_sym_RPAREN, - STATE(2297), 3, + STATE(2293), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20336] = 5, - ACTIONS(5205), 1, + [20262] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6486), 1, + ACTIONS(6044), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20354] = 5, - ACTIONS(5205), 1, + [20280] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6486), 1, + ACTIONS(6044), 1, anon_sym_RPAREN, - STATE(2298), 3, + STATE(2294), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20372] = 5, - ACTIONS(5205), 1, + [20298] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6488), 1, + ACTIONS(6046), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20390] = 5, - ACTIONS(5205), 1, + [20316] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6490), 1, + ACTIONS(6048), 1, + anon_sym_RPAREN, + STATE(1969), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [20334] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(4872), 1, anon_sym_RPAREN, - STATE(1989), 3, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + STATE(2247), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20408] = 5, - ACTIONS(5205), 1, + [20352] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5918), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2413), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [20374] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5900), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2372), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [20396] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6189), 1, + ACTIONS(5607), 1, anon_sym_RPAREN, - STATE(2060), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, + [20414] = 2, + ACTIONS(4563), 2, + sym__latex_span_close, + sym__backslash_escape, + ACTIONS(4565), 5, + anon_sym_LBRACK, + anon_sym_RBRACK, + sym__newline_token, + aux_sym_latex_span_token1, + aux_sym_latex_span_token2, [20426] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5321), 1, + ACTIONS(4803), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1915), 3, + STATE(1911), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [20444] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5309), 1, + ACTIONS(4803), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1958), 3, + STATE(2323), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [20462] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5309), 1, + ACTIONS(4779), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2312), 3, + STATE(1956), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [20480] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5321), 1, + ACTIONS(4779), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2320), 3, + STATE(2312), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [20498] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6480), 1, + ACTIONS(5607), 1, anon_sym_RPAREN, - STATE(2318), 3, + STATE(1916), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, [20516] = 5, - ACTIONS(5205), 1, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5323), 1, + ACTIONS(4781), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(1916), 3, + STATE(1957), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20534] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6492), 1, - anon_sym_RBRACE, - STATE(2414), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, - [20556] = 5, - ACTIONS(5205), 1, + [20534] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(5323), 1, + ACTIONS(4781), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2209), 3, + STATE(2315), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20574] = 5, - ACTIONS(5205), 1, + [20552] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(4805), 1, + anon_sym_RPAREN, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6201), 1, + STATE(1912), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [20570] = 5, + ACTIONS(4761), 1, + sym__newline_token, + ACTIONS(4805), 1, anon_sym_RPAREN, - STATE(1989), 3, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + STATE(2056), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20592] = 5, - ACTIONS(5205), 1, + [20588] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6201), 1, + ACTIONS(5607), 1, anon_sym_RPAREN, - STATE(1959), 3, + STATE(2082), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20610] = 5, - ACTIONS(5205), 1, + [20606] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6050), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2415), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [20628] = 7, + ACTIONS(5585), 1, + sym_class_specifier, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6052), 1, + anon_sym_RBRACE, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(2350), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [20650] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6201), 1, + ACTIONS(5749), 1, anon_sym_RPAREN, - STATE(2319), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20628] = 5, - ACTIONS(5205), 1, + [20668] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6494), 1, + ACTIONS(5749), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1958), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20646] = 5, - ACTIONS(5205), 1, + [20686] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6203), 1, + ACTIONS(5749), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2321), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20664] = 5, - ACTIONS(5205), 1, + [20704] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6203), 1, + ACTIONS(5751), 1, anon_sym_RPAREN, - STATE(1900), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20682] = 5, - ACTIONS(5205), 1, + [20722] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6203), 1, + ACTIONS(5751), 1, anon_sym_RPAREN, - STATE(2322), 3, + STATE(1959), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20700] = 5, - ACTIONS(5205), 1, + [20740] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6197), 1, + ACTIONS(5751), 1, anon_sym_RPAREN, - STATE(2063), 3, + STATE(2324), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20718] = 7, - ACTIONS(6007), 1, + [20758] = 7, + ACTIONS(5585), 1, sym_class_specifier, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6496), 1, + ACTIONS(6054), 1, anon_sym_RBRACE, - STATE(2351), 1, + STATE(2337), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, + STATE(2346), 1, aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [20740] = 5, - ACTIONS(5205), 1, + [20780] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6205), 1, + ACTIONS(5753), 1, anon_sym_RPAREN, - STATE(2323), 3, + STATE(2325), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20758] = 5, - ACTIONS(5205), 1, + [20798] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6498), 1, + ACTIONS(5661), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2108), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20776] = 5, - ACTIONS(5205), 1, + [20816] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6205), 1, + ACTIONS(5753), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20794] = 5, - ACTIONS(5205), 1, + [20834] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6075), 1, + ACTIONS(5755), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2327), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20812] = 5, - ACTIONS(5205), 1, + [20852] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6075), 1, - anon_sym_RPAREN, - STATE(1919), 3, - sym__whitespace, - sym__soft_line_break, - aux_sym_inline_link_repeat1, - [20830] = 5, - ACTIONS(5205), 1, - sym__newline_token, - ACTIONS(6017), 1, + ACTIONS(5611), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20848] = 5, - ACTIONS(5205), 1, + [20870] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6500), 1, + ACTIONS(5755), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20866] = 5, - ACTIONS(5205), 1, + [20888] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6500), 1, + ACTIONS(6056), 1, anon_sym_RPAREN, - STATE(2327), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20884] = 5, - ACTIONS(5205), 1, + [20906] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6502), 1, + ACTIONS(6056), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2329), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20902] = 5, - ACTIONS(5205), 1, + [20924] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6502), 1, + ACTIONS(6058), 1, anon_sym_RPAREN, - STATE(2328), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20920] = 5, - ACTIONS(5205), 1, + [20942] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6504), 1, + ACTIONS(6058), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(2330), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20938] = 5, - ACTIONS(5205), 1, + [20960] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6506), 1, + ACTIONS(6060), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20956] = 5, - ACTIONS(5205), 1, + [20978] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6422), 1, + ACTIONS(6062), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20974] = 5, - ACTIONS(5205), 1, + [20996] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6075), 1, + ACTIONS(5611), 1, anon_sym_RPAREN, - STATE(2061), 3, + STATE(1913), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [20992] = 5, - ACTIONS(5205), 1, + [21014] = 5, + ACTIONS(4761), 1, sym__newline_token, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - ACTIONS(6197), 1, + ACTIONS(6020), 1, anon_sym_RPAREN, - STATE(1989), 3, + STATE(1969), 3, sym__whitespace, sym__soft_line_break, aux_sym_inline_link_repeat1, - [21010] = 7, - ACTIONS(6007), 1, - sym_class_specifier, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6209), 1, - anon_sym_RBRACE, - ACTIONS(6213), 1, - sym_commonmark_name, - STATE(2359), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(2451), 1, - sym__attribute, [21032] = 3, - ACTIONS(6510), 1, + ACTIONS(6066), 1, sym__commonmark_whitespace, - ACTIONS(6512), 1, + ACTIONS(6068), 1, sym_key_value_key, - ACTIONS(6508), 4, + ACTIONS(6064), 4, anon_sym_RBRACE, sym_commonmark_name, sym_id_specifier, sym_class_specifier, [21045] = 4, - ACTIONS(6516), 1, + ACTIONS(6072), 1, sym_id_specifier, - ACTIONS(6519), 1, + ACTIONS(6075), 1, sym_key_value_key, STATE(2334), 1, aux_sym_commonmark_attribute_repeat1, - ACTIONS(6514), 3, - anon_sym_RBRACE, - sym_commonmark_name, - sym_class_specifier, - [21060] = 4, - ACTIONS(6521), 1, - sym_shortcode_name, - ACTIONS(6523), 1, - sym_shortcode_number, - STATE(2664), 1, - sym_shortcode_boolean, - ACTIONS(5875), 2, - anon_sym_true, - anon_sym_false, - [21074] = 5, - ACTIONS(6525), 1, - sym__whitespace_ge_2, - ACTIONS(6527), 1, - aux_sym__whitespace_token1, - STATE(1891), 1, - sym__whitespace, - STATE(2452), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2517), 1, - aux_sym_shortcode_escaped_repeat2, - [21090] = 5, - ACTIONS(6525), 1, - sym__whitespace_ge_2, - ACTIONS(6527), 1, - aux_sym__whitespace_token1, - STATE(1848), 1, - sym__whitespace, - STATE(2452), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2499), 1, - aux_sym_shortcode_escaped_repeat2, - [21106] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6364), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21122] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6358), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21138] = 5, - ACTIONS(6525), 1, - sym__whitespace_ge_2, - ACTIONS(6527), 1, - aux_sym__whitespace_token1, - STATE(1878), 1, - sym__whitespace, - STATE(2337), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2454), 1, - aux_sym_shortcode_escaped_repeat2, - [21154] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6406), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21170] = 3, - ACTIONS(6531), 1, - sym__commonmark_whitespace, - ACTIONS(6533), 1, - sym_key_value_key, - ACTIONS(6529), 3, - anon_sym_RBRACE, - sym_commonmark_name, - sym_class_specifier, - [21182] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6424), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21198] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6535), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21214] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6496), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21230] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6362), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21246] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6537), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21262] = 5, - ACTIONS(6539), 1, - anon_sym_DQUOTE, - ACTIONS(6541), 1, - anon_sym_SQUOTE, - ACTIONS(6543), 1, - sym__commonmark_whitespace, - ACTIONS(6545), 1, - aux_sym_key_value_value_token1, - STATE(2500), 1, - sym_key_value_value, - [21278] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6247), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21294] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6372), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21310] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6547), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21326] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6374), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21342] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6436), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21358] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6549), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21374] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6378), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21390] = 2, - ACTIONS(6519), 1, - sym_key_value_key, - ACTIONS(6514), 4, + ACTIONS(6070), 3, anon_sym_RBRACE, sym_commonmark_name, - sym_id_specifier, sym_class_specifier, - [21400] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6360), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21416] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6209), 1, - anon_sym_RBRACE, - ACTIONS(6213), 1, - sym_commonmark_name, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21432] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6370), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21448] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6277), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21464] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6231), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21480] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6448), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21496] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6426), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21512] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6476), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21528] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6551), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21544] = 5, - ACTIONS(6009), 1, + [21060] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6281), 1, + ACTIONS(5922), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21560] = 5, - ACTIONS(6009), 1, + [21076] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6376), 1, + ACTIONS(5930), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21576] = 5, - ACTIONS(6009), 1, + [21092] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6309), 1, + ACTIONS(6077), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21592] = 5, - ACTIONS(6009), 1, + [21108] = 2, + ACTIONS(6075), 1, + sym_key_value_key, + ACTIONS(6070), 4, + anon_sym_RBRACE, + sym_commonmark_name, + sym_id_specifier, + sym_class_specifier, + [21118] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6553), 1, + ACTIONS(5928), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21608] = 5, - ACTIONS(6009), 1, + [21134] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6555), 1, + ACTIONS(5932), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21624] = 5, - ACTIONS(6009), 1, + [21150] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6368), 1, + ACTIONS(5986), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21640] = 5, - ACTIONS(6009), 1, + [21166] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6317), 1, + ACTIONS(6079), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21656] = 5, - ACTIONS(6539), 1, - anon_sym_DQUOTE, - ACTIONS(6541), 1, - anon_sym_SQUOTE, - ACTIONS(6545), 1, - aux_sym_key_value_value_token1, - ACTIONS(6557), 1, - sym__commonmark_whitespace, - STATE(2466), 1, - sym_key_value_value, - [21672] = 5, - ACTIONS(6009), 1, + [21182] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6559), 1, + ACTIONS(5847), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21688] = 5, - ACTIONS(6009), 1, + [21198] = 5, + ACTIONS(6081), 1, + sym__whitespace_ge_2, + ACTIONS(6083), 1, + aux_sym__whitespace_token1, + STATE(1890), 1, + sym__whitespace, + STATE(2469), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2470), 1, + aux_sym_shortcode_escaped_repeat2, + [21214] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6339), 1, + ACTIONS(6040), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21704] = 5, - ACTIONS(6009), 1, + [21230] = 4, + ACTIONS(6087), 1, + sym_class_specifier, + ACTIONS(6090), 1, sym_key_value_key, - ACTIONS(6213), 1, + STATE(2346), 1, + aux_sym_commonmark_attribute_repeat2, + ACTIONS(6085), 2, + anon_sym_RBRACE, sym_commonmark_name, - ACTIONS(6408), 1, + [21244] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6092), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21720] = 5, - ACTIONS(6009), 1, + [21260] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6366), 1, + ACTIONS(6010), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21736] = 5, - ACTIONS(6009), 1, + [21276] = 4, + ACTIONS(6094), 1, + sym_shortcode_name, + ACTIONS(6096), 1, + sym_shortcode_number, + STATE(2658), 1, + sym_shortcode_boolean, + ACTIONS(5431), 2, + anon_sym_true, + anon_sym_false, + [21290] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6404), 1, + ACTIONS(6098), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21752] = 5, - ACTIONS(6009), 1, + [21306] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6380), 1, + ACTIONS(5900), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21768] = 5, - ACTIONS(6009), 1, + [21322] = 5, + ACTIONS(6081), 1, + sym__whitespace_ge_2, + ACTIONS(6083), 1, + aux_sym__whitespace_token1, + STATE(1853), 1, + sym__whitespace, + STATE(2354), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2460), 1, + aux_sym_shortcode_escaped_repeat2, + [21338] = 5, + ACTIONS(6100), 1, + sym__whitespace_ge_2, + ACTIONS(6102), 1, + aux_sym__whitespace_token1, + STATE(1854), 1, + sym__whitespace, + STATE(2355), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2461), 1, + aux_sym_shortcode_escaped_repeat2, + [21354] = 5, + ACTIONS(6081), 1, + sym__whitespace_ge_2, + ACTIONS(6083), 1, + aux_sym__whitespace_token1, + STATE(1859), 1, + sym__whitespace, + STATE(2462), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2469), 1, + aux_sym_shortcode_escaped_repeat1, + [21370] = 5, + ACTIONS(6100), 1, + sym__whitespace_ge_2, + ACTIONS(6102), 1, + aux_sym__whitespace_token1, + STATE(1846), 1, + sym__whitespace, + STATE(2463), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2469), 1, + aux_sym_shortcode_escaped_repeat1, + [21386] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6478), 1, + ACTIONS(5918), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21784] = 5, - ACTIONS(6009), 1, + [21402] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6561), 1, + ACTIONS(5783), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21800] = 5, - ACTIONS(6009), 1, + [21418] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6299), 1, + ACTIONS(5992), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21816] = 5, - ACTIONS(6009), 1, + [21434] = 4, + ACTIONS(6104), 1, + sym_shortcode_name, + ACTIONS(6106), 1, + sym_shortcode_number, + STATE(2749), 1, + sym_shortcode_boolean, + ACTIONS(5431), 2, + anon_sym_true, + anon_sym_false, + [21448] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6563), 1, + ACTIONS(5894), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21832] = 5, - ACTIONS(6565), 1, + [21464] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - STATE(1877), 1, + STATE(1873), 1, sym__whitespace, - STATE(2443), 1, + STATE(2363), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2511), 1, + STATE(2465), 1, aux_sym_shortcode_escaped_repeat2, - [21848] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6420), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [21864] = 4, - ACTIONS(6569), 1, + [21480] = 5, + ACTIONS(6100), 1, + sym__whitespace_ge_2, + ACTIONS(6102), 1, + aux_sym__whitespace_token1, + STATE(1874), 1, + sym__whitespace, + STATE(2364), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2466), 1, + aux_sym_shortcode_escaped_repeat2, + [21496] = 5, + ACTIONS(6081), 1, + sym__whitespace_ge_2, + ACTIONS(6083), 1, + aux_sym__whitespace_token1, + STATE(1875), 1, + sym__whitespace, + STATE(2467), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2469), 1, + aux_sym_shortcode_escaped_repeat1, + [21512] = 5, + ACTIONS(6100), 1, + sym__whitespace_ge_2, + ACTIONS(6102), 1, + aux_sym__whitespace_token1, + STATE(1876), 1, + sym__whitespace, + STATE(2468), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2469), 1, + aux_sym_shortcode_escaped_repeat1, + [21528] = 4, + ACTIONS(6108), 1, sym_shortcode_name, - ACTIONS(6571), 1, + ACTIONS(6110), 1, sym_shortcode_number, - STATE(2738), 1, + STATE(2677), 1, sym_shortcode_boolean, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - [21878] = 5, - ACTIONS(6565), 1, + [21542] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5924), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [21558] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - STATE(1857), 1, + STATE(1892), 1, sym__whitespace, - STATE(2389), 1, + STATE(2369), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2461), 1, + STATE(2472), 1, aux_sym_shortcode_escaped_repeat2, - [21894] = 5, - ACTIONS(6525), 1, + [21574] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1858), 1, + STATE(1893), 1, sym__whitespace, - STATE(2390), 1, + STATE(2370), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2462), 1, + STATE(2473), 1, aux_sym_shortcode_escaped_repeat2, - [21910] = 5, - ACTIONS(6565), 1, + [21590] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - STATE(1859), 1, + STATE(1894), 1, sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2463), 1, + STATE(2474), 1, aux_sym_shortcode_escaped_repeat2, - [21926] = 5, - ACTIONS(6525), 1, + [21606] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, STATE(1860), 1, sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2464), 1, + STATE(2475), 1, aux_sym_shortcode_escaped_repeat2, - [21942] = 4, - ACTIONS(6573), 1, + [21622] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6112), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [21638] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5926), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [21654] = 3, + ACTIONS(6116), 1, + sym__commonmark_whitespace, + ACTIONS(6118), 1, + sym_key_value_key, + ACTIONS(6114), 3, + anon_sym_RBRACE, + sym_commonmark_name, + sym_class_specifier, + [21666] = 4, + ACTIONS(6120), 1, sym_shortcode_name, - ACTIONS(6575), 1, + ACTIONS(6122), 1, sym_shortcode_number, - STATE(2746), 1, + STATE(2689), 1, sym_shortcode_boolean, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - [21956] = 5, - ACTIONS(6009), 1, + [21680] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6492), 1, + ACTIONS(5888), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [21972] = 5, - ACTIONS(6565), 1, + [21696] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - STATE(1873), 1, + STATE(1848), 1, sym__whitespace, - STATE(2395), 1, + STATE(2378), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2467), 1, + STATE(2478), 1, aux_sym_shortcode_escaped_repeat2, - [21988] = 5, - ACTIONS(6525), 1, + [21712] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1874), 1, + STATE(1861), 1, sym__whitespace, - STATE(2396), 1, + STATE(2379), 1, aux_sym_shortcode_escaped_repeat1, + STATE(2479), 1, + aux_sym_shortcode_escaped_repeat2, + [21728] = 5, + ACTIONS(6081), 1, + sym__whitespace_ge_2, + ACTIONS(6083), 1, + aux_sym__whitespace_token1, + STATE(1862), 1, + sym__whitespace, STATE(2469), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2480), 1, aux_sym_shortcode_escaped_repeat2, - [22004] = 5, - ACTIONS(6565), 1, + [21744] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1875), 1, + STATE(1867), 1, sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2470), 1, + STATE(2481), 1, aux_sym_shortcode_escaped_repeat2, - [22020] = 5, - ACTIONS(6525), 1, + [21760] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5857), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [21776] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5843), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [21792] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6006), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [21808] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - STATE(1876), 1, + STATE(1847), 1, sym__whitespace, - STATE(2452), 1, + STATE(2344), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2471), 1, + STATE(2458), 1, aux_sym_shortcode_escaped_repeat2, - [22036] = 4, - ACTIONS(6577), 1, + [21824] = 4, + ACTIONS(6124), 1, sym_shortcode_name, - ACTIONS(6579), 1, + ACTIONS(6126), 1, sym_shortcode_number, - STATE(2718), 1, + STATE(2742), 1, sym_shortcode_boolean, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - [22050] = 5, - ACTIONS(6565), 1, + [21838] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5805), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [21854] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5916), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [21870] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - STATE(1892), 1, + STATE(1895), 1, sym__whitespace, - STATE(2400), 1, + STATE(2389), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2472), 1, + STATE(2483), 1, aux_sym_shortcode_escaped_repeat2, - [22066] = 5, - ACTIONS(6525), 1, + [21886] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1893), 1, + STATE(1881), 1, sym__whitespace, - STATE(2401), 1, + STATE(2390), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2474), 1, + STATE(2484), 1, aux_sym_shortcode_escaped_repeat2, - [22082] = 5, - ACTIONS(6565), 1, + [21902] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - STATE(1894), 1, + STATE(1882), 1, sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2475), 1, + STATE(2485), 1, aux_sym_shortcode_escaped_repeat2, - [22098] = 5, - ACTIONS(6525), 1, + [21918] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1868), 1, + STATE(1887), 1, sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2476), 1, + STATE(2486), 1, aux_sym_shortcode_escaped_repeat2, - [22114] = 4, - ACTIONS(6581), 1, + [21934] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5813), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [21950] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6128), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [21966] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6050), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [21982] = 4, + ACTIONS(6130), 1, sym_shortcode_name, - ACTIONS(6583), 1, + ACTIONS(6132), 1, sym_shortcode_number, - STATE(2669), 1, + STATE(2678), 1, sym_shortcode_boolean, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - [22128] = 5, - ACTIONS(6565), 1, + [21996] = 5, + ACTIONS(6134), 1, + anon_sym_DQUOTE, + ACTIONS(6136), 1, + anon_sym_SQUOTE, + ACTIONS(6138), 1, + sym__commonmark_whitespace, + ACTIONS(6140), 1, + aux_sym_key_value_value_token1, + STATE(2497), 1, + sym_key_value_value, + [22012] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, STATE(1849), 1, sym__whitespace, - STATE(2405), 1, + STATE(2398), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2477), 1, + STATE(2518), 1, aux_sym_shortcode_escaped_repeat2, - [22144] = 5, - ACTIONS(6525), 1, + [22028] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, STATE(1850), 1, sym__whitespace, - STATE(2406), 1, + STATE(2399), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2478), 1, + STATE(2488), 1, aux_sym_shortcode_escaped_repeat2, - [22160] = 5, - ACTIONS(6565), 1, + [22044] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, STATE(1851), 1, sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2479), 1, + STATE(2489), 1, aux_sym_shortcode_escaped_repeat2, - [22176] = 5, - ACTIONS(6525), 1, + [22060] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, STATE(1852), 1, sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2480), 1, + STATE(2490), 1, aux_sym_shortcode_escaped_repeat2, - [22192] = 4, - ACTIONS(6585), 1, + [22076] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5914), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22092] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5968), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22108] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5779), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22124] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6052), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22140] = 4, + ACTIONS(6142), 1, sym_shortcode_name, - ACTIONS(6587), 1, + ACTIONS(6144), 1, sym_shortcode_number, - STATE(2801), 1, + STATE(2745), 1, sym_shortcode_boolean, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - [22206] = 5, - ACTIONS(6565), 1, + [22154] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5996), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22170] = 5, + ACTIONS(6146), 1, + anon_sym_RBRACE, + ACTIONS(6148), 1, + sym_commonmark_name, + ACTIONS(6151), 1, + sym_key_value_key, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22186] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - STATE(1853), 1, + STATE(1855), 1, sym__whitespace, - STATE(2410), 1, + STATE(2409), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2481), 1, + STATE(2492), 1, aux_sym_shortcode_escaped_repeat2, - [22222] = 5, - ACTIONS(6525), 1, + [22202] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1854), 1, + STATE(1856), 1, sym__whitespace, - STATE(2411), 1, + STATE(2410), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2482), 1, + STATE(2494), 1, aux_sym_shortcode_escaped_repeat2, - [22238] = 5, - ACTIONS(6565), 1, + [22218] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - STATE(1855), 1, + STATE(1857), 1, sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2483), 1, + STATE(2495), 1, aux_sym_shortcode_escaped_repeat2, - [22254] = 5, - ACTIONS(6525), 1, + [22234] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1856), 1, + STATE(1858), 1, sym__whitespace, - STATE(2452), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2484), 1, + STATE(2451), 1, aux_sym_shortcode_escaped_repeat2, - [22270] = 5, - ACTIONS(6009), 1, + STATE(2469), 1, + aux_sym_shortcode_escaped_repeat1, + [22250] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6257), 1, + ACTIONS(5920), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, + sym__attribute, + [22266] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6154), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22282] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6054), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, sym__attribute, - [22286] = 4, - ACTIONS(6589), 1, + [22298] = 4, + ACTIONS(6156), 1, sym_shortcode_name, - ACTIONS(6591), 1, + ACTIONS(6158), 1, sym_shortcode_number, - STATE(2733), 1, + STATE(2792), 1, sym_shortcode_boolean, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - [22300] = 5, - ACTIONS(6009), 1, + [22312] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6593), 1, + ACTIONS(6160), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [22316] = 5, - ACTIONS(6565), 1, - sym__whitespace_ge_2, - ACTIONS(6567), 1, - aux_sym__whitespace_token1, - STATE(1861), 1, - sym__whitespace, - STATE(2417), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2486), 1, - aux_sym_shortcode_escaped_repeat2, - [22332] = 5, - ACTIONS(6525), 1, - sym__whitespace_ge_2, - ACTIONS(6527), 1, - aux_sym__whitespace_token1, - STATE(1862), 1, - sym__whitespace, - STATE(2418), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2518), 1, - aux_sym_shortcode_escaped_repeat2, - [22348] = 5, - ACTIONS(6565), 1, + STATE(2496), 1, + sym__attribute, + [22328] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, STATE(1863), 1, sym__whitespace, - STATE(2452), 1, + STATE(2418), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2488), 1, + STATE(2498), 1, aux_sym_shortcode_escaped_repeat2, - [22364] = 5, - ACTIONS(6525), 1, + [22344] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, STATE(1864), 1, sym__whitespace, - STATE(2452), 1, + STATE(2419), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2489), 1, + STATE(2499), 1, aux_sym_shortcode_escaped_repeat2, - [22380] = 4, - ACTIONS(6597), 1, - sym_class_specifier, - ACTIONS(6600), 1, - sym_key_value_key, - STATE(2419), 1, - aux_sym_commonmark_attribute_repeat2, - ACTIONS(6595), 2, - anon_sym_RBRACE, - sym_commonmark_name, - [22394] = 4, - ACTIONS(6602), 1, - sym_shortcode_name, - ACTIONS(6604), 1, - sym_shortcode_number, - STATE(2727), 1, - sym_shortcode_boolean, - ACTIONS(5875), 2, - anon_sym_true, - anon_sym_false, - [22408] = 5, - ACTIONS(6565), 1, + [22360] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, STATE(1865), 1, sym__whitespace, - STATE(2423), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2491), 1, + STATE(2500), 1, aux_sym_shortcode_escaped_repeat2, - [22424] = 5, - ACTIONS(6525), 1, + [22376] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, STATE(1866), 1, sym__whitespace, - STATE(2424), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2492), 1, - aux_sym_shortcode_escaped_repeat2, - [22440] = 5, - ACTIONS(6565), 1, - sym__whitespace_ge_2, - ACTIONS(6567), 1, - aux_sym__whitespace_token1, - STATE(1867), 1, - sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2493), 1, + STATE(2501), 1, aux_sym_shortcode_escaped_repeat2, - [22456] = 5, - ACTIONS(6525), 1, + [22392] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5884), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22408] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1895), 1, + STATE(1868), 1, sym__whitespace, - STATE(2452), 1, + STATE(2433), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2494), 1, + STATE(2502), 1, aux_sym_shortcode_escaped_repeat2, - [22472] = 4, - ACTIONS(6606), 1, + [22424] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6038), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22440] = 4, + ACTIONS(6162), 1, sym_shortcode_name, - ACTIONS(6608), 1, + ACTIONS(6164), 1, sym_shortcode_number, - STATE(2660), 1, + STATE(2747), 1, sym_shortcode_boolean, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, + [22454] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6166), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22470] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5861), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, [22486] = 5, - ACTIONS(6565), 1, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, STATE(1869), 1, sym__whitespace, STATE(2428), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2495), 1, + STATE(2503), 1, aux_sym_shortcode_escaped_repeat2, [22502] = 5, - ACTIONS(6525), 1, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, STATE(1870), 1, sym__whitespace, STATE(2429), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2496), 1, + STATE(2504), 1, aux_sym_shortcode_escaped_repeat2, [22518] = 5, - ACTIONS(6565), 1, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, STATE(1871), 1, sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2497), 1, + STATE(2505), 1, aux_sym_shortcode_escaped_repeat2, [22534] = 5, - ACTIONS(6525), 1, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, STATE(1872), 1, sym__whitespace, - STATE(2452), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2498), 1, - aux_sym_shortcode_escaped_repeat2, - [22550] = 4, - ACTIONS(6610), 1, - sym_shortcode_name, - ACTIONS(6612), 1, - sym_shortcode_number, - STATE(2685), 1, - sym_shortcode_boolean, - ACTIONS(5875), 2, - anon_sym_true, - anon_sym_false, - [22564] = 5, - ACTIONS(6565), 1, - sym__whitespace_ge_2, - ACTIONS(6567), 1, - aux_sym__whitespace_token1, - STATE(1879), 1, - sym__whitespace, - STATE(2433), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2501), 1, - aux_sym_shortcode_escaped_repeat2, - [22580] = 5, - ACTIONS(6525), 1, - sym__whitespace_ge_2, - ACTIONS(6527), 1, - aux_sym__whitespace_token1, - STATE(1880), 1, - sym__whitespace, - STATE(2434), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2502), 1, - aux_sym_shortcode_escaped_repeat2, - [22596] = 5, - ACTIONS(6565), 1, - sym__whitespace_ge_2, - ACTIONS(6567), 1, - aux_sym__whitespace_token1, - STATE(1881), 1, - sym__whitespace, - STATE(2452), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(2503), 1, - aux_sym_shortcode_escaped_repeat2, - [22612] = 5, - ACTIONS(6525), 1, - sym__whitespace_ge_2, - ACTIONS(6527), 1, - aux_sym__whitespace_token1, - STATE(1882), 1, - sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2504), 1, + STATE(2506), 1, aux_sym_shortcode_escaped_repeat2, - [22628] = 5, - ACTIONS(6614), 1, - anon_sym_RBRACE, - ACTIONS(6616), 1, - sym_commonmark_name, - ACTIONS(6619), 1, + [22550] = 5, + ACTIONS(5587), 1, sym_key_value_key, - STATE(2435), 1, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6168), 1, + anon_sym_RBRACE, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [22644] = 5, - ACTIONS(6009), 1, + [22566] = 5, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6305), 1, + ACTIONS(5994), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [22660] = 4, - ACTIONS(6622), 1, + [22582] = 4, + ACTIONS(6170), 1, sym_shortcode_name, - ACTIONS(6624), 1, + ACTIONS(6172), 1, sym_shortcode_number, - STATE(2666), 1, + STATE(2672), 1, sym_shortcode_boolean, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, - [22674] = 5, - ACTIONS(6009), 1, - sym_key_value_key, - ACTIONS(6213), 1, - sym_commonmark_name, - ACTIONS(6626), 1, - anon_sym_RBRACE, - STATE(2435), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, - sym__attribute, - [22690] = 5, - ACTIONS(6565), 1, + [22596] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1883), 1, + STATE(1891), 1, sym__whitespace, - STATE(2441), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2506), 1, + STATE(2512), 1, aux_sym_shortcode_escaped_repeat2, - [22706] = 5, - ACTIONS(6525), 1, + [22612] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(6174), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22628] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - STATE(1884), 1, + STATE(1877), 1, sym__whitespace, - STATE(2442), 1, + STATE(2437), 1, aux_sym_shortcode_escaped_repeat1, STATE(2508), 1, aux_sym_shortcode_escaped_repeat2, - [22722] = 5, - ACTIONS(6565), 1, + [22644] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1885), 1, + STATE(1878), 1, sym__whitespace, - STATE(2452), 1, + STATE(2438), 1, aux_sym_shortcode_escaped_repeat1, STATE(2509), 1, aux_sym_shortcode_escaped_repeat2, - [22738] = 5, - ACTIONS(6525), 1, + [22660] = 5, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - STATE(1886), 1, + STATE(1879), 1, sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, STATE(2510), 1, aux_sym_shortcode_escaped_repeat2, - [22754] = 5, - ACTIONS(6565), 1, + [22676] = 5, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1847), 1, + STATE(1880), 1, sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2456), 1, + STATE(2511), 1, aux_sym_shortcode_escaped_repeat2, - [22770] = 4, - ACTIONS(6628), 1, + [22692] = 5, + ACTIONS(6134), 1, + anon_sym_DQUOTE, + ACTIONS(6136), 1, + anon_sym_SQUOTE, + ACTIONS(6140), 1, + aux_sym_key_value_value_token1, + ACTIONS(6176), 1, + sym__commonmark_whitespace, + STATE(2476), 1, + sym_key_value_value, + [22708] = 4, + ACTIONS(6178), 1, sym_shortcode_name, - ACTIONS(6630), 1, + ACTIONS(6180), 1, + sym_shortcode_number, + STATE(2656), 1, + sym_shortcode_boolean, + ACTIONS(5431), 2, + anon_sym_true, + anon_sym_false, + [22722] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5936), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22738] = 4, + ACTIONS(6182), 1, + sym_shortcode_name, + ACTIONS(6184), 1, sym_shortcode_number, - STATE(2740), 1, + STATE(2693), 1, sym_shortcode_boolean, - ACTIONS(5875), 2, + ACTIONS(5431), 2, anon_sym_true, anon_sym_false, + [22752] = 5, + ACTIONS(5587), 1, + sym_key_value_key, + ACTIONS(5767), 1, + sym_commonmark_name, + ACTIONS(5934), 1, + anon_sym_RBRACE, + STATE(2406), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(2496), 1, + sym__attribute, + [22768] = 5, + ACTIONS(6081), 1, + sym__whitespace_ge_2, + ACTIONS(6083), 1, + aux_sym__whitespace_token1, + STATE(1883), 1, + sym__whitespace, + STATE(2446), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2513), 1, + aux_sym_shortcode_escaped_repeat2, [22784] = 5, - ACTIONS(6565), 1, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1887), 1, + STATE(1884), 1, sym__whitespace, STATE(2447), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2512), 1, + STATE(2514), 1, aux_sym_shortcode_escaped_repeat2, [22800] = 5, - ACTIONS(6525), 1, + ACTIONS(6081), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6083), 1, aux_sym__whitespace_token1, - STATE(1888), 1, + STATE(1885), 1, sym__whitespace, - STATE(2448), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2513), 1, + STATE(2515), 1, aux_sym_shortcode_escaped_repeat2, [22816] = 5, - ACTIONS(6565), 1, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6567), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1846), 1, + STATE(1886), 1, sym__whitespace, - STATE(2452), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2514), 1, + STATE(2516), 1, aux_sym_shortcode_escaped_repeat2, [22832] = 5, - ACTIONS(6525), 1, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1889), 1, + STATE(1888), 1, sym__whitespace, - STATE(2452), 1, + STATE(2449), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2515), 1, + STATE(2517), 1, aux_sym_shortcode_escaped_repeat2, [22848] = 5, - ACTIONS(6525), 1, + ACTIONS(6100), 1, sym__whitespace_ge_2, - ACTIONS(6527), 1, + ACTIONS(6102), 1, aux_sym__whitespace_token1, - STATE(1890), 1, + STATE(1889), 1, sym__whitespace, - STATE(2336), 1, + STATE(2469), 1, aux_sym_shortcode_escaped_repeat1, - STATE(2516), 1, + STATE(2487), 1, aux_sym_shortcode_escaped_repeat2, [22864] = 5, - ACTIONS(6009), 1, + ACTIONS(5587), 1, sym_key_value_key, - ACTIONS(6213), 1, + ACTIONS(5767), 1, sym_commonmark_name, - ACTIONS(6333), 1, + ACTIONS(6186), 1, anon_sym_RBRACE, - STATE(2435), 1, + STATE(2406), 1, aux_sym_commonmark_attribute_repeat3, - STATE(2451), 1, + STATE(2496), 1, sym__attribute, - [22880] = 3, - ACTIONS(6634), 1, - sym__commonmark_whitespace, - ACTIONS(6636), 1, - sym_key_value_key, - ACTIONS(6632), 2, - anon_sym_RBRACE, - sym_commonmark_name, - [22891] = 4, - ACTIONS(6638), 1, + [22880] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6641), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(1898), 1, + STATE(2471), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2524), 1, sym__whitespace, - STATE(2452), 1, - aux_sym_shortcode_escaped_repeat1, - [22904] = 2, - ACTIONS(6646), 1, + [22893] = 2, + ACTIONS(6194), 1, sym_key_value_key, - ACTIONS(6644), 3, + ACTIONS(6192), 3, anon_sym_RBRACE, sym__commonmark_whitespace, sym_commonmark_name, - [22913] = 4, - ACTIONS(6648), 1, - sym__whitespace_ge_2, - ACTIONS(6650), 1, - aux_sym__whitespace_token1, - STATE(2465), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(2582), 1, - sym__whitespace, - [22926] = 2, - ACTIONS(6654), 1, + [22902] = 2, + ACTIONS(6090), 1, sym_key_value_key, - ACTIONS(6652), 3, + ACTIONS(6085), 3, anon_sym_RBRACE, - sym__commonmark_whitespace, sym_commonmark_name, - [22935] = 4, - ACTIONS(6656), 1, - sym__whitespace_ge_2, - ACTIONS(6658), 1, + sym_class_specifier, + [22911] = 2, + ACTIONS(6198), 1, aux_sym__whitespace_token1, - STATE(2465), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(2531), 1, - sym__whitespace, - [22948] = 4, - ACTIONS(6019), 1, + ACTIONS(6196), 3, + anon_sym_RPAREN, + sym__newline_token, sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - ACTIONS(6660), 1, + [22920] = 4, + ACTIONS(6200), 1, anon_sym_EQ, - STATE(2682), 1, + ACTIONS(6202), 1, + sym__whitespace_ge_2, + ACTIONS(6205), 1, + aux_sym__whitespace_token1, + STATE(2660), 1, sym__whitespace, - [22961] = 2, - ACTIONS(6600), 1, - sym_key_value_key, - ACTIONS(6595), 3, - anon_sym_RBRACE, - sym_commonmark_name, - sym_class_specifier, - [22970] = 2, - ACTIONS(6664), 1, - sym_key_value_key, - ACTIONS(6662), 3, - anon_sym_RBRACE, - sym__commonmark_whitespace, - sym_commonmark_name, - [22979] = 2, - ACTIONS(5520), 1, + [22933] = 4, + ACTIONS(6134), 1, + anon_sym_DQUOTE, + ACTIONS(6136), 1, + anon_sym_SQUOTE, + ACTIONS(6140), 1, + aux_sym_key_value_value_token1, + STATE(2476), 1, + sym_key_value_value, + [22946] = 2, + ACTIONS(5048), 1, aux_sym__whitespace_token1, - ACTIONS(5518), 3, + ACTIONS(5046), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - [22988] = 4, - ACTIONS(6656), 1, + [22955] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2571), 1, + STATE(2549), 1, sym__whitespace, - [23001] = 4, - ACTIONS(6648), 1, + [22968] = 2, + ACTIONS(6214), 1, + aux_sym__whitespace_token1, + ACTIONS(6212), 3, + anon_sym_RPAREN, + sym__newline_token, sym__whitespace_ge_2, - ACTIONS(6650), 1, + [22977] = 4, + ACTIONS(6208), 1, + sym__whitespace_ge_2, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2585), 1, + STATE(2537), 1, sym__whitespace, - [23014] = 4, - ACTIONS(6656), 1, + [22990] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2568), 1, + STATE(2541), 1, sym__whitespace, - [23027] = 4, - ACTIONS(6648), 1, + [23003] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2576), 1, + STATE(2550), 1, sym__whitespace, - [23040] = 4, - ACTIONS(6666), 1, + [23016] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6669), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2611), 1, + STATE(2551), 1, sym__whitespace, - [23053] = 2, - ACTIONS(6674), 1, + [23029] = 2, + ACTIONS(6218), 1, sym_key_value_key, - ACTIONS(6672), 3, + ACTIONS(6216), 3, anon_sym_RBRACE, sym__commonmark_whitespace, sym_commonmark_name, - [23062] = 4, - ACTIONS(6656), 1, - sym__whitespace_ge_2, - ACTIONS(6658), 1, - aux_sym__whitespace_token1, - STATE(2465), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(2554), 1, - sym__whitespace, - [23075] = 4, - ACTIONS(6539), 1, - anon_sym_DQUOTE, - ACTIONS(6541), 1, - anon_sym_SQUOTE, - ACTIONS(6545), 1, - aux_sym_key_value_value_token1, - STATE(2466), 1, - sym_key_value_value, - [23088] = 4, - ACTIONS(6648), 1, + [23038] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, STATE(2562), 1, sym__whitespace, - [23101] = 4, - ACTIONS(6656), 1, + [23051] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2579), 1, + STATE(2563), 1, sym__whitespace, - [23114] = 4, - ACTIONS(6648), 1, + [23064] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2583), 1, + STATE(2528), 1, sym__whitespace, - [23127] = 4, - ACTIONS(6656), 1, + [23077] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2534), 1, + STATE(2529), 1, sym__whitespace, - [23140] = 2, - ACTIONS(6678), 1, - sym_key_value_key, - ACTIONS(6676), 3, - anon_sym_RBRACE, - sym__commonmark_whitespace, - sym_commonmark_name, - [23149] = 4, - ACTIONS(6648), 1, + [23090] = 4, + ACTIONS(6220), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6223), 1, aux_sym__whitespace_token1, - STATE(2465), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(2539), 1, + STATE(1896), 1, sym__whitespace, - [23162] = 4, - ACTIONS(6656), 1, + STATE(2469), 1, + aux_sym_shortcode_escaped_repeat1, + [23103] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2556), 1, + STATE(2558), 1, sym__whitespace, - [23175] = 4, - ACTIONS(6648), 1, + [23116] = 4, + ACTIONS(6226), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6229), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2561), 1, + STATE(2630), 1, sym__whitespace, - [23188] = 4, - ACTIONS(6656), 1, + [23129] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2536), 1, + STATE(2566), 1, sym__whitespace, - [23201] = 4, - ACTIONS(6648), 1, + [23142] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2541), 1, + STATE(2567), 1, sym__whitespace, - [23214] = 4, - ACTIONS(6656), 1, + [23155] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2521), 1, + STATE(2573), 1, sym__whitespace, - [23227] = 4, - ACTIONS(6648), 1, + [23168] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2528), 1, + STATE(2574), 1, sym__whitespace, - [23240] = 4, - ACTIONS(6656), 1, + [23181] = 2, + ACTIONS(6234), 1, + sym_key_value_key, + ACTIONS(6232), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, + [23190] = 4, + ACTIONS(6134), 1, + anon_sym_DQUOTE, + ACTIONS(6136), 1, + anon_sym_SQUOTE, + ACTIONS(6140), 1, + aux_sym_key_value_value_token1, + STATE(2452), 1, + sym_key_value_value, + [23203] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2572), 1, + STATE(2556), 1, sym__whitespace, - [23253] = 4, - ACTIONS(6648), 1, + [23216] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2573), 1, + STATE(2570), 1, sym__whitespace, - [23266] = 4, - ACTIONS(6656), 1, + [23229] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2566), 1, + STATE(2542), 1, sym__whitespace, - [23279] = 4, - ACTIONS(6648), 1, + [23242] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2567), 1, + STATE(2544), 1, sym__whitespace, - [23292] = 2, - ACTIONS(6682), 1, + [23255] = 2, + ACTIONS(5034), 1, aux_sym__whitespace_token1, - ACTIONS(6680), 3, + ACTIONS(5032), 3, anon_sym_RPAREN, sym__newline_token, sym__whitespace_ge_2, - [23301] = 4, - ACTIONS(6656), 1, + [23264] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2558), 1, + STATE(2521), 1, sym__whitespace, - [23314] = 4, - ACTIONS(6539), 1, - anon_sym_DQUOTE, - ACTIONS(6541), 1, - anon_sym_SQUOTE, - ACTIONS(6545), 1, - aux_sym_key_value_value_token1, - STATE(2453), 1, - sym_key_value_value, - [23327] = 4, - ACTIONS(6656), 1, + [23277] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2580), 1, + STATE(2525), 1, sym__whitespace, - [23340] = 4, - ACTIONS(6648), 1, + [23290] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2581), 1, + STATE(2534), 1, + sym__whitespace, + [23303] = 4, + ACTIONS(6188), 1, + sym__whitespace_ge_2, + ACTIONS(6190), 1, + aux_sym__whitespace_token1, + STATE(2471), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2539), 1, sym__whitespace, - [23353] = 2, - ACTIONS(5534), 1, + [23316] = 4, + ACTIONS(6188), 1, + sym__whitespace_ge_2, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - ACTIONS(5532), 3, - anon_sym_RPAREN, - sym__newline_token, + STATE(2471), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2536), 1, + sym__whitespace, + [23329] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - [23362] = 4, - ACTIONS(6656), 1, + ACTIONS(6190), 1, + aux_sym__whitespace_token1, + STATE(2471), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2533), 1, + sym__whitespace, + [23342] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2551), 1, + STATE(2545), 1, sym__whitespace, - [23375] = 4, - ACTIONS(6648), 1, + [23355] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2559), 1, + STATE(2548), 1, sym__whitespace, - [23388] = 4, - ACTIONS(6656), 1, + [23368] = 2, + ACTIONS(6238), 1, + sym_key_value_key, + ACTIONS(6236), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, + [23377] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2523), 1, + STATE(2572), 1, sym__whitespace, - [23401] = 4, - ACTIONS(6648), 1, + [23390] = 4, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2465), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(2530), 1, + ACTIONS(6200), 1, + anon_sym_EQ, + STATE(2660), 1, sym__whitespace, - [23414] = 4, - ACTIONS(6656), 1, + [23403] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2575), 1, + STATE(2582), 1, sym__whitespace, - [23427] = 4, - ACTIONS(6648), 1, + [23416] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2584), 1, + STATE(2523), 1, sym__whitespace, - [23440] = 4, - ACTIONS(6656), 1, + [23429] = 3, + ACTIONS(6242), 1, + sym__commonmark_whitespace, + ACTIONS(6244), 1, + sym_key_value_key, + ACTIONS(6240), 2, + anon_sym_RBRACE, + sym_commonmark_name, + [23440] = 2, + ACTIONS(6248), 1, + sym_key_value_key, + ACTIONS(6246), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, + [23449] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2525), 1, + STATE(2575), 1, sym__whitespace, - [23453] = 4, - ACTIONS(6648), 1, + [23462] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2532), 1, + STATE(2576), 1, sym__whitespace, - [23466] = 4, - ACTIONS(6648), 1, + [23475] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2555), 1, + STATE(2584), 1, sym__whitespace, - [23479] = 2, - ACTIONS(6686), 1, - sym_key_value_key, - ACTIONS(6684), 3, - anon_sym_RBRACE, - sym__commonmark_whitespace, - sym_commonmark_name, [23488] = 4, - ACTIONS(6656), 1, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2522), 1, + STATE(2585), 1, sym__whitespace, [23501] = 4, - ACTIONS(6648), 1, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2533), 1, + STATE(2583), 1, sym__whitespace, [23514] = 4, - ACTIONS(6656), 1, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2545), 1, + STATE(2538), 1, sym__whitespace, [23527] = 4, - ACTIONS(6648), 1, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2549), 1, + STATE(2540), 1, sym__whitespace, - [23540] = 2, - ACTIONS(6690), 1, - aux_sym__whitespace_token1, - ACTIONS(6688), 3, - anon_sym_RPAREN, - sym__newline_token, - sym__whitespace_ge_2, - [23549] = 4, - ACTIONS(6656), 1, + [23540] = 4, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2540), 1, + STATE(2546), 1, sym__whitespace, - [23562] = 4, - ACTIONS(6660), 1, - anon_sym_EQ, - ACTIONS(6692), 1, + [23553] = 4, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6695), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2682), 1, + STATE(2471), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(2547), 1, sym__whitespace, + [23566] = 2, + ACTIONS(6252), 1, + sym_key_value_key, + ACTIONS(6250), 3, + anon_sym_RBRACE, + sym__commonmark_whitespace, + sym_commonmark_name, [23575] = 4, - ACTIONS(6648), 1, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2542), 1, + STATE(2579), 1, sym__whitespace, [23588] = 4, - ACTIONS(6656), 1, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2547), 1, + STATE(2581), 1, sym__whitespace, [23601] = 4, - ACTIONS(6648), 1, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2548), 1, + STATE(2586), 1, sym__whitespace, [23614] = 4, - ACTIONS(6656), 1, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2553), 1, + STATE(2564), 1, sym__whitespace, [23627] = 4, - ACTIONS(6656), 1, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2524), 1, + STATE(2568), 1, sym__whitespace, [23640] = 4, - ACTIONS(6648), 1, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, STATE(2526), 1, sym__whitespace, [23653] = 4, - ACTIONS(6656), 1, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6658), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2537), 1, + STATE(2527), 1, sym__whitespace, [23666] = 4, - ACTIONS(6648), 1, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2538), 1, + STATE(2530), 1, sym__whitespace, [23679] = 4, - ACTIONS(6648), 1, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2550), 1, + STATE(2531), 1, sym__whitespace, [23692] = 4, - ACTIONS(6648), 1, + ACTIONS(6188), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6190), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2552), 1, + STATE(2535), 1, sym__whitespace, [23705] = 4, - ACTIONS(6648), 1, + ACTIONS(6208), 1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + ACTIONS(6210), 1, aux_sym__whitespace_token1, - STATE(2465), 1, + STATE(2471), 1, aux_sym_shortcode_escaped_repeat2, - STATE(2609), 1, + STATE(2532), 1, sym__whitespace, - [23718] = 3, - ACTIONS(6019), 1, + [23718] = 2, + ACTIONS(6254), 1, + sym__last_token_whitespace, + ACTIONS(4297), 2, + sym__shortcode_close_escaped, + sym_shortcode_name, + [23726] = 3, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2771), 1, + STATE(2777), 1, sym__whitespace, - [23728] = 2, - ACTIONS(6698), 1, - sym_key_value_key, - ACTIONS(6614), 2, - anon_sym_RBRACE, - sym_commonmark_name, [23736] = 3, - ACTIONS(6700), 1, - sym_shortcode_name, - ACTIONS(6702), 1, - sym__shortcode_close_escaped, - STATE(2646), 1, - sym_shortcode_keyword_param, - [23746] = 3, - ACTIONS(5961), 1, + ACTIONS(5519), 1, sym__shortcode_close_escaped, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, + [23746] = 3, + ACTIONS(6258), 1, + anon_sym_EQ, + ACTIONS(6260), 1, + anon_sym_RBRACE, + ACTIONS(6262), 1, + sym__commonmark_whitespace, [23756] = 3, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6704), 1, + ACTIONS(6264), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, [23766] = 3, - ACTIONS(5891), 1, - sym__shortcode_close_escaped, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, + ACTIONS(6266), 1, + sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, [23776] = 3, - ACTIONS(6700), 1, + ACTIONS(5529), 1, + sym__shortcode_close, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6706), 1, - sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, [23786] = 3, - ACTIONS(5977), 1, - sym__shortcode_close, - ACTIONS(6700), 1, + ACTIONS(5525), 1, + sym__shortcode_close_escaped, + ACTIONS(6256), 1, sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, [23796] = 3, - ACTIONS(6708), 1, - anon_sym_EQ, - ACTIONS(6710), 1, - anon_sym_RBRACE, - ACTIONS(6712), 1, - sym__commonmark_whitespace, + ACTIONS(5527), 1, + sym__shortcode_close, + ACTIONS(6256), 1, + sym_shortcode_name, + STATE(2646), 1, + sym_shortcode_keyword_param, [23806] = 3, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6714), 1, - sym__shortcode_close, + ACTIONS(6268), 1, + sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, [23816] = 3, - ACTIONS(6708), 1, - anon_sym_EQ, - ACTIONS(6712), 1, - sym__commonmark_whitespace, - ACTIONS(6716), 1, - anon_sym_RBRACE, - [23826] = 3, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6718), 1, + ACTIONS(6270), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - [23836] = 3, - ACTIONS(6700), 1, + [23826] = 3, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6720), 1, + ACTIONS(6272), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - [23846] = 3, - ACTIONS(6700), 1, + [23836] = 3, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6722), 1, + ACTIONS(6274), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, + [23846] = 3, + ACTIONS(5457), 1, + sym__shortcode_close_escaped, + ACTIONS(6256), 1, + sym_shortcode_name, + STATE(2646), 1, + sym_shortcode_keyword_param, [23856] = 3, - ACTIONS(5963), 1, + ACTIONS(5459), 1, sym__shortcode_close, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, [23866] = 3, - ACTIONS(5987), 1, - sym__shortcode_close_escaped, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, + ACTIONS(6276), 1, + sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, [23876] = 3, - ACTIONS(6708), 1, - anon_sym_EQ, - ACTIONS(6712), 1, - sym__commonmark_whitespace, - ACTIONS(6724), 1, - anon_sym_RBRACE, + ACTIONS(5533), 1, + sym__shortcode_close, + ACTIONS(6256), 1, + sym_shortcode_name, + STATE(2646), 1, + sym_shortcode_keyword_param, [23886] = 3, - ACTIONS(5901), 1, - sym__shortcode_close_escaped, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, + ACTIONS(6278), 1, + sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, [23896] = 3, - ACTIONS(6700), 1, - sym_shortcode_name, - ACTIONS(6726), 1, + ACTIONS(5473), 1, sym__shortcode_close_escaped, + ACTIONS(6256), 1, + sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, [23906] = 3, - ACTIONS(6700), 1, + ACTIONS(5497), 1, + sym__shortcode_close_escaped, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6728), 1, - sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, [23916] = 3, - ACTIONS(5935), 1, - sym__shortcode_close, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, + ACTIONS(6280), 1, + sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, [23926] = 3, - ACTIONS(5969), 1, - sym__shortcode_close_escaped, - ACTIONS(6700), 1, + ACTIONS(5499), 1, + sym__shortcode_close, + ACTIONS(6256), 1, sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, [23936] = 3, - ACTIONS(5903), 1, + ACTIONS(5447), 1, sym__shortcode_close, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, [23946] = 3, - ACTIONS(5971), 1, - sym__shortcode_close, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, + ACTIONS(6282), 1, + sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, [23956] = 3, - ACTIONS(6708), 1, + ACTIONS(6258), 1, anon_sym_EQ, - ACTIONS(6712), 1, + ACTIONS(6262), 1, sym__commonmark_whitespace, - ACTIONS(6730), 1, + ACTIONS(6284), 1, anon_sym_RBRACE, [23966] = 3, - ACTIONS(6708), 1, - anon_sym_EQ, - ACTIONS(6712), 1, - sym__commonmark_whitespace, - ACTIONS(6732), 1, - anon_sym_RBRACE, + ACTIONS(6256), 1, + sym_shortcode_name, + ACTIONS(6286), 1, + sym__shortcode_close, + STATE(2646), 1, + sym_shortcode_keyword_param, [23976] = 3, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6734), 1, + ACTIONS(6288), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - [23986] = 2, - ACTIONS(6736), 1, - sym__last_token_whitespace, - ACTIONS(4741), 2, - sym__shortcode_close, - sym_shortcode_name, - [23994] = 3, - ACTIONS(6700), 1, + [23986] = 3, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6738), 1, + ACTIONS(6290), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - [24004] = 3, - ACTIONS(6700), 1, + [23996] = 3, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6740), 1, + ACTIONS(6292), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - [24014] = 3, - ACTIONS(6700), 1, + [24006] = 3, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6742), 1, + ACTIONS(6294), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - [24024] = 3, - ACTIONS(5981), 1, - sym__shortcode_close, - ACTIONS(6700), 1, + [24016] = 3, + ACTIONS(5535), 1, + sym__shortcode_close_escaped, + ACTIONS(6256), 1, sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, - [24034] = 3, - ACTIONS(5933), 1, - sym__shortcode_close_escaped, - ACTIONS(6700), 1, + [24026] = 3, + ACTIONS(6256), 1, sym_shortcode_name, + ACTIONS(6296), 1, + sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - [24044] = 3, - ACTIONS(6700), 1, + [24036] = 3, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6744), 1, + ACTIONS(6298), 1, sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - [24054] = 3, - ACTIONS(5893), 1, - sym__shortcode_close_escaped, - ACTIONS(6700), 1, + [24046] = 2, + ACTIONS(6300), 1, + sym__last_token_whitespace, + ACTIONS(4297), 2, + sym__shortcode_close, sym_shortcode_name, - STATE(2646), 1, - sym_shortcode_keyword_param, + [24054] = 3, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + STATE(2779), 1, + sym__whitespace, [24064] = 3, - ACTIONS(5949), 1, - sym__shortcode_close_escaped, - ACTIONS(6700), 1, - sym_shortcode_name, - STATE(2646), 1, - sym_shortcode_keyword_param, + ACTIONS(6258), 1, + anon_sym_EQ, + ACTIONS(6262), 1, + sym__commonmark_whitespace, + ACTIONS(6302), 1, + anon_sym_RBRACE, [24074] = 3, - ACTIONS(6700), 1, + ACTIONS(6258), 1, + anon_sym_EQ, + ACTIONS(6262), 1, + sym__commonmark_whitespace, + ACTIONS(6304), 1, + anon_sym_RBRACE, + [24084] = 3, + ACTIONS(5479), 1, + sym__shortcode_close_escaped, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6746), 1, - sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - [24084] = 3, - ACTIONS(6700), 1, + [24094] = 2, + ACTIONS(6306), 1, + sym_key_value_key, + ACTIONS(6146), 2, + anon_sym_RBRACE, + sym_commonmark_name, + [24102] = 3, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6748), 1, + ACTIONS(6308), 1, sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - [24094] = 3, - ACTIONS(6708), 1, + [24112] = 3, + ACTIONS(6258), 1, anon_sym_EQ, - ACTIONS(6712), 1, + ACTIONS(6262), 1, sym__commonmark_whitespace, - ACTIONS(6750), 1, + ACTIONS(6310), 1, + anon_sym_RBRACE, + [24122] = 2, + ACTIONS(6314), 1, + aux_sym__whitespace_token1, + ACTIONS(6312), 2, + anon_sym_RBRACK, + sym__whitespace_ge_2, + [24130] = 3, + ACTIONS(6258), 1, + anon_sym_EQ, + ACTIONS(6262), 1, + sym__commonmark_whitespace, + ACTIONS(6316), 1, anon_sym_RBRACE, - [24104] = 3, - ACTIONS(5925), 1, + [24140] = 3, + ACTIONS(5505), 1, sym__shortcode_close_escaped, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, - [24114] = 3, - ACTIONS(5989), 1, + [24150] = 3, + ACTIONS(5507), 1, sym__shortcode_close, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, - [24124] = 3, - ACTIONS(6708), 1, - anon_sym_EQ, - ACTIONS(6712), 1, - sym__commonmark_whitespace, - ACTIONS(6752), 1, - anon_sym_RBRACE, - [24134] = 3, - ACTIONS(6700), 1, + [24160] = 3, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6754), 1, - sym__shortcode_close, - STATE(2646), 1, - sym_shortcode_keyword_param, - [24144] = 3, - ACTIONS(5951), 1, + ACTIONS(6318), 1, sym__shortcode_close, - ACTIONS(6700), 1, - sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, - [24154] = 3, - ACTIONS(6019), 1, + [24170] = 3, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2800), 1, + STATE(2778), 1, sym__whitespace, - [24164] = 3, - ACTIONS(6708), 1, - anon_sym_EQ, - ACTIONS(6712), 1, - sym__commonmark_whitespace, - ACTIONS(6756), 1, - anon_sym_RBRACE, - [24174] = 3, - ACTIONS(6708), 1, - anon_sym_EQ, - ACTIONS(6712), 1, - sym__commonmark_whitespace, - ACTIONS(6758), 1, - anon_sym_RBRACE, - [24184] = 3, - ACTIONS(6700), 1, - sym_shortcode_name, - ACTIONS(6760), 1, + [24180] = 3, + ACTIONS(5543), 1, sym__shortcode_close_escaped, + ACTIONS(6256), 1, + sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, - [24194] = 3, - ACTIONS(6700), 1, - sym_shortcode_name, - ACTIONS(6762), 1, + [24190] = 3, + ACTIONS(5475), 1, sym__shortcode_close, + ACTIONS(6256), 1, + sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, - [24204] = 3, - ACTIONS(6700), 1, + [24200] = 3, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6764), 1, - sym__shortcode_close_escaped, + ACTIONS(6320), 1, + sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - [24214] = 3, - ACTIONS(6708), 1, + [24210] = 3, + ACTIONS(6258), 1, anon_sym_EQ, - ACTIONS(6712), 1, + ACTIONS(6262), 1, sym__commonmark_whitespace, - ACTIONS(6766), 1, + ACTIONS(6322), 1, anon_sym_RBRACE, - [24224] = 3, - ACTIONS(6708), 1, + [24220] = 3, + ACTIONS(5489), 1, + sym__shortcode_close, + ACTIONS(6256), 1, + sym_shortcode_name, + STATE(2646), 1, + sym_shortcode_keyword_param, + [24230] = 3, + ACTIONS(6258), 1, anon_sym_EQ, - ACTIONS(6712), 1, + ACTIONS(6262), 1, sym__commonmark_whitespace, - ACTIONS(6768), 1, + ACTIONS(6324), 1, anon_sym_RBRACE, - [24234] = 3, - ACTIONS(5917), 1, + [24240] = 3, + ACTIONS(5469), 1, sym__shortcode_close_escaped, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, - [24244] = 3, - ACTIONS(5909), 1, - sym__shortcode_close_escaped, - ACTIONS(6700), 1, + [24250] = 3, + ACTIONS(6256), 1, sym_shortcode_name, + ACTIONS(6326), 1, + sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - [24254] = 3, - ACTIONS(5911), 1, - sym__shortcode_close, - ACTIONS(6700), 1, + [24260] = 3, + ACTIONS(6256), 1, sym_shortcode_name, + ACTIONS(6328), 1, + sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - [24264] = 3, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - STATE(2785), 1, - sym__whitespace, - [24274] = 3, - ACTIONS(5941), 1, + [24270] = 3, + ACTIONS(5485), 1, sym__shortcode_close_escaped, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, - [24284] = 3, - ACTIONS(6700), 1, - sym_shortcode_name, - ACTIONS(6770), 1, + [24280] = 3, + ACTIONS(5487), 1, sym__shortcode_close, + ACTIONS(6256), 1, + sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, - [24294] = 2, - ACTIONS(6772), 1, - sym__last_token_whitespace, - ACTIONS(4741), 2, - sym__shortcode_close_escaped, - sym_shortcode_name, - [24302] = 3, - ACTIONS(6708), 1, + [24290] = 3, + ACTIONS(6258), 1, anon_sym_EQ, - ACTIONS(6712), 1, + ACTIONS(6262), 1, sym__commonmark_whitespace, - ACTIONS(6774), 1, + ACTIONS(6330), 1, anon_sym_RBRACE, - [24312] = 3, - ACTIONS(6700), 1, - sym_shortcode_name, - ACTIONS(6776), 1, + [24300] = 3, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + STATE(2663), 1, + sym__whitespace, + [24310] = 3, + ACTIONS(5513), 1, sym__shortcode_close_escaped, + ACTIONS(6256), 1, + sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, - [24322] = 3, - ACTIONS(6700), 1, + [24320] = 3, + ACTIONS(6258), 1, + anon_sym_EQ, + ACTIONS(6262), 1, + sym__commonmark_whitespace, + ACTIONS(6332), 1, + anon_sym_RBRACE, + [24330] = 3, + ACTIONS(5515), 1, + sym__shortcode_close, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6778), 1, - sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - [24332] = 3, - ACTIONS(6700), 1, - sym_shortcode_name, - ACTIONS(6780), 1, + [24340] = 3, + ACTIONS(5471), 1, sym__shortcode_close, + ACTIONS(6256), 1, + sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, - [24342] = 3, - ACTIONS(5895), 1, + [24350] = 3, + ACTIONS(5537), 1, sym__shortcode_close, - ACTIONS(6700), 1, + ACTIONS(6256), 1, sym_shortcode_name, STATE(2646), 1, sym_shortcode_keyword_param, - [24352] = 3, - ACTIONS(6700), 1, + [24360] = 3, + ACTIONS(6256), 1, sym_shortcode_name, - ACTIONS(6782), 1, - sym__shortcode_close, + ACTIONS(6334), 1, + sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - [24362] = 3, - ACTIONS(5943), 1, - sym__shortcode_close, - ACTIONS(6700), 1, + [24370] = 3, + ACTIONS(6256), 1, sym_shortcode_name, + ACTIONS(6336), 1, + sym__shortcode_close, STATE(2646), 1, sym_shortcode_keyword_param, - [24372] = 3, - ACTIONS(5919), 1, - sym__shortcode_close, - ACTIONS(6700), 1, + [24380] = 3, + ACTIONS(6256), 1, sym_shortcode_name, + ACTIONS(6338), 1, + sym__shortcode_close_escaped, STATE(2646), 1, sym_shortcode_keyword_param, - [24382] = 2, - ACTIONS(6786), 1, - aux_sym__whitespace_token1, - ACTIONS(6784), 2, - anon_sym_RBRACK, - sym__whitespace_ge_2, [24390] = 3, - ACTIONS(6019), 1, - sym__whitespace_ge_2, - ACTIONS(6021), 1, - aux_sym__whitespace_token1, - STATE(2756), 1, - sym__whitespace, + ACTIONS(6258), 1, + anon_sym_EQ, + ACTIONS(6262), 1, + sym__commonmark_whitespace, + ACTIONS(6340), 1, + anon_sym_RBRACE, [24400] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2757), 1, + STATE(2756), 1, sym__whitespace, [24410] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2758), 1, + STATE(2757), 1, sym__whitespace, [24420] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2759), 1, + STATE(2758), 1, sym__whitespace, [24430] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2760), 1, + STATE(2759), 1, sym__whitespace, [24440] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2761), 1, + STATE(2760), 1, sym__whitespace, [24450] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2762), 1, + STATE(2761), 1, sym__whitespace, [24460] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2763), 1, + STATE(2762), 1, sym__whitespace, [24470] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2764), 1, + STATE(2763), 1, sym__whitespace, [24480] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2765), 1, + STATE(2764), 1, sym__whitespace, [24490] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2766), 1, + STATE(2765), 1, sym__whitespace, [24500] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2767), 1, + STATE(2766), 1, sym__whitespace, [24510] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2768), 1, + STATE(2767), 1, sym__whitespace, [24520] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2649), 1, + STATE(2768), 1, sym__whitespace, [24530] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2770), 1, + STATE(2769), 1, sym__whitespace, [24540] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2772), 1, + STATE(2770), 1, sym__whitespace, [24550] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2773), 1, + STATE(2771), 1, sym__whitespace, [24560] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2774), 1, + STATE(2772), 1, sym__whitespace, [24570] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2775), 1, + STATE(2773), 1, sym__whitespace, [24580] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2776), 1, + STATE(2774), 1, sym__whitespace, [24590] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(5563), 1, aux_sym__whitespace_token1, - STATE(2777), 1, + STATE(2775), 1, sym__whitespace, [24600] = 3, - ACTIONS(6019), 1, + ACTIONS(5561), 1, + sym__whitespace_ge_2, + ACTIONS(5563), 1, + aux_sym__whitespace_token1, + STATE(2776), 1, + sym__whitespace, + [24610] = 3, + ACTIONS(6258), 1, + anon_sym_EQ, + ACTIONS(6262), 1, + sym__commonmark_whitespace, + ACTIONS(6342), 1, + anon_sym_RBRACE, + [24620] = 2, + ACTIONS(6344), 1, + sym__whitespace_ge_2, + ACTIONS(6346), 1, + aux_sym__whitespace_token1, + [24627] = 2, + ACTIONS(6348), 1, + anon_sym_RBRACE, + ACTIONS(6350), 1, + sym__commonmark_whitespace, + [24634] = 2, + ACTIONS(6352), 1, + sym__whitespace_ge_2, + ACTIONS(6354), 1, + aux_sym__whitespace_token1, + [24641] = 2, + ACTIONS(6356), 1, + anon_sym_RBRACE, + ACTIONS(6358), 1, + sym__commonmark_whitespace, + [24648] = 1, + ACTIONS(4627), 2, + sym__shortcode_close_escaped, + sym_shortcode_name, + [24653] = 2, + ACTIONS(4547), 1, sym__whitespace_ge_2, - ACTIONS(6021), 1, + ACTIONS(4549), 1, aux_sym__whitespace_token1, - STATE(2778), 1, - sym__whitespace, - [24610] = 3, - ACTIONS(5927), 1, - sym__shortcode_close, - ACTIONS(6700), 1, - sym_shortcode_name, - STATE(2646), 1, - sym_shortcode_keyword_param, - [24620] = 2, - ACTIONS(6788), 1, + [24660] = 2, + ACTIONS(6360), 1, anon_sym_RBRACE, - ACTIONS(6790), 1, + ACTIONS(6362), 1, sym__commonmark_whitespace, - [24627] = 2, - ACTIONS(6700), 1, - sym_shortcode_name, - STATE(2646), 1, - sym_shortcode_keyword_param, - [24634] = 2, - ACTIONS(4815), 1, - sym__trigger_error, - ACTIONS(6792), 1, - sym__last_token_whitespace, - [24641] = 2, - ACTIONS(6794), 1, + [24667] = 2, + ACTIONS(6364), 1, + anon_sym_RBRACE, + ACTIONS(6366), 1, + sym__commonmark_whitespace, + [24674] = 2, + ACTIONS(6258), 1, + anon_sym_EQ, + ACTIONS(6262), 1, + sym__commonmark_whitespace, + [24681] = 2, + ACTIONS(6368), 1, + anon_sym_RBRACE, + ACTIONS(6370), 1, + sym__commonmark_whitespace, + [24688] = 2, + ACTIONS(6372), 1, anon_sym_RBRACE, - ACTIONS(6796), 1, + ACTIONS(6374), 1, sym__commonmark_whitespace, - [24648] = 2, - ACTIONS(5131), 1, + [24695] = 2, + ACTIONS(6376), 1, sym__whitespace_ge_2, - ACTIONS(5133), 1, + ACTIONS(6378), 1, aux_sym__whitespace_token1, - [24655] = 2, - ACTIONS(6798), 1, + [24702] = 2, + ACTIONS(6380), 1, anon_sym_RBRACE, - ACTIONS(6800), 1, + ACTIONS(6382), 1, sym__commonmark_whitespace, - [24662] = 2, - ACTIONS(6802), 1, + [24709] = 2, + ACTIONS(6384), 1, anon_sym_RBRACE, - ACTIONS(6804), 1, + ACTIONS(6386), 1, sym__commonmark_whitespace, - [24669] = 2, - ACTIONS(6806), 1, + [24716] = 2, + ACTIONS(6388), 1, anon_sym_RBRACE, - ACTIONS(6808), 1, + ACTIONS(6390), 1, sym__commonmark_whitespace, - [24676] = 2, - ACTIONS(6810), 1, + [24723] = 2, + ACTIONS(6392), 1, anon_sym_RBRACE, - ACTIONS(6812), 1, + ACTIONS(6394), 1, sym__commonmark_whitespace, - [24683] = 2, - ACTIONS(6814), 1, + [24730] = 2, + ACTIONS(6396), 1, anon_sym_RBRACE, - ACTIONS(6816), 1, + ACTIONS(6398), 1, sym__commonmark_whitespace, - [24690] = 2, - ACTIONS(6818), 1, + [24737] = 2, + ACTIONS(6400), 1, anon_sym_RBRACE, - ACTIONS(6820), 1, + ACTIONS(6402), 1, sym__commonmark_whitespace, - [24697] = 2, - ACTIONS(6822), 1, - sym__whitespace_ge_2, - ACTIONS(6824), 1, - aux_sym__whitespace_token1, - [24704] = 2, - ACTIONS(6826), 1, - sym__whitespace_ge_2, - ACTIONS(6828), 1, - aux_sym__whitespace_token1, - [24711] = 2, - ACTIONS(5151), 1, - sym__whitespace_ge_2, - ACTIONS(5153), 1, - aux_sym__whitespace_token1, - [24718] = 2, - ACTIONS(6830), 1, + [24744] = 2, + ACTIONS(6404), 1, anon_sym_RBRACE, - ACTIONS(6832), 1, + ACTIONS(6406), 1, sym__commonmark_whitespace, - [24725] = 2, - ACTIONS(6834), 1, - sym__whitespace_ge_2, - ACTIONS(6836), 1, - aux_sym__whitespace_token1, - [24732] = 2, - ACTIONS(6838), 1, + [24751] = 2, + ACTIONS(6408), 1, anon_sym_RBRACE, - ACTIONS(6840), 1, + ACTIONS(6410), 1, sym__commonmark_whitespace, - [24739] = 2, - ACTIONS(6842), 1, - sym__whitespace_ge_2, - ACTIONS(6844), 1, - aux_sym__whitespace_token1, - [24746] = 2, - ACTIONS(5167), 1, - sym__whitespace_ge_2, - ACTIONS(5169), 1, - aux_sym__whitespace_token1, - [24753] = 2, - ACTIONS(6846), 1, + [24758] = 2, + ACTIONS(6256), 1, + sym_shortcode_name, + STATE(2646), 1, + sym_shortcode_keyword_param, + [24765] = 2, + ACTIONS(6412), 1, anon_sym_RBRACE, - ACTIONS(6848), 1, + ACTIONS(6414), 1, sym__commonmark_whitespace, - [24760] = 2, - ACTIONS(6850), 1, + [24772] = 2, + ACTIONS(6416), 1, sym__whitespace_ge_2, - ACTIONS(6852), 1, + ACTIONS(6418), 1, aux_sym__whitespace_token1, - [24767] = 2, - ACTIONS(6854), 1, + [24779] = 2, + ACTIONS(6420), 1, anon_sym_RBRACE, - ACTIONS(6856), 1, - sym__commonmark_whitespace, - [24774] = 2, - ACTIONS(6708), 1, - anon_sym_EQ, - ACTIONS(6712), 1, + ACTIONS(6422), 1, sym__commonmark_whitespace, - [24781] = 1, - ACTIONS(5007), 2, - sym__shortcode_close, - sym_shortcode_name, [24786] = 2, - ACTIONS(6858), 1, + ACTIONS(6424), 1, anon_sym_RBRACE, - ACTIONS(6860), 1, + ACTIONS(6426), 1, sym__commonmark_whitespace, [24793] = 2, - ACTIONS(6862), 1, + ACTIONS(6428), 1, anon_sym_RBRACE, - ACTIONS(6864), 1, + ACTIONS(6430), 1, sym__commonmark_whitespace, [24800] = 2, - ACTIONS(6866), 1, + ACTIONS(6432), 1, anon_sym_RBRACE, - ACTIONS(6868), 1, + ACTIONS(6434), 1, sym__commonmark_whitespace, [24807] = 2, - ACTIONS(6870), 1, - sym__whitespace_ge_2, - ACTIONS(6872), 1, - aux_sym__whitespace_token1, + ACTIONS(6436), 1, + anon_sym_RBRACE, + ACTIONS(6438), 1, + sym__commonmark_whitespace, [24814] = 2, - ACTIONS(6874), 1, + ACTIONS(6440), 1, anon_sym_RBRACE, - ACTIONS(6876), 1, + ACTIONS(6442), 1, sym__commonmark_whitespace, [24821] = 2, - ACTIONS(6878), 1, + ACTIONS(6444), 1, anon_sym_RBRACE, - ACTIONS(6880), 1, + ACTIONS(6446), 1, sym__commonmark_whitespace, [24828] = 2, - ACTIONS(6882), 1, + ACTIONS(6448), 1, anon_sym_RBRACE, - ACTIONS(6884), 1, + ACTIONS(6450), 1, sym__commonmark_whitespace, [24835] = 2, - ACTIONS(6886), 1, - anon_sym_RBRACE, - ACTIONS(6888), 1, - sym__commonmark_whitespace, + ACTIONS(4511), 1, + sym__whitespace_ge_2, + ACTIONS(4513), 1, + aux_sym__whitespace_token1, [24842] = 2, - ACTIONS(6890), 1, + ACTIONS(6452), 1, anon_sym_RBRACE, - ACTIONS(6892), 1, + ACTIONS(6454), 1, sym__commonmark_whitespace, [24849] = 2, - ACTIONS(6894), 1, - anon_sym_RBRACE, - ACTIONS(6896), 1, - sym__commonmark_whitespace, - [24856] = 2, - ACTIONS(6898), 1, - anon_sym_RBRACE, - ACTIONS(6900), 1, - sym__commonmark_whitespace, - [24863] = 2, - ACTIONS(6902), 1, - anon_sym_RBRACE, - ACTIONS(6904), 1, - sym__commonmark_whitespace, - [24870] = 2, - ACTIONS(6906), 1, + ACTIONS(4535), 1, sym__whitespace_ge_2, - ACTIONS(6908), 1, + ACTIONS(4537), 1, aux_sym__whitespace_token1, - [24877] = 1, - ACTIONS(5007), 2, - sym__shortcode_close_escaped, + [24856] = 1, + ACTIONS(4627), 2, + sym__shortcode_close, sym_shortcode_name, + [24861] = 2, + ACTIONS(4355), 1, + sym__trigger_error, + ACTIONS(6456), 1, + sym__last_token_whitespace, + [24868] = 2, + ACTIONS(6458), 1, + sym__whitespace_ge_2, + ACTIONS(6460), 1, + aux_sym__whitespace_token1, + [24875] = 2, + ACTIONS(6462), 1, + sym__whitespace_ge_2, + ACTIONS(6464), 1, + aux_sym__whitespace_token1, [24882] = 2, - ACTIONS(6910), 1, - anon_sym_RBRACE, - ACTIONS(6912), 1, - sym__commonmark_whitespace, + ACTIONS(6466), 1, + sym__whitespace_ge_2, + ACTIONS(6468), 1, + aux_sym__whitespace_token1, [24889] = 1, - ACTIONS(6914), 1, - sym_shortcode_name, - [24893] = 1, - ACTIONS(6916), 1, + ACTIONS(6470), 1, anon_sym_RBRACE, + [24893] = 1, + ACTIONS(6472), 1, + aux_sym_citation_token2, [24897] = 1, - ACTIONS(6918), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, [24901] = 1, - ACTIONS(6920), 1, - anon_sym_RBRACE, + ACTIONS(6476), 1, + aux_sym_citation_token1, [24905] = 1, - ACTIONS(6922), 1, + ACTIONS(6478), 1, aux_sym_citation_token2, [24909] = 1, - ACTIONS(6924), 1, + ACTIONS(6480), 1, aux_sym_citation_token2, [24913] = 1, - ACTIONS(6926), 1, - aux_sym_citation_token2, + ACTIONS(6482), 1, + anon_sym_LPAREN, [24917] = 1, - ACTIONS(6928), 1, - aux_sym_citation_token1, + ACTIONS(6484), 1, + anon_sym_RBRACK, [24921] = 1, - ACTIONS(6930), 1, - aux_sym_citation_token1, + ACTIONS(6486), 1, + anon_sym_RBRACE, [24925] = 1, - ACTIONS(6932), 1, - anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_RBRACK, [24929] = 1, - ACTIONS(6934), 1, - aux_sym_citation_token2, + ACTIONS(6368), 1, + anon_sym_RBRACE, [24933] = 1, - ACTIONS(6936), 1, - anon_sym_RBRACK, + ACTIONS(6490), 1, + anon_sym_EQ, [24937] = 1, - ACTIONS(6938), 1, - anon_sym_LPAREN, + ACTIONS(6388), 1, + anon_sym_RBRACE, [24941] = 1, - ACTIONS(6940), 1, + ACTIONS(6492), 1, aux_sym_citation_token2, [24945] = 1, - ACTIONS(6942), 1, - anon_sym_RBRACE, + ACTIONS(6494), 1, + sym_shortcode_name, [24949] = 1, - ACTIONS(6944), 1, - anon_sym_RBRACK, + ACTIONS(6496), 1, + aux_sym_citation_token1, [24953] = 1, - ACTIONS(6946), 1, - anon_sym_RBRACE, + ACTIONS(6498), 1, + aux_sym_citation_token1, [24957] = 1, - ACTIONS(6948), 1, - anon_sym_RBRACK, + ACTIONS(6428), 1, + anon_sym_RBRACE, [24961] = 1, - ACTIONS(6950), 1, + ACTIONS(6500), 1, aux_sym_citation_token2, [24965] = 1, - ACTIONS(6952), 1, - aux_sym_citation_token2, + ACTIONS(6502), 1, + sym__trigger_error, [24969] = 1, - ACTIONS(6954), 1, - anon_sym_RBRACK, + ACTIONS(6504), 1, + anon_sym_LPAREN, [24973] = 1, - ACTIONS(6956), 1, - aux_sym_citation_token2, + ACTIONS(6506), 1, + sym__trigger_error, [24977] = 1, - ACTIONS(6788), 1, - anon_sym_RBRACE, + ACTIONS(6508), 1, + aux_sym_citation_token2, [24981] = 1, - ACTIONS(6958), 1, - aux_sym_citation_token1, + ACTIONS(6510), 1, + anon_sym_RBRACK, [24985] = 1, - ACTIONS(6960), 1, - aux_sym_citation_token1, - [24989] = 1, - ACTIONS(6962), 1, + ACTIONS(6512), 1, anon_sym_RBRACE, + [24989] = 1, + ACTIONS(6514), 1, + aux_sym_citation_token2, [24993] = 1, - ACTIONS(6882), 1, - anon_sym_RBRACE, - [24997] = 1, - ACTIONS(6964), 1, + ACTIONS(6516), 1, aux_sym_citation_token2, + [24997] = 1, + ACTIONS(6518), 1, + anon_sym_RBRACE, [25001] = 1, - ACTIONS(6966), 1, - anon_sym_LPAREN, + ACTIONS(6520), 1, + anon_sym_RBRACK, [25005] = 1, - ACTIONS(6968), 1, - anon_sym_RBRACE, + ACTIONS(6522), 1, + anon_sym_RBRACK, [25009] = 1, - ACTIONS(6970), 1, - aux_sym_citation_token2, + ACTIONS(6524), 1, + aux_sym_citation_token1, [25013] = 1, - ACTIONS(6972), 1, - anon_sym_RBRACE, + ACTIONS(6526), 1, + aux_sym_citation_token1, [25017] = 1, - ACTIONS(6974), 1, - anon_sym_RBRACE, + ACTIONS(6528), 1, + ts_builtin_sym_end, [25021] = 1, - ACTIONS(6976), 1, - anon_sym_EQ, + ACTIONS(6530), 1, + aux_sym_citation_token1, [25025] = 1, - ACTIONS(6978), 1, - anon_sym_RBRACE, + ACTIONS(6532), 1, + aux_sym_citation_token1, [25029] = 1, - ACTIONS(6980), 1, + ACTIONS(6400), 1, anon_sym_RBRACE, [25033] = 1, - ACTIONS(6982), 1, - anon_sym_RBRACK, + ACTIONS(6534), 1, + aux_sym_citation_token2, [25037] = 1, - ACTIONS(6984), 1, - anon_sym_RBRACE, + ACTIONS(6536), 1, + aux_sym_citation_token2, [25041] = 1, - ACTIONS(6986), 1, - anon_sym_RBRACE, + ACTIONS(6538), 1, + anon_sym_LPAREN, [25045] = 1, - ACTIONS(6988), 1, - aux_sym_citation_token1, + ACTIONS(6540), 1, + anon_sym_LPAREN, [25049] = 1, - ACTIONS(6990), 1, - aux_sym_citation_token1, + ACTIONS(6542), 1, + anon_sym_RBRACK, [25053] = 1, - ACTIONS(6992), 1, - anon_sym_RBRACE, + ACTIONS(6544), 1, + anon_sym_LPAREN, [25057] = 1, - ACTIONS(6994), 1, - aux_sym_citation_token2, + ACTIONS(6546), 1, + anon_sym_RBRACE, [25061] = 1, - ACTIONS(6996), 1, - aux_sym_citation_token1, + ACTIONS(6548), 1, + anon_sym_RBRACE, [25065] = 1, - ACTIONS(6998), 1, - anon_sym_LPAREN, + ACTIONS(6550), 1, + anon_sym_RBRACK, [25069] = 1, - ACTIONS(7000), 1, - aux_sym_citation_token1, + ACTIONS(6440), 1, + anon_sym_RBRACE, [25073] = 1, - ACTIONS(7002), 1, - anon_sym_EQ, + ACTIONS(6552), 1, + anon_sym_RBRACE, [25077] = 1, - ACTIONS(7004), 1, - aux_sym_citation_token2, - [25081] = 1, - ACTIONS(7006), 1, + ACTIONS(6554), 1, anon_sym_RBRACE, + [25081] = 1, + ACTIONS(4619), 1, + sym__trigger_error, [25085] = 1, - ACTIONS(7008), 1, - anon_sym_LPAREN, + ACTIONS(6556), 1, + anon_sym_RBRACE, [25089] = 1, - ACTIONS(7010), 1, - aux_sym_citation_token2, - [25093] = 1, - ACTIONS(6798), 1, + ACTIONS(6408), 1, anon_sym_RBRACE, + [25093] = 1, + ACTIONS(6558), 1, + aux_sym_citation_token1, [25097] = 1, - ACTIONS(7012), 1, - anon_sym_RBRACE, + ACTIONS(6560), 1, + aux_sym_citation_token1, [25101] = 1, - ACTIONS(7014), 1, + ACTIONS(6562), 1, anon_sym_RBRACE, [25105] = 1, - ACTIONS(7016), 1, + ACTIONS(6564), 1, anon_sym_RBRACE, [25109] = 1, - ACTIONS(7018), 1, - aux_sym_citation_token1, + ACTIONS(6566), 1, + anon_sym_RBRACE, [25113] = 1, - ACTIONS(7020), 1, - aux_sym_citation_token1, + ACTIONS(6568), 1, + anon_sym_LPAREN, [25117] = 1, - ACTIONS(7022), 1, + ACTIONS(6570), 1, aux_sym_citation_token2, [25121] = 1, - ACTIONS(7024), 1, - aux_sym_citation_token2, + ACTIONS(6572), 1, + sym__trigger_error, [25125] = 1, - ACTIONS(7026), 1, - anon_sym_RBRACE, + ACTIONS(6574), 1, + anon_sym_EQ, [25129] = 1, - ACTIONS(7028), 1, - anon_sym_LPAREN, + ACTIONS(6576), 1, + anon_sym_RBRACE, [25133] = 1, - ACTIONS(7030), 1, + ACTIONS(6452), 1, anon_sym_RBRACE, [25137] = 1, - ACTIONS(7032), 1, - anon_sym_RBRACE, + ACTIONS(6578), 1, + aux_sym_citation_token2, [25141] = 1, - ACTIONS(7034), 1, + ACTIONS(6580), 1, anon_sym_RBRACE, [25145] = 1, - ACTIONS(7036), 1, - sym__trigger_error, + ACTIONS(6582), 1, + anon_sym_RBRACE, [25149] = 1, - ACTIONS(7038), 1, - aux_sym_citation_token1, + ACTIONS(6584), 1, + anon_sym_RBRACE, [25153] = 1, - ACTIONS(7040), 1, - aux_sym_citation_token1, - [25157] = 1, - ACTIONS(6898), 1, + ACTIONS(6586), 1, anon_sym_RBRACE, + [25157] = 1, + ACTIONS(6588), 1, + aux_sym_citation_token2, [25161] = 1, - ACTIONS(7042), 1, + ACTIONS(6590), 1, anon_sym_RBRACE, [25165] = 1, - ACTIONS(7044), 1, - anon_sym_RBRACK, + ACTIONS(6592), 1, + aux_sym_citation_token1, [25169] = 1, - ACTIONS(7046), 1, - anon_sym_LPAREN, + ACTIONS(6594), 1, + aux_sym_citation_token1, [25173] = 1, - ACTIONS(7048), 1, + ACTIONS(6596), 1, aux_sym_citation_token1, [25177] = 1, - ACTIONS(7050), 1, + ACTIONS(6598), 1, aux_sym_citation_token1, [25181] = 1, - ACTIONS(7052), 1, - aux_sym_citation_token2, + ACTIONS(6384), 1, + anon_sym_RBRACE, [25185] = 1, - ACTIONS(7054), 1, - aux_sym_citation_token2, + ACTIONS(6600), 1, + anon_sym_LPAREN, [25189] = 1, - ACTIONS(7056), 1, - aux_sym_citation_token1, + ACTIONS(6602), 1, + anon_sym_RBRACE, [25193] = 1, - ACTIONS(7058), 1, - anon_sym_LPAREN, + ACTIONS(6604), 1, + anon_sym_RBRACE, [25197] = 1, - ACTIONS(6874), 1, + ACTIONS(6606), 1, anon_sym_RBRACE, [25201] = 1, - ACTIONS(7060), 1, - anon_sym_RBRACK, - [25205] = 1, - ACTIONS(7062), 1, + ACTIONS(6608), 1, anon_sym_RBRACE, + [25205] = 1, + ACTIONS(6610), 1, + aux_sym_citation_token2, [25209] = 1, - ACTIONS(7064), 1, - sym__trigger_error, + ACTIONS(6612), 1, + anon_sym_LPAREN, [25213] = 1, - ACTIONS(7066), 1, - anon_sym_RBRACE, + ACTIONS(6614), 1, + aux_sym_citation_token2, [25217] = 1, - ACTIONS(7068), 1, + ACTIONS(6616), 1, anon_sym_RBRACE, [25221] = 1, - ACTIONS(7070), 1, - anon_sym_LPAREN, + ACTIONS(6618), 1, + aux_sym_citation_token2, [25225] = 1, - ACTIONS(7072), 1, - anon_sym_RBRACK, + ACTIONS(6392), 1, + anon_sym_RBRACE, [25229] = 1, - ACTIONS(7074), 1, - aux_sym_citation_token1, + ACTIONS(6620), 1, + anon_sym_RBRACE, [25233] = 1, - ACTIONS(7076), 1, + ACTIONS(6622), 1, aux_sym_citation_token1, [25237] = 1, - ACTIONS(7078), 1, + ACTIONS(6624), 1, aux_sym_citation_token1, [25241] = 1, - ACTIONS(7080), 1, + ACTIONS(6626), 1, aux_sym_citation_token1, [25245] = 1, - ACTIONS(7082), 1, - anon_sym_RBRACK, + ACTIONS(6628), 1, + aux_sym_citation_token2, [25249] = 1, - ACTIONS(6830), 1, - anon_sym_RBRACE, + ACTIONS(6630), 1, + aux_sym_citation_token2, [25253] = 1, - ACTIONS(7084), 1, - anon_sym_RBRACK, + ACTIONS(6632), 1, + anon_sym_LPAREN, [25257] = 1, - ACTIONS(7086), 1, + ACTIONS(6634), 1, anon_sym_LPAREN, [25261] = 1, - ACTIONS(6802), 1, - anon_sym_RBRACE, + ACTIONS(6636), 1, + anon_sym_RBRACK, [25265] = 1, - ACTIONS(7088), 1, - anon_sym_LPAREN, - [25269] = 1, - ACTIONS(6814), 1, + ACTIONS(6638), 1, anon_sym_RBRACE, + [25269] = 1, + ACTIONS(6640), 1, + aux_sym_citation_token2, [25273] = 1, - ACTIONS(7090), 1, - anon_sym_RBRACE, - [25277] = 1, - ACTIONS(7092), 1, + ACTIONS(6642), 1, anon_sym_RBRACK, - [25281] = 1, - ACTIONS(7094), 1, + [25277] = 1, + ACTIONS(6644), 1, aux_sym_citation_token2, + [25281] = 1, + ACTIONS(6646), 1, + anon_sym_RBRACK, [25285] = 1, - ACTIONS(7096), 1, - anon_sym_RBRACE, + ACTIONS(6648), 1, + aux_sym_citation_token1, [25289] = 1, - ACTIONS(6794), 1, - anon_sym_RBRACE, + ACTIONS(6650), 1, + anon_sym_RBRACK, [25293] = 1, - ACTIONS(7098), 1, + ACTIONS(6652), 1, anon_sym_RBRACE, [25297] = 1, - ACTIONS(7100), 1, + ACTIONS(6654), 1, anon_sym_RBRACE, [25301] = 1, - ACTIONS(7102), 1, + ACTIONS(6656), 1, anon_sym_RBRACE, [25305] = 1, - ACTIONS(7104), 1, + ACTIONS(6420), 1, anon_sym_RBRACE, [25309] = 1, - ACTIONS(7106), 1, + ACTIONS(6658), 1, aux_sym_citation_token1, [25313] = 1, - ACTIONS(7108), 1, - aux_sym_citation_token1, + ACTIONS(6660), 1, + aux_sym_citation_token2, [25317] = 1, - ACTIONS(7110), 1, + ACTIONS(6662), 1, sym_shortcode_name, [25321] = 1, - ACTIONS(7112), 1, + ACTIONS(6664), 1, sym_shortcode_name, [25325] = 1, - ACTIONS(7114), 1, + ACTIONS(6666), 1, sym_shortcode_name, [25329] = 1, - ACTIONS(7116), 1, + ACTIONS(6668), 1, sym_shortcode_name, [25333] = 1, - ACTIONS(7118), 1, + ACTIONS(6670), 1, sym_shortcode_name, [25337] = 1, - ACTIONS(7120), 1, + ACTIONS(6672), 1, sym_shortcode_name, [25341] = 1, - ACTIONS(7122), 1, + ACTIONS(6674), 1, sym_shortcode_name, [25345] = 1, - ACTIONS(7124), 1, + ACTIONS(6676), 1, sym_shortcode_name, [25349] = 1, - ACTIONS(7126), 1, + ACTIONS(6678), 1, sym_shortcode_name, [25353] = 1, - ACTIONS(7128), 1, + ACTIONS(6680), 1, sym_shortcode_name, [25357] = 1, - ACTIONS(7130), 1, + ACTIONS(6682), 1, sym_shortcode_name, [25361] = 1, - ACTIONS(7132), 1, + ACTIONS(6684), 1, sym_shortcode_name, [25365] = 1, - ACTIONS(7134), 1, + ACTIONS(6686), 1, sym_shortcode_name, [25369] = 1, - ACTIONS(5179), 1, - sym__trigger_error, + ACTIONS(6688), 1, + sym_shortcode_name, [25373] = 1, - ACTIONS(7136), 1, + ACTIONS(6690), 1, sym_shortcode_name, [25377] = 1, - ACTIONS(7138), 1, + ACTIONS(6692), 1, sym_shortcode_name, [25381] = 1, - ACTIONS(7140), 1, + ACTIONS(6694), 1, sym_shortcode_name, [25385] = 1, - ACTIONS(7142), 1, + ACTIONS(6696), 1, sym_shortcode_name, [25389] = 1, - ACTIONS(7144), 1, + ACTIONS(6698), 1, sym_shortcode_name, [25393] = 1, - ACTIONS(7146), 1, + ACTIONS(6700), 1, sym_shortcode_name, [25397] = 1, - ACTIONS(7148), 1, + ACTIONS(6702), 1, sym_shortcode_name, [25401] = 1, - ACTIONS(7150), 1, + ACTIONS(6704), 1, sym_shortcode_name, [25405] = 1, - ACTIONS(7152), 1, + ACTIONS(6706), 1, sym_shortcode_name, [25409] = 1, - ACTIONS(7154), 1, - anon_sym_RBRACE, + ACTIONS(6708), 1, + sym_shortcode_name, [25413] = 1, - ACTIONS(7156), 1, - aux_sym_citation_token2, + ACTIONS(6710), 1, + aux_sym_citation_token1, [25417] = 1, - ACTIONS(7158), 1, - aux_sym_citation_token2, + ACTIONS(6712), 1, + aux_sym_citation_token1, [25421] = 1, - ACTIONS(7160), 1, + ACTIONS(6714), 1, anon_sym_LPAREN, [25425] = 1, - ACTIONS(7162), 1, + ACTIONS(6716), 1, aux_sym_citation_token2, [25429] = 1, - ACTIONS(7164), 1, + ACTIONS(6718), 1, aux_sym_citation_token2, [25433] = 1, - ACTIONS(7166), 1, - sym_shortcode_name, + ACTIONS(6720), 1, + anon_sym_LPAREN, [25437] = 1, - ACTIONS(7168), 1, - aux_sym_citation_token1, - [25441] = 1, - ACTIONS(7170), 1, + ACTIONS(6348), 1, anon_sym_RBRACE, + [25441] = 1, + ACTIONS(6722), 1, + aux_sym_citation_token1, [25445] = 1, - ACTIONS(6890), 1, + ACTIONS(6724), 1, anon_sym_RBRACE, [25449] = 1, - ACTIONS(6878), 1, - anon_sym_RBRACE, + ACTIONS(6726), 1, + aux_sym_citation_token2, [25453] = 1, - ACTIONS(7172), 1, + ACTIONS(6728), 1, anon_sym_RBRACE, [25457] = 1, - ACTIONS(7174), 1, + ACTIONS(6730), 1, anon_sym_RBRACE, [25461] = 1, - ACTIONS(7176), 1, - ts_builtin_sym_end, + ACTIONS(6732), 1, + anon_sym_RBRACK, [25465] = 1, - ACTIONS(7178), 1, - aux_sym_citation_token1, + ACTIONS(6734), 1, + anon_sym_RBRACE, [25469] = 1, - ACTIONS(7180), 1, - aux_sym_citation_token1, + ACTIONS(6736), 1, + anon_sym_RBRACE, [25473] = 1, - ACTIONS(7182), 1, - aux_sym_citation_token2, + ACTIONS(6738), 1, + aux_sym_citation_token1, [25477] = 1, - ACTIONS(7184), 1, - aux_sym_citation_token2, + ACTIONS(6740), 1, + anon_sym_LPAREN, [25481] = 1, - ACTIONS(6810), 1, + ACTIONS(6742), 1, anon_sym_RBRACE, [25485] = 1, - ACTIONS(7186), 1, - anon_sym_LPAREN, + ACTIONS(6744), 1, + aux_sym_citation_token1, [25489] = 1, - ACTIONS(7188), 1, - anon_sym_RBRACE, + ACTIONS(6746), 1, + aux_sym_citation_token1, [25493] = 1, - ACTIONS(7190), 1, - sym_shortcode_name, + ACTIONS(6748), 1, + anon_sym_RBRACE, [25497] = 1, - ACTIONS(7192), 1, - anon_sym_RBRACK, + ACTIONS(6364), 1, + anon_sym_RBRACE, [25501] = 1, - ACTIONS(7194), 1, - sym__trigger_error, + ACTIONS(6750), 1, + anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { @@ -182442,51 +180728,51 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1691)] = 81, [SMALL_STATE(1692)] = 162, [SMALL_STATE(1693)] = 243, - [SMALL_STATE(1694)] = 322, - [SMALL_STATE(1695)] = 403, - [SMALL_STATE(1696)] = 484, - [SMALL_STATE(1697)] = 565, - [SMALL_STATE(1698)] = 646, - [SMALL_STATE(1699)] = 727, - [SMALL_STATE(1700)] = 808, - [SMALL_STATE(1701)] = 889, - [SMALL_STATE(1702)] = 970, - [SMALL_STATE(1703)] = 1051, - [SMALL_STATE(1704)] = 1132, - [SMALL_STATE(1705)] = 1213, - [SMALL_STATE(1706)] = 1294, - [SMALL_STATE(1707)] = 1375, - [SMALL_STATE(1708)] = 1456, - [SMALL_STATE(1709)] = 1537, - [SMALL_STATE(1710)] = 1618, - [SMALL_STATE(1711)] = 1699, - [SMALL_STATE(1712)] = 1780, - [SMALL_STATE(1713)] = 1861, - [SMALL_STATE(1714)] = 1942, - [SMALL_STATE(1715)] = 2023, - [SMALL_STATE(1716)] = 2104, - [SMALL_STATE(1717)] = 2185, - [SMALL_STATE(1718)] = 2266, + [SMALL_STATE(1694)] = 324, + [SMALL_STATE(1695)] = 405, + [SMALL_STATE(1696)] = 486, + [SMALL_STATE(1697)] = 567, + [SMALL_STATE(1698)] = 648, + [SMALL_STATE(1699)] = 729, + [SMALL_STATE(1700)] = 810, + [SMALL_STATE(1701)] = 891, + [SMALL_STATE(1702)] = 972, + [SMALL_STATE(1703)] = 1053, + [SMALL_STATE(1704)] = 1134, + [SMALL_STATE(1705)] = 1215, + [SMALL_STATE(1706)] = 1296, + [SMALL_STATE(1707)] = 1377, + [SMALL_STATE(1708)] = 1458, + [SMALL_STATE(1709)] = 1539, + [SMALL_STATE(1710)] = 1620, + [SMALL_STATE(1711)] = 1701, + [SMALL_STATE(1712)] = 1782, + [SMALL_STATE(1713)] = 1863, + [SMALL_STATE(1714)] = 1944, + [SMALL_STATE(1715)] = 2025, + [SMALL_STATE(1716)] = 2106, + [SMALL_STATE(1717)] = 2187, + [SMALL_STATE(1718)] = 2268, [SMALL_STATE(1719)] = 2347, [SMALL_STATE(1720)] = 2428, [SMALL_STATE(1721)] = 2509, [SMALL_STATE(1722)] = 2590, [SMALL_STATE(1723)] = 2671, - [SMALL_STATE(1724)] = 2752, - [SMALL_STATE(1725)] = 2833, - [SMALL_STATE(1726)] = 2914, - [SMALL_STATE(1727)] = 2995, - [SMALL_STATE(1728)] = 3076, - [SMALL_STATE(1729)] = 3157, - [SMALL_STATE(1730)] = 3238, - [SMALL_STATE(1731)] = 3319, - [SMALL_STATE(1732)] = 3400, - [SMALL_STATE(1733)] = 3481, - [SMALL_STATE(1734)] = 3562, - [SMALL_STATE(1735)] = 3643, - [SMALL_STATE(1736)] = 3724, - [SMALL_STATE(1737)] = 3805, - [SMALL_STATE(1738)] = 3886, + [SMALL_STATE(1724)] = 2750, + [SMALL_STATE(1725)] = 2831, + [SMALL_STATE(1726)] = 2912, + [SMALL_STATE(1727)] = 2993, + [SMALL_STATE(1728)] = 3074, + [SMALL_STATE(1729)] = 3155, + [SMALL_STATE(1730)] = 3236, + [SMALL_STATE(1731)] = 3317, + [SMALL_STATE(1732)] = 3398, + [SMALL_STATE(1733)] = 3479, + [SMALL_STATE(1734)] = 3560, + [SMALL_STATE(1735)] = 3641, + [SMALL_STATE(1736)] = 3722, + [SMALL_STATE(1737)] = 3803, + [SMALL_STATE(1738)] = 3884, [SMALL_STATE(1739)] = 3965, [SMALL_STATE(1740)] = 4046, [SMALL_STATE(1741)] = 4120, @@ -182494,18 +180780,18 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1743)] = 4252, [SMALL_STATE(1744)] = 4318, [SMALL_STATE(1745)] = 4384, - [SMALL_STATE(1746)] = 4450, - [SMALL_STATE(1747)] = 4516, - [SMALL_STATE(1748)] = 4582, - [SMALL_STATE(1749)] = 4648, + [SMALL_STATE(1746)] = 4448, + [SMALL_STATE(1747)] = 4514, + [SMALL_STATE(1748)] = 4580, + [SMALL_STATE(1749)] = 4646, [SMALL_STATE(1750)] = 4712, [SMALL_STATE(1751)] = 4773, [SMALL_STATE(1752)] = 4838, - [SMALL_STATE(1753)] = 4899, + [SMALL_STATE(1753)] = 4903, [SMALL_STATE(1754)] = 4964, - [SMALL_STATE(1755)] = 5029, - [SMALL_STATE(1756)] = 5090, - [SMALL_STATE(1757)] = 5151, + [SMALL_STATE(1755)] = 5025, + [SMALL_STATE(1756)] = 5086, + [SMALL_STATE(1757)] = 5147, [SMALL_STATE(1758)] = 5212, [SMALL_STATE(1759)] = 5272, [SMALL_STATE(1760)] = 5332, @@ -182520,7 +180806,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1769)] = 5872, [SMALL_STATE(1770)] = 5932, [SMALL_STATE(1771)] = 5992, - [SMALL_STATE(1772)] = 6052, + [SMALL_STATE(1772)] = 6048, [SMALL_STATE(1773)] = 6108, [SMALL_STATE(1774)] = 6168, [SMALL_STATE(1775)] = 6228, @@ -182536,57 +180822,57 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1785)] = 6828, [SMALL_STATE(1786)] = 6888, [SMALL_STATE(1787)] = 6948, - [SMALL_STATE(1788)] = 6998, + [SMALL_STATE(1788)] = 6996, [SMALL_STATE(1789)] = 7046, [SMALL_STATE(1790)] = 7102, [SMALL_STATE(1791)] = 7150, - [SMALL_STATE(1792)] = 7198, - [SMALL_STATE(1793)] = 7246, + [SMALL_STATE(1792)] = 7204, + [SMALL_STATE(1793)] = 7252, [SMALL_STATE(1794)] = 7300, [SMALL_STATE(1795)] = 7348, - [SMALL_STATE(1796)] = 7404, - [SMALL_STATE(1797)] = 7456, - [SMALL_STATE(1798)] = 7504, - [SMALL_STATE(1799)] = 7552, + [SMALL_STATE(1796)] = 7398, + [SMALL_STATE(1797)] = 7450, + [SMALL_STATE(1798)] = 7498, + [SMALL_STATE(1799)] = 7554, [SMALL_STATE(1800)] = 7602, - [SMALL_STATE(1801)] = 7647, - [SMALL_STATE(1802)] = 7700, - [SMALL_STATE(1803)] = 7753, - [SMALL_STATE(1804)] = 7798, - [SMALL_STATE(1805)] = 7849, - [SMALL_STATE(1806)] = 7900, - [SMALL_STATE(1807)] = 7945, + [SMALL_STATE(1801)] = 7651, + [SMALL_STATE(1802)] = 7696, + [SMALL_STATE(1803)] = 7741, + [SMALL_STATE(1804)] = 7794, + [SMALL_STATE(1805)] = 7847, + [SMALL_STATE(1806)] = 7896, + [SMALL_STATE(1807)] = 7949, [SMALL_STATE(1808)] = 7994, [SMALL_STATE(1809)] = 8039, [SMALL_STATE(1810)] = 8084, - [SMALL_STATE(1811)] = 8137, - [SMALL_STATE(1812)] = 8190, - [SMALL_STATE(1813)] = 8235, - [SMALL_STATE(1814)] = 8280, - [SMALL_STATE(1815)] = 8329, - [SMALL_STATE(1816)] = 8374, - [SMALL_STATE(1817)] = 8427, - [SMALL_STATE(1818)] = 8472, - [SMALL_STATE(1819)] = 8517, - [SMALL_STATE(1820)] = 8570, - [SMALL_STATE(1821)] = 8615, - [SMALL_STATE(1822)] = 8660, - [SMALL_STATE(1823)] = 8705, - [SMALL_STATE(1824)] = 8750, + [SMALL_STATE(1811)] = 8129, + [SMALL_STATE(1812)] = 8182, + [SMALL_STATE(1813)] = 8227, + [SMALL_STATE(1814)] = 8274, + [SMALL_STATE(1815)] = 8327, + [SMALL_STATE(1816)] = 8372, + [SMALL_STATE(1817)] = 8417, + [SMALL_STATE(1818)] = 8462, + [SMALL_STATE(1819)] = 8507, + [SMALL_STATE(1820)] = 8552, + [SMALL_STATE(1821)] = 8603, + [SMALL_STATE(1822)] = 8648, + [SMALL_STATE(1823)] = 8693, + [SMALL_STATE(1824)] = 8746, [SMALL_STATE(1825)] = 8797, - [SMALL_STATE(1826)] = 8843, + [SMALL_STATE(1826)] = 8841, [SMALL_STATE(1827)] = 8887, - [SMALL_STATE(1828)] = 8931, + [SMALL_STATE(1828)] = 8933, [SMALL_STATE(1829)] = 8977, [SMALL_STATE(1830)] = 9023, [SMALL_STATE(1831)] = 9069, - [SMALL_STATE(1832)] = 9112, - [SMALL_STATE(1833)] = 9155, - [SMALL_STATE(1834)] = 9198, - [SMALL_STATE(1835)] = 9243, - [SMALL_STATE(1836)] = 9288, - [SMALL_STATE(1837)] = 9333, - [SMALL_STATE(1838)] = 9376, + [SMALL_STATE(1832)] = 9114, + [SMALL_STATE(1833)] = 9157, + [SMALL_STATE(1834)] = 9200, + [SMALL_STATE(1835)] = 9245, + [SMALL_STATE(1836)] = 9290, + [SMALL_STATE(1837)] = 9335, + [SMALL_STATE(1838)] = 9378, [SMALL_STATE(1839)] = 9421, [SMALL_STATE(1840)] = 9464, [SMALL_STATE(1841)] = 9506, @@ -182648,165 +180934,165 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1897)] = 11487, [SMALL_STATE(1898)] = 11516, [SMALL_STATE(1899)] = 11545, - [SMALL_STATE(1900)] = 11579, - [SMALL_STATE(1901)] = 11609, - [SMALL_STATE(1902)] = 11639, - [SMALL_STATE(1903)] = 11673, - [SMALL_STATE(1904)] = 11703, - [SMALL_STATE(1905)] = 11737, - [SMALL_STATE(1906)] = 11767, - [SMALL_STATE(1907)] = 11797, + [SMALL_STATE(1900)] = 11575, + [SMALL_STATE(1901)] = 11605, + [SMALL_STATE(1902)] = 11635, + [SMALL_STATE(1903)] = 11665, + [SMALL_STATE(1904)] = 11695, + [SMALL_STATE(1905)] = 11725, + [SMALL_STATE(1906)] = 11759, + [SMALL_STATE(1907)] = 11793, [SMALL_STATE(1908)] = 11827, [SMALL_STATE(1909)] = 11857, [SMALL_STATE(1910)] = 11887, [SMALL_STATE(1911)] = 11917, [SMALL_STATE(1912)] = 11947, - [SMALL_STATE(1913)] = 11981, - [SMALL_STATE(1914)] = 12011, - [SMALL_STATE(1915)] = 12045, - [SMALL_STATE(1916)] = 12075, - [SMALL_STATE(1917)] = 12105, - [SMALL_STATE(1918)] = 12135, - [SMALL_STATE(1919)] = 12165, - [SMALL_STATE(1920)] = 12195, - [SMALL_STATE(1921)] = 12225, - [SMALL_STATE(1922)] = 12255, - [SMALL_STATE(1923)] = 12289, - [SMALL_STATE(1924)] = 12323, - [SMALL_STATE(1925)] = 12353, - [SMALL_STATE(1926)] = 12383, - [SMALL_STATE(1927)] = 12413, - [SMALL_STATE(1928)] = 12443, - [SMALL_STATE(1929)] = 12473, - [SMALL_STATE(1930)] = 12503, - [SMALL_STATE(1931)] = 12537, - [SMALL_STATE(1932)] = 12567, - [SMALL_STATE(1933)] = 12597, - [SMALL_STATE(1934)] = 12627, - [SMALL_STATE(1935)] = 12657, - [SMALL_STATE(1936)] = 12687, - [SMALL_STATE(1937)] = 12717, - [SMALL_STATE(1938)] = 12751, - [SMALL_STATE(1939)] = 12781, - [SMALL_STATE(1940)] = 12815, - [SMALL_STATE(1941)] = 12845, - [SMALL_STATE(1942)] = 12875, - [SMALL_STATE(1943)] = 12905, - [SMALL_STATE(1944)] = 12935, - [SMALL_STATE(1945)] = 12965, - [SMALL_STATE(1946)] = 12999, - [SMALL_STATE(1947)] = 13033, - [SMALL_STATE(1948)] = 13051, - [SMALL_STATE(1949)] = 13081, - [SMALL_STATE(1950)] = 13111, - [SMALL_STATE(1951)] = 13141, - [SMALL_STATE(1952)] = 13171, - [SMALL_STATE(1953)] = 13201, - [SMALL_STATE(1954)] = 13231, - [SMALL_STATE(1955)] = 13249, - [SMALL_STATE(1956)] = 13279, - [SMALL_STATE(1957)] = 13309, - [SMALL_STATE(1958)] = 13339, - [SMALL_STATE(1959)] = 13369, - [SMALL_STATE(1960)] = 13399, + [SMALL_STATE(1913)] = 11977, + [SMALL_STATE(1914)] = 12007, + [SMALL_STATE(1915)] = 12037, + [SMALL_STATE(1916)] = 12067, + [SMALL_STATE(1917)] = 12097, + [SMALL_STATE(1918)] = 12127, + [SMALL_STATE(1919)] = 12161, + [SMALL_STATE(1920)] = 12179, + [SMALL_STATE(1921)] = 12209, + [SMALL_STATE(1922)] = 12239, + [SMALL_STATE(1923)] = 12257, + [SMALL_STATE(1924)] = 12287, + [SMALL_STATE(1925)] = 12317, + [SMALL_STATE(1926)] = 12351, + [SMALL_STATE(1927)] = 12385, + [SMALL_STATE(1928)] = 12415, + [SMALL_STATE(1929)] = 12445, + [SMALL_STATE(1930)] = 12475, + [SMALL_STATE(1931)] = 12505, + [SMALL_STATE(1932)] = 12535, + [SMALL_STATE(1933)] = 12565, + [SMALL_STATE(1934)] = 12595, + [SMALL_STATE(1935)] = 12625, + [SMALL_STATE(1936)] = 12655, + [SMALL_STATE(1937)] = 12685, + [SMALL_STATE(1938)] = 12715, + [SMALL_STATE(1939)] = 12745, + [SMALL_STATE(1940)] = 12775, + [SMALL_STATE(1941)] = 12805, + [SMALL_STATE(1942)] = 12835, + [SMALL_STATE(1943)] = 12865, + [SMALL_STATE(1944)] = 12895, + [SMALL_STATE(1945)] = 12925, + [SMALL_STATE(1946)] = 12955, + [SMALL_STATE(1947)] = 12989, + [SMALL_STATE(1948)] = 13019, + [SMALL_STATE(1949)] = 13053, + [SMALL_STATE(1950)] = 13087, + [SMALL_STATE(1951)] = 13117, + [SMALL_STATE(1952)] = 13147, + [SMALL_STATE(1953)] = 13177, + [SMALL_STATE(1954)] = 13207, + [SMALL_STATE(1955)] = 13241, + [SMALL_STATE(1956)] = 13275, + [SMALL_STATE(1957)] = 13305, + [SMALL_STATE(1958)] = 13335, + [SMALL_STATE(1959)] = 13365, + [SMALL_STATE(1960)] = 13395, [SMALL_STATE(1961)] = 13429, [SMALL_STATE(1962)] = 13460, [SMALL_STATE(1963)] = 13483, [SMALL_STATE(1964)] = 13506, [SMALL_STATE(1965)] = 13537, - [SMALL_STATE(1966)] = 13560, - [SMALL_STATE(1967)] = 13591, - [SMALL_STATE(1968)] = 13622, - [SMALL_STATE(1969)] = 13645, - [SMALL_STATE(1970)] = 13668, - [SMALL_STATE(1971)] = 13699, - [SMALL_STATE(1972)] = 13722, - [SMALL_STATE(1973)] = 13745, - [SMALL_STATE(1974)] = 13768, - [SMALL_STATE(1975)] = 13799, - [SMALL_STATE(1976)] = 13830, - [SMALL_STATE(1977)] = 13861, - [SMALL_STATE(1978)] = 13878, - [SMALL_STATE(1979)] = 13909, - [SMALL_STATE(1980)] = 13940, - [SMALL_STATE(1981)] = 13963, - [SMALL_STATE(1982)] = 13986, - [SMALL_STATE(1983)] = 14017, - [SMALL_STATE(1984)] = 14040, - [SMALL_STATE(1985)] = 14063, - [SMALL_STATE(1986)] = 14094, - [SMALL_STATE(1987)] = 14117, - [SMALL_STATE(1988)] = 14148, - [SMALL_STATE(1989)] = 14179, - [SMALL_STATE(1990)] = 14200, - [SMALL_STATE(1991)] = 14217, - [SMALL_STATE(1992)] = 14240, - [SMALL_STATE(1993)] = 14263, - [SMALL_STATE(1994)] = 14294, - [SMALL_STATE(1995)] = 14325, - [SMALL_STATE(1996)] = 14348, - [SMALL_STATE(1997)] = 14379, - [SMALL_STATE(1998)] = 14410, - [SMALL_STATE(1999)] = 14433, - [SMALL_STATE(2000)] = 14448, - [SMALL_STATE(2001)] = 14471, - [SMALL_STATE(2002)] = 14502, - [SMALL_STATE(2003)] = 14533, - [SMALL_STATE(2004)] = 14556, - [SMALL_STATE(2005)] = 14579, - [SMALL_STATE(2006)] = 14610, - [SMALL_STATE(2007)] = 14633, - [SMALL_STATE(2008)] = 14656, - [SMALL_STATE(2009)] = 14687, - [SMALL_STATE(2010)] = 14710, - [SMALL_STATE(2011)] = 14741, - [SMALL_STATE(2012)] = 14764, + [SMALL_STATE(1966)] = 13552, + [SMALL_STATE(1967)] = 13583, + [SMALL_STATE(1968)] = 13606, + [SMALL_STATE(1969)] = 13629, + [SMALL_STATE(1970)] = 13650, + [SMALL_STATE(1971)] = 13673, + [SMALL_STATE(1972)] = 13696, + [SMALL_STATE(1973)] = 13727, + [SMALL_STATE(1974)] = 13758, + [SMALL_STATE(1975)] = 13789, + [SMALL_STATE(1976)] = 13812, + [SMALL_STATE(1977)] = 13843, + [SMALL_STATE(1978)] = 13874, + [SMALL_STATE(1979)] = 13897, + [SMALL_STATE(1980)] = 13920, + [SMALL_STATE(1981)] = 13937, + [SMALL_STATE(1982)] = 13968, + [SMALL_STATE(1983)] = 13991, + [SMALL_STATE(1984)] = 14014, + [SMALL_STATE(1985)] = 14037, + [SMALL_STATE(1986)] = 14060, + [SMALL_STATE(1987)] = 14091, + [SMALL_STATE(1988)] = 14114, + [SMALL_STATE(1989)] = 14137, + [SMALL_STATE(1990)] = 14168, + [SMALL_STATE(1991)] = 14199, + [SMALL_STATE(1992)] = 14230, + [SMALL_STATE(1993)] = 14261, + [SMALL_STATE(1994)] = 14276, + [SMALL_STATE(1995)] = 14299, + [SMALL_STATE(1996)] = 14322, + [SMALL_STATE(1997)] = 14353, + [SMALL_STATE(1998)] = 14384, + [SMALL_STATE(1999)] = 14415, + [SMALL_STATE(2000)] = 14446, + [SMALL_STATE(2001)] = 14469, + [SMALL_STATE(2002)] = 14492, + [SMALL_STATE(2003)] = 14509, + [SMALL_STATE(2004)] = 14532, + [SMALL_STATE(2005)] = 14563, + [SMALL_STATE(2006)] = 14594, + [SMALL_STATE(2007)] = 14617, + [SMALL_STATE(2008)] = 14648, + [SMALL_STATE(2009)] = 14671, + [SMALL_STATE(2010)] = 14702, + [SMALL_STATE(2011)] = 14725, + [SMALL_STATE(2012)] = 14756, [SMALL_STATE(2013)] = 14779, [SMALL_STATE(2014)] = 14802, [SMALL_STATE(2015)] = 14833, [SMALL_STATE(2016)] = 14861, - [SMALL_STATE(2017)] = 14875, - [SMALL_STATE(2018)] = 14903, - [SMALL_STATE(2019)] = 14931, - [SMALL_STATE(2020)] = 14959, - [SMALL_STATE(2021)] = 14987, - [SMALL_STATE(2022)] = 15015, - [SMALL_STATE(2023)] = 15043, - [SMALL_STATE(2024)] = 15071, - [SMALL_STATE(2025)] = 15099, - [SMALL_STATE(2026)] = 15127, - [SMALL_STATE(2027)] = 15155, - [SMALL_STATE(2028)] = 15183, - [SMALL_STATE(2029)] = 15211, - [SMALL_STATE(2030)] = 15239, - [SMALL_STATE(2031)] = 15267, - [SMALL_STATE(2032)] = 15295, + [SMALL_STATE(2017)] = 14889, + [SMALL_STATE(2018)] = 14917, + [SMALL_STATE(2019)] = 14945, + [SMALL_STATE(2020)] = 14973, + [SMALL_STATE(2021)] = 15001, + [SMALL_STATE(2022)] = 15029, + [SMALL_STATE(2023)] = 15057, + [SMALL_STATE(2024)] = 15085, + [SMALL_STATE(2025)] = 15113, + [SMALL_STATE(2026)] = 15141, + [SMALL_STATE(2027)] = 15169, + [SMALL_STATE(2028)] = 15197, + [SMALL_STATE(2029)] = 15225, + [SMALL_STATE(2030)] = 15253, + [SMALL_STATE(2031)] = 15281, + [SMALL_STATE(2032)] = 15309, [SMALL_STATE(2033)] = 15323, - [SMALL_STATE(2034)] = 15351, - [SMALL_STATE(2035)] = 15379, - [SMALL_STATE(2036)] = 15407, - [SMALL_STATE(2037)] = 15435, - [SMALL_STATE(2038)] = 15463, - [SMALL_STATE(2039)] = 15491, - [SMALL_STATE(2040)] = 15519, - [SMALL_STATE(2041)] = 15547, - [SMALL_STATE(2042)] = 15575, - [SMALL_STATE(2043)] = 15603, - [SMALL_STATE(2044)] = 15631, - [SMALL_STATE(2045)] = 15659, - [SMALL_STATE(2046)] = 15687, - [SMALL_STATE(2047)] = 15715, - [SMALL_STATE(2048)] = 15743, - [SMALL_STATE(2049)] = 15771, - [SMALL_STATE(2050)] = 15799, + [SMALL_STATE(2034)] = 15337, + [SMALL_STATE(2035)] = 15365, + [SMALL_STATE(2036)] = 15393, + [SMALL_STATE(2037)] = 15421, + [SMALL_STATE(2038)] = 15449, + [SMALL_STATE(2039)] = 15477, + [SMALL_STATE(2040)] = 15505, + [SMALL_STATE(2041)] = 15533, + [SMALL_STATE(2042)] = 15561, + [SMALL_STATE(2043)] = 15589, + [SMALL_STATE(2044)] = 15617, + [SMALL_STATE(2045)] = 15645, + [SMALL_STATE(2046)] = 15673, + [SMALL_STATE(2047)] = 15701, + [SMALL_STATE(2048)] = 15729, + [SMALL_STATE(2049)] = 15757, + [SMALL_STATE(2050)] = 15785, [SMALL_STATE(2051)] = 15813, [SMALL_STATE(2052)] = 15841, [SMALL_STATE(2053)] = 15869, [SMALL_STATE(2054)] = 15884, - [SMALL_STATE(2055)] = 15902, - [SMALL_STATE(2056)] = 15920, - [SMALL_STATE(2057)] = 15938, - [SMALL_STATE(2058)] = 15956, + [SMALL_STATE(2055)] = 15906, + [SMALL_STATE(2056)] = 15924, + [SMALL_STATE(2057)] = 15942, + [SMALL_STATE(2058)] = 15960, [SMALL_STATE(2059)] = 15978, [SMALL_STATE(2060)] = 15996, [SMALL_STATE(2061)] = 16014, @@ -182824,230 +181110,230 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2073)] = 16230, [SMALL_STATE(2074)] = 16248, [SMALL_STATE(2075)] = 16266, - [SMALL_STATE(2076)] = 16288, - [SMALL_STATE(2077)] = 16300, - [SMALL_STATE(2078)] = 16318, - [SMALL_STATE(2079)] = 16336, - [SMALL_STATE(2080)] = 16358, - [SMALL_STATE(2081)] = 16376, - [SMALL_STATE(2082)] = 16394, - [SMALL_STATE(2083)] = 16416, - [SMALL_STATE(2084)] = 16434, - [SMALL_STATE(2085)] = 16452, - [SMALL_STATE(2086)] = 16470, - [SMALL_STATE(2087)] = 16488, - [SMALL_STATE(2088)] = 16506, - [SMALL_STATE(2089)] = 16528, - [SMALL_STATE(2090)] = 16546, - [SMALL_STATE(2091)] = 16564, - [SMALL_STATE(2092)] = 16586, - [SMALL_STATE(2093)] = 16604, - [SMALL_STATE(2094)] = 16622, - [SMALL_STATE(2095)] = 16640, - [SMALL_STATE(2096)] = 16658, - [SMALL_STATE(2097)] = 16676, - [SMALL_STATE(2098)] = 16698, - [SMALL_STATE(2099)] = 16716, - [SMALL_STATE(2100)] = 16734, - [SMALL_STATE(2101)] = 16752, - [SMALL_STATE(2102)] = 16774, - [SMALL_STATE(2103)] = 16792, - [SMALL_STATE(2104)] = 16810, - [SMALL_STATE(2105)] = 16828, - [SMALL_STATE(2106)] = 16846, - [SMALL_STATE(2107)] = 16868, - [SMALL_STATE(2108)] = 16890, - [SMALL_STATE(2109)] = 16908, - [SMALL_STATE(2110)] = 16926, - [SMALL_STATE(2111)] = 16944, - [SMALL_STATE(2112)] = 16962, - [SMALL_STATE(2113)] = 16980, - [SMALL_STATE(2114)] = 16998, - [SMALL_STATE(2115)] = 17016, - [SMALL_STATE(2116)] = 17034, - [SMALL_STATE(2117)] = 17052, - [SMALL_STATE(2118)] = 17070, - [SMALL_STATE(2119)] = 17088, - [SMALL_STATE(2120)] = 17106, - [SMALL_STATE(2121)] = 17124, - [SMALL_STATE(2122)] = 17142, - [SMALL_STATE(2123)] = 17160, - [SMALL_STATE(2124)] = 17178, - [SMALL_STATE(2125)] = 17196, - [SMALL_STATE(2126)] = 17214, - [SMALL_STATE(2127)] = 17232, - [SMALL_STATE(2128)] = 17250, - [SMALL_STATE(2129)] = 17268, - [SMALL_STATE(2130)] = 17286, - [SMALL_STATE(2131)] = 17304, - [SMALL_STATE(2132)] = 17322, - [SMALL_STATE(2133)] = 17340, - [SMALL_STATE(2134)] = 17362, - [SMALL_STATE(2135)] = 17380, - [SMALL_STATE(2136)] = 17402, - [SMALL_STATE(2137)] = 17420, - [SMALL_STATE(2138)] = 17438, - [SMALL_STATE(2139)] = 17456, - [SMALL_STATE(2140)] = 17474, - [SMALL_STATE(2141)] = 17492, - [SMALL_STATE(2142)] = 17510, - [SMALL_STATE(2143)] = 17528, - [SMALL_STATE(2144)] = 17546, - [SMALL_STATE(2145)] = 17568, - [SMALL_STATE(2146)] = 17586, - [SMALL_STATE(2147)] = 17604, + [SMALL_STATE(2076)] = 16284, + [SMALL_STATE(2077)] = 16302, + [SMALL_STATE(2078)] = 16320, + [SMALL_STATE(2079)] = 16338, + [SMALL_STATE(2080)] = 16356, + [SMALL_STATE(2081)] = 16374, + [SMALL_STATE(2082)] = 16396, + [SMALL_STATE(2083)] = 16414, + [SMALL_STATE(2084)] = 16432, + [SMALL_STATE(2085)] = 16450, + [SMALL_STATE(2086)] = 16468, + [SMALL_STATE(2087)] = 16486, + [SMALL_STATE(2088)] = 16504, + [SMALL_STATE(2089)] = 16522, + [SMALL_STATE(2090)] = 16540, + [SMALL_STATE(2091)] = 16558, + [SMALL_STATE(2092)] = 16576, + [SMALL_STATE(2093)] = 16594, + [SMALL_STATE(2094)] = 16616, + [SMALL_STATE(2095)] = 16634, + [SMALL_STATE(2096)] = 16652, + [SMALL_STATE(2097)] = 16670, + [SMALL_STATE(2098)] = 16688, + [SMALL_STATE(2099)] = 16706, + [SMALL_STATE(2100)] = 16724, + [SMALL_STATE(2101)] = 16742, + [SMALL_STATE(2102)] = 16764, + [SMALL_STATE(2103)] = 16782, + [SMALL_STATE(2104)] = 16800, + [SMALL_STATE(2105)] = 16818, + [SMALL_STATE(2106)] = 16836, + [SMALL_STATE(2107)] = 16854, + [SMALL_STATE(2108)] = 16872, + [SMALL_STATE(2109)] = 16890, + [SMALL_STATE(2110)] = 16908, + [SMALL_STATE(2111)] = 16930, + [SMALL_STATE(2112)] = 16948, + [SMALL_STATE(2113)] = 16966, + [SMALL_STATE(2114)] = 16984, + [SMALL_STATE(2115)] = 17002, + [SMALL_STATE(2116)] = 17020, + [SMALL_STATE(2117)] = 17038, + [SMALL_STATE(2118)] = 17056, + [SMALL_STATE(2119)] = 17074, + [SMALL_STATE(2120)] = 17092, + [SMALL_STATE(2121)] = 17110, + [SMALL_STATE(2122)] = 17128, + [SMALL_STATE(2123)] = 17150, + [SMALL_STATE(2124)] = 17168, + [SMALL_STATE(2125)] = 17186, + [SMALL_STATE(2126)] = 17204, + [SMALL_STATE(2127)] = 17222, + [SMALL_STATE(2128)] = 17240, + [SMALL_STATE(2129)] = 17258, + [SMALL_STATE(2130)] = 17276, + [SMALL_STATE(2131)] = 17294, + [SMALL_STATE(2132)] = 17312, + [SMALL_STATE(2133)] = 17334, + [SMALL_STATE(2134)] = 17352, + [SMALL_STATE(2135)] = 17370, + [SMALL_STATE(2136)] = 17388, + [SMALL_STATE(2137)] = 17410, + [SMALL_STATE(2138)] = 17428, + [SMALL_STATE(2139)] = 17450, + [SMALL_STATE(2140)] = 17472, + [SMALL_STATE(2141)] = 17490, + [SMALL_STATE(2142)] = 17512, + [SMALL_STATE(2143)] = 17530, + [SMALL_STATE(2144)] = 17548, + [SMALL_STATE(2145)] = 17566, + [SMALL_STATE(2146)] = 17588, + [SMALL_STATE(2147)] = 17600, [SMALL_STATE(2148)] = 17622, [SMALL_STATE(2149)] = 17640, [SMALL_STATE(2150)] = 17658, - [SMALL_STATE(2151)] = 17680, - [SMALL_STATE(2152)] = 17698, - [SMALL_STATE(2153)] = 17720, - [SMALL_STATE(2154)] = 17732, - [SMALL_STATE(2155)] = 17750, - [SMALL_STATE(2156)] = 17768, - [SMALL_STATE(2157)] = 17786, - [SMALL_STATE(2158)] = 17804, - [SMALL_STATE(2159)] = 17826, - [SMALL_STATE(2160)] = 17844, - [SMALL_STATE(2161)] = 17862, - [SMALL_STATE(2162)] = 17880, - [SMALL_STATE(2163)] = 17898, - [SMALL_STATE(2164)] = 17916, - [SMALL_STATE(2165)] = 17934, - [SMALL_STATE(2166)] = 17952, - [SMALL_STATE(2167)] = 17970, - [SMALL_STATE(2168)] = 17988, - [SMALL_STATE(2169)] = 18010, - [SMALL_STATE(2170)] = 18032, - [SMALL_STATE(2171)] = 18050, - [SMALL_STATE(2172)] = 18068, - [SMALL_STATE(2173)] = 18086, - [SMALL_STATE(2174)] = 18104, - [SMALL_STATE(2175)] = 18122, - [SMALL_STATE(2176)] = 18140, - [SMALL_STATE(2177)] = 18158, - [SMALL_STATE(2178)] = 18180, - [SMALL_STATE(2179)] = 18198, - [SMALL_STATE(2180)] = 18216, - [SMALL_STATE(2181)] = 18234, - [SMALL_STATE(2182)] = 18252, - [SMALL_STATE(2183)] = 18270, - [SMALL_STATE(2184)] = 18288, - [SMALL_STATE(2185)] = 18306, - [SMALL_STATE(2186)] = 18324, - [SMALL_STATE(2187)] = 18342, - [SMALL_STATE(2188)] = 18360, - [SMALL_STATE(2189)] = 18378, - [SMALL_STATE(2190)] = 18396, - [SMALL_STATE(2191)] = 18414, - [SMALL_STATE(2192)] = 18432, - [SMALL_STATE(2193)] = 18450, - [SMALL_STATE(2194)] = 18468, - [SMALL_STATE(2195)] = 18490, - [SMALL_STATE(2196)] = 18508, - [SMALL_STATE(2197)] = 18526, - [SMALL_STATE(2198)] = 18544, - [SMALL_STATE(2199)] = 18562, - [SMALL_STATE(2200)] = 18580, - [SMALL_STATE(2201)] = 18598, - [SMALL_STATE(2202)] = 18616, - [SMALL_STATE(2203)] = 18634, - [SMALL_STATE(2204)] = 18652, - [SMALL_STATE(2205)] = 18670, - [SMALL_STATE(2206)] = 18682, - [SMALL_STATE(2207)] = 18700, - [SMALL_STATE(2208)] = 18722, - [SMALL_STATE(2209)] = 18740, - [SMALL_STATE(2210)] = 18758, - [SMALL_STATE(2211)] = 18776, - [SMALL_STATE(2212)] = 18798, - [SMALL_STATE(2213)] = 18816, - [SMALL_STATE(2214)] = 18834, - [SMALL_STATE(2215)] = 18856, - [SMALL_STATE(2216)] = 18874, - [SMALL_STATE(2217)] = 18896, - [SMALL_STATE(2218)] = 18914, - [SMALL_STATE(2219)] = 18932, - [SMALL_STATE(2220)] = 18950, - [SMALL_STATE(2221)] = 18968, - [SMALL_STATE(2222)] = 18986, - [SMALL_STATE(2223)] = 19004, - [SMALL_STATE(2224)] = 19026, - [SMALL_STATE(2225)] = 19044, - [SMALL_STATE(2226)] = 19062, - [SMALL_STATE(2227)] = 19080, - [SMALL_STATE(2228)] = 19098, - [SMALL_STATE(2229)] = 19116, - [SMALL_STATE(2230)] = 19134, - [SMALL_STATE(2231)] = 19152, - [SMALL_STATE(2232)] = 19170, - [SMALL_STATE(2233)] = 19188, - [SMALL_STATE(2234)] = 19206, - [SMALL_STATE(2235)] = 19224, - [SMALL_STATE(2236)] = 19242, - [SMALL_STATE(2237)] = 19260, - [SMALL_STATE(2238)] = 19278, - [SMALL_STATE(2239)] = 19296, - [SMALL_STATE(2240)] = 19314, - [SMALL_STATE(2241)] = 19332, - [SMALL_STATE(2242)] = 19350, - [SMALL_STATE(2243)] = 19368, - [SMALL_STATE(2244)] = 19386, - [SMALL_STATE(2245)] = 19404, - [SMALL_STATE(2246)] = 19422, - [SMALL_STATE(2247)] = 19440, - [SMALL_STATE(2248)] = 19458, - [SMALL_STATE(2249)] = 19476, - [SMALL_STATE(2250)] = 19494, - [SMALL_STATE(2251)] = 19512, - [SMALL_STATE(2252)] = 19530, - [SMALL_STATE(2253)] = 19548, - [SMALL_STATE(2254)] = 19566, - [SMALL_STATE(2255)] = 19584, - [SMALL_STATE(2256)] = 19606, - [SMALL_STATE(2257)] = 19624, - [SMALL_STATE(2258)] = 19642, - [SMALL_STATE(2259)] = 19660, - [SMALL_STATE(2260)] = 19678, - [SMALL_STATE(2261)] = 19696, - [SMALL_STATE(2262)] = 19718, - [SMALL_STATE(2263)] = 19740, - [SMALL_STATE(2264)] = 19758, - [SMALL_STATE(2265)] = 19776, - [SMALL_STATE(2266)] = 19798, - [SMALL_STATE(2267)] = 19816, - [SMALL_STATE(2268)] = 19838, - [SMALL_STATE(2269)] = 19860, - [SMALL_STATE(2270)] = 19878, - [SMALL_STATE(2271)] = 19896, - [SMALL_STATE(2272)] = 19914, - [SMALL_STATE(2273)] = 19932, - [SMALL_STATE(2274)] = 19950, - [SMALL_STATE(2275)] = 19968, - [SMALL_STATE(2276)] = 19986, - [SMALL_STATE(2277)] = 20008, - [SMALL_STATE(2278)] = 20026, - [SMALL_STATE(2279)] = 20044, - [SMALL_STATE(2280)] = 20062, - [SMALL_STATE(2281)] = 20080, - [SMALL_STATE(2282)] = 20098, - [SMALL_STATE(2283)] = 20116, - [SMALL_STATE(2284)] = 20134, - [SMALL_STATE(2285)] = 20152, - [SMALL_STATE(2286)] = 20170, - [SMALL_STATE(2287)] = 20188, - [SMALL_STATE(2288)] = 20206, - [SMALL_STATE(2289)] = 20224, - [SMALL_STATE(2290)] = 20242, - [SMALL_STATE(2291)] = 20260, - [SMALL_STATE(2292)] = 20282, - [SMALL_STATE(2293)] = 20300, - [SMALL_STATE(2294)] = 20318, - [SMALL_STATE(2295)] = 20336, - [SMALL_STATE(2296)] = 20354, - [SMALL_STATE(2297)] = 20372, - [SMALL_STATE(2298)] = 20390, - [SMALL_STATE(2299)] = 20408, + [SMALL_STATE(2151)] = 17676, + [SMALL_STATE(2152)] = 17694, + [SMALL_STATE(2153)] = 17712, + [SMALL_STATE(2154)] = 17730, + [SMALL_STATE(2155)] = 17752, + [SMALL_STATE(2156)] = 17770, + [SMALL_STATE(2157)] = 17788, + [SMALL_STATE(2158)] = 17810, + [SMALL_STATE(2159)] = 17828, + [SMALL_STATE(2160)] = 17846, + [SMALL_STATE(2161)] = 17864, + [SMALL_STATE(2162)] = 17882, + [SMALL_STATE(2163)] = 17900, + [SMALL_STATE(2164)] = 17918, + [SMALL_STATE(2165)] = 17936, + [SMALL_STATE(2166)] = 17954, + [SMALL_STATE(2167)] = 17976, + [SMALL_STATE(2168)] = 17994, + [SMALL_STATE(2169)] = 18012, + [SMALL_STATE(2170)] = 18030, + [SMALL_STATE(2171)] = 18052, + [SMALL_STATE(2172)] = 18070, + [SMALL_STATE(2173)] = 18088, + [SMALL_STATE(2174)] = 18106, + [SMALL_STATE(2175)] = 18124, + [SMALL_STATE(2176)] = 18142, + [SMALL_STATE(2177)] = 18160, + [SMALL_STATE(2178)] = 18178, + [SMALL_STATE(2179)] = 18196, + [SMALL_STATE(2180)] = 18214, + [SMALL_STATE(2181)] = 18232, + [SMALL_STATE(2182)] = 18250, + [SMALL_STATE(2183)] = 18268, + [SMALL_STATE(2184)] = 18286, + [SMALL_STATE(2185)] = 18304, + [SMALL_STATE(2186)] = 18326, + [SMALL_STATE(2187)] = 18344, + [SMALL_STATE(2188)] = 18362, + [SMALL_STATE(2189)] = 18384, + [SMALL_STATE(2190)] = 18402, + [SMALL_STATE(2191)] = 18420, + [SMALL_STATE(2192)] = 18438, + [SMALL_STATE(2193)] = 18456, + [SMALL_STATE(2194)] = 18474, + [SMALL_STATE(2195)] = 18492, + [SMALL_STATE(2196)] = 18510, + [SMALL_STATE(2197)] = 18532, + [SMALL_STATE(2198)] = 18550, + [SMALL_STATE(2199)] = 18572, + [SMALL_STATE(2200)] = 18590, + [SMALL_STATE(2201)] = 18608, + [SMALL_STATE(2202)] = 18626, + [SMALL_STATE(2203)] = 18644, + [SMALL_STATE(2204)] = 18662, + [SMALL_STATE(2205)] = 18684, + [SMALL_STATE(2206)] = 18702, + [SMALL_STATE(2207)] = 18720, + [SMALL_STATE(2208)] = 18738, + [SMALL_STATE(2209)] = 18756, + [SMALL_STATE(2210)] = 18774, + [SMALL_STATE(2211)] = 18792, + [SMALL_STATE(2212)] = 18810, + [SMALL_STATE(2213)] = 18828, + [SMALL_STATE(2214)] = 18846, + [SMALL_STATE(2215)] = 18868, + [SMALL_STATE(2216)] = 18886, + [SMALL_STATE(2217)] = 18904, + [SMALL_STATE(2218)] = 18922, + [SMALL_STATE(2219)] = 18940, + [SMALL_STATE(2220)] = 18958, + [SMALL_STATE(2221)] = 18976, + [SMALL_STATE(2222)] = 18994, + [SMALL_STATE(2223)] = 19012, + [SMALL_STATE(2224)] = 19030, + [SMALL_STATE(2225)] = 19048, + [SMALL_STATE(2226)] = 19066, + [SMALL_STATE(2227)] = 19084, + [SMALL_STATE(2228)] = 19102, + [SMALL_STATE(2229)] = 19120, + [SMALL_STATE(2230)] = 19142, + [SMALL_STATE(2231)] = 19160, + [SMALL_STATE(2232)] = 19178, + [SMALL_STATE(2233)] = 19196, + [SMALL_STATE(2234)] = 19214, + [SMALL_STATE(2235)] = 19232, + [SMALL_STATE(2236)] = 19250, + [SMALL_STATE(2237)] = 19268, + [SMALL_STATE(2238)] = 19286, + [SMALL_STATE(2239)] = 19304, + [SMALL_STATE(2240)] = 19322, + [SMALL_STATE(2241)] = 19340, + [SMALL_STATE(2242)] = 19358, + [SMALL_STATE(2243)] = 19376, + [SMALL_STATE(2244)] = 19394, + [SMALL_STATE(2245)] = 19412, + [SMALL_STATE(2246)] = 19430, + [SMALL_STATE(2247)] = 19448, + [SMALL_STATE(2248)] = 19466, + [SMALL_STATE(2249)] = 19478, + [SMALL_STATE(2250)] = 19496, + [SMALL_STATE(2251)] = 19514, + [SMALL_STATE(2252)] = 19532, + [SMALL_STATE(2253)] = 19550, + [SMALL_STATE(2254)] = 19568, + [SMALL_STATE(2255)] = 19586, + [SMALL_STATE(2256)] = 19608, + [SMALL_STATE(2257)] = 19626, + [SMALL_STATE(2258)] = 19648, + [SMALL_STATE(2259)] = 19666, + [SMALL_STATE(2260)] = 19684, + [SMALL_STATE(2261)] = 19702, + [SMALL_STATE(2262)] = 19720, + [SMALL_STATE(2263)] = 19738, + [SMALL_STATE(2264)] = 19756, + [SMALL_STATE(2265)] = 19778, + [SMALL_STATE(2266)] = 19800, + [SMALL_STATE(2267)] = 19818, + [SMALL_STATE(2268)] = 19836, + [SMALL_STATE(2269)] = 19854, + [SMALL_STATE(2270)] = 19872, + [SMALL_STATE(2271)] = 19890, + [SMALL_STATE(2272)] = 19912, + [SMALL_STATE(2273)] = 19934, + [SMALL_STATE(2274)] = 19952, + [SMALL_STATE(2275)] = 19970, + [SMALL_STATE(2276)] = 19988, + [SMALL_STATE(2277)] = 20006, + [SMALL_STATE(2278)] = 20024, + [SMALL_STATE(2279)] = 20042, + [SMALL_STATE(2280)] = 20060, + [SMALL_STATE(2281)] = 20078, + [SMALL_STATE(2282)] = 20096, + [SMALL_STATE(2283)] = 20114, + [SMALL_STATE(2284)] = 20132, + [SMALL_STATE(2285)] = 20150, + [SMALL_STATE(2286)] = 20168, + [SMALL_STATE(2287)] = 20186, + [SMALL_STATE(2288)] = 20208, + [SMALL_STATE(2289)] = 20226, + [SMALL_STATE(2290)] = 20244, + [SMALL_STATE(2291)] = 20262, + [SMALL_STATE(2292)] = 20280, + [SMALL_STATE(2293)] = 20298, + [SMALL_STATE(2294)] = 20316, + [SMALL_STATE(2295)] = 20334, + [SMALL_STATE(2296)] = 20352, + [SMALL_STATE(2297)] = 20374, + [SMALL_STATE(2298)] = 20396, + [SMALL_STATE(2299)] = 20414, [SMALL_STATE(2300)] = 20426, [SMALL_STATE(2301)] = 20444, [SMALL_STATE(2302)] = 20462, @@ -183055,144 +181341,144 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2304)] = 20498, [SMALL_STATE(2305)] = 20516, [SMALL_STATE(2306)] = 20534, - [SMALL_STATE(2307)] = 20556, - [SMALL_STATE(2308)] = 20574, - [SMALL_STATE(2309)] = 20592, - [SMALL_STATE(2310)] = 20610, + [SMALL_STATE(2307)] = 20552, + [SMALL_STATE(2308)] = 20570, + [SMALL_STATE(2309)] = 20588, + [SMALL_STATE(2310)] = 20606, [SMALL_STATE(2311)] = 20628, - [SMALL_STATE(2312)] = 20646, - [SMALL_STATE(2313)] = 20664, - [SMALL_STATE(2314)] = 20682, - [SMALL_STATE(2315)] = 20700, - [SMALL_STATE(2316)] = 20718, + [SMALL_STATE(2312)] = 20650, + [SMALL_STATE(2313)] = 20668, + [SMALL_STATE(2314)] = 20686, + [SMALL_STATE(2315)] = 20704, + [SMALL_STATE(2316)] = 20722, [SMALL_STATE(2317)] = 20740, [SMALL_STATE(2318)] = 20758, - [SMALL_STATE(2319)] = 20776, - [SMALL_STATE(2320)] = 20794, - [SMALL_STATE(2321)] = 20812, - [SMALL_STATE(2322)] = 20830, - [SMALL_STATE(2323)] = 20848, - [SMALL_STATE(2324)] = 20866, - [SMALL_STATE(2325)] = 20884, - [SMALL_STATE(2326)] = 20902, - [SMALL_STATE(2327)] = 20920, - [SMALL_STATE(2328)] = 20938, - [SMALL_STATE(2329)] = 20956, - [SMALL_STATE(2330)] = 20974, - [SMALL_STATE(2331)] = 20992, - [SMALL_STATE(2332)] = 21010, + [SMALL_STATE(2319)] = 20780, + [SMALL_STATE(2320)] = 20798, + [SMALL_STATE(2321)] = 20816, + [SMALL_STATE(2322)] = 20834, + [SMALL_STATE(2323)] = 20852, + [SMALL_STATE(2324)] = 20870, + [SMALL_STATE(2325)] = 20888, + [SMALL_STATE(2326)] = 20906, + [SMALL_STATE(2327)] = 20924, + [SMALL_STATE(2328)] = 20942, + [SMALL_STATE(2329)] = 20960, + [SMALL_STATE(2330)] = 20978, + [SMALL_STATE(2331)] = 20996, + [SMALL_STATE(2332)] = 21014, [SMALL_STATE(2333)] = 21032, [SMALL_STATE(2334)] = 21045, [SMALL_STATE(2335)] = 21060, - [SMALL_STATE(2336)] = 21074, - [SMALL_STATE(2337)] = 21090, - [SMALL_STATE(2338)] = 21106, - [SMALL_STATE(2339)] = 21122, - [SMALL_STATE(2340)] = 21138, - [SMALL_STATE(2341)] = 21154, - [SMALL_STATE(2342)] = 21170, + [SMALL_STATE(2336)] = 21076, + [SMALL_STATE(2337)] = 21092, + [SMALL_STATE(2338)] = 21108, + [SMALL_STATE(2339)] = 21118, + [SMALL_STATE(2340)] = 21134, + [SMALL_STATE(2341)] = 21150, + [SMALL_STATE(2342)] = 21166, [SMALL_STATE(2343)] = 21182, [SMALL_STATE(2344)] = 21198, [SMALL_STATE(2345)] = 21214, [SMALL_STATE(2346)] = 21230, - [SMALL_STATE(2347)] = 21246, - [SMALL_STATE(2348)] = 21262, - [SMALL_STATE(2349)] = 21278, - [SMALL_STATE(2350)] = 21294, - [SMALL_STATE(2351)] = 21310, - [SMALL_STATE(2352)] = 21326, - [SMALL_STATE(2353)] = 21342, - [SMALL_STATE(2354)] = 21358, - [SMALL_STATE(2355)] = 21374, - [SMALL_STATE(2356)] = 21390, - [SMALL_STATE(2357)] = 21400, - [SMALL_STATE(2358)] = 21416, - [SMALL_STATE(2359)] = 21432, + [SMALL_STATE(2347)] = 21244, + [SMALL_STATE(2348)] = 21260, + [SMALL_STATE(2349)] = 21276, + [SMALL_STATE(2350)] = 21290, + [SMALL_STATE(2351)] = 21306, + [SMALL_STATE(2352)] = 21322, + [SMALL_STATE(2353)] = 21338, + [SMALL_STATE(2354)] = 21354, + [SMALL_STATE(2355)] = 21370, + [SMALL_STATE(2356)] = 21386, + [SMALL_STATE(2357)] = 21402, + [SMALL_STATE(2358)] = 21418, + [SMALL_STATE(2359)] = 21434, [SMALL_STATE(2360)] = 21448, [SMALL_STATE(2361)] = 21464, [SMALL_STATE(2362)] = 21480, [SMALL_STATE(2363)] = 21496, [SMALL_STATE(2364)] = 21512, [SMALL_STATE(2365)] = 21528, - [SMALL_STATE(2366)] = 21544, - [SMALL_STATE(2367)] = 21560, - [SMALL_STATE(2368)] = 21576, - [SMALL_STATE(2369)] = 21592, - [SMALL_STATE(2370)] = 21608, - [SMALL_STATE(2371)] = 21624, - [SMALL_STATE(2372)] = 21640, - [SMALL_STATE(2373)] = 21656, - [SMALL_STATE(2374)] = 21672, - [SMALL_STATE(2375)] = 21688, - [SMALL_STATE(2376)] = 21704, - [SMALL_STATE(2377)] = 21720, - [SMALL_STATE(2378)] = 21736, - [SMALL_STATE(2379)] = 21752, - [SMALL_STATE(2380)] = 21768, - [SMALL_STATE(2381)] = 21784, - [SMALL_STATE(2382)] = 21800, - [SMALL_STATE(2383)] = 21816, - [SMALL_STATE(2384)] = 21832, - [SMALL_STATE(2385)] = 21848, - [SMALL_STATE(2386)] = 21864, - [SMALL_STATE(2387)] = 21878, - [SMALL_STATE(2388)] = 21894, - [SMALL_STATE(2389)] = 21910, - [SMALL_STATE(2390)] = 21926, - [SMALL_STATE(2391)] = 21942, - [SMALL_STATE(2392)] = 21956, - [SMALL_STATE(2393)] = 21972, - [SMALL_STATE(2394)] = 21988, - [SMALL_STATE(2395)] = 22004, - [SMALL_STATE(2396)] = 22020, - [SMALL_STATE(2397)] = 22036, - [SMALL_STATE(2398)] = 22050, - [SMALL_STATE(2399)] = 22066, - [SMALL_STATE(2400)] = 22082, - [SMALL_STATE(2401)] = 22098, - [SMALL_STATE(2402)] = 22114, - [SMALL_STATE(2403)] = 22128, - [SMALL_STATE(2404)] = 22144, - [SMALL_STATE(2405)] = 22160, - [SMALL_STATE(2406)] = 22176, - [SMALL_STATE(2407)] = 22192, - [SMALL_STATE(2408)] = 22206, - [SMALL_STATE(2409)] = 22222, - [SMALL_STATE(2410)] = 22238, - [SMALL_STATE(2411)] = 22254, - [SMALL_STATE(2412)] = 22270, - [SMALL_STATE(2413)] = 22286, - [SMALL_STATE(2414)] = 22300, - [SMALL_STATE(2415)] = 22316, - [SMALL_STATE(2416)] = 22332, - [SMALL_STATE(2417)] = 22348, - [SMALL_STATE(2418)] = 22364, - [SMALL_STATE(2419)] = 22380, - [SMALL_STATE(2420)] = 22394, + [SMALL_STATE(2366)] = 21542, + [SMALL_STATE(2367)] = 21558, + [SMALL_STATE(2368)] = 21574, + [SMALL_STATE(2369)] = 21590, + [SMALL_STATE(2370)] = 21606, + [SMALL_STATE(2371)] = 21622, + [SMALL_STATE(2372)] = 21638, + [SMALL_STATE(2373)] = 21654, + [SMALL_STATE(2374)] = 21666, + [SMALL_STATE(2375)] = 21680, + [SMALL_STATE(2376)] = 21696, + [SMALL_STATE(2377)] = 21712, + [SMALL_STATE(2378)] = 21728, + [SMALL_STATE(2379)] = 21744, + [SMALL_STATE(2380)] = 21760, + [SMALL_STATE(2381)] = 21776, + [SMALL_STATE(2382)] = 21792, + [SMALL_STATE(2383)] = 21808, + [SMALL_STATE(2384)] = 21824, + [SMALL_STATE(2385)] = 21838, + [SMALL_STATE(2386)] = 21854, + [SMALL_STATE(2387)] = 21870, + [SMALL_STATE(2388)] = 21886, + [SMALL_STATE(2389)] = 21902, + [SMALL_STATE(2390)] = 21918, + [SMALL_STATE(2391)] = 21934, + [SMALL_STATE(2392)] = 21950, + [SMALL_STATE(2393)] = 21966, + [SMALL_STATE(2394)] = 21982, + [SMALL_STATE(2395)] = 21996, + [SMALL_STATE(2396)] = 22012, + [SMALL_STATE(2397)] = 22028, + [SMALL_STATE(2398)] = 22044, + [SMALL_STATE(2399)] = 22060, + [SMALL_STATE(2400)] = 22076, + [SMALL_STATE(2401)] = 22092, + [SMALL_STATE(2402)] = 22108, + [SMALL_STATE(2403)] = 22124, + [SMALL_STATE(2404)] = 22140, + [SMALL_STATE(2405)] = 22154, + [SMALL_STATE(2406)] = 22170, + [SMALL_STATE(2407)] = 22186, + [SMALL_STATE(2408)] = 22202, + [SMALL_STATE(2409)] = 22218, + [SMALL_STATE(2410)] = 22234, + [SMALL_STATE(2411)] = 22250, + [SMALL_STATE(2412)] = 22266, + [SMALL_STATE(2413)] = 22282, + [SMALL_STATE(2414)] = 22298, + [SMALL_STATE(2415)] = 22312, + [SMALL_STATE(2416)] = 22328, + [SMALL_STATE(2417)] = 22344, + [SMALL_STATE(2418)] = 22360, + [SMALL_STATE(2419)] = 22376, + [SMALL_STATE(2420)] = 22392, [SMALL_STATE(2421)] = 22408, [SMALL_STATE(2422)] = 22424, [SMALL_STATE(2423)] = 22440, - [SMALL_STATE(2424)] = 22456, - [SMALL_STATE(2425)] = 22472, + [SMALL_STATE(2424)] = 22454, + [SMALL_STATE(2425)] = 22470, [SMALL_STATE(2426)] = 22486, [SMALL_STATE(2427)] = 22502, [SMALL_STATE(2428)] = 22518, [SMALL_STATE(2429)] = 22534, [SMALL_STATE(2430)] = 22550, - [SMALL_STATE(2431)] = 22564, - [SMALL_STATE(2432)] = 22580, + [SMALL_STATE(2431)] = 22566, + [SMALL_STATE(2432)] = 22582, [SMALL_STATE(2433)] = 22596, [SMALL_STATE(2434)] = 22612, [SMALL_STATE(2435)] = 22628, [SMALL_STATE(2436)] = 22644, [SMALL_STATE(2437)] = 22660, - [SMALL_STATE(2438)] = 22674, - [SMALL_STATE(2439)] = 22690, - [SMALL_STATE(2440)] = 22706, + [SMALL_STATE(2438)] = 22676, + [SMALL_STATE(2439)] = 22692, + [SMALL_STATE(2440)] = 22708, [SMALL_STATE(2441)] = 22722, [SMALL_STATE(2442)] = 22738, - [SMALL_STATE(2443)] = 22754, - [SMALL_STATE(2444)] = 22770, + [SMALL_STATE(2443)] = 22752, + [SMALL_STATE(2444)] = 22768, [SMALL_STATE(2445)] = 22784, [SMALL_STATE(2446)] = 22800, [SMALL_STATE(2447)] = 22816, @@ -183200,62 +181486,62 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2449)] = 22848, [SMALL_STATE(2450)] = 22864, [SMALL_STATE(2451)] = 22880, - [SMALL_STATE(2452)] = 22891, - [SMALL_STATE(2453)] = 22904, - [SMALL_STATE(2454)] = 22913, - [SMALL_STATE(2455)] = 22926, - [SMALL_STATE(2456)] = 22935, - [SMALL_STATE(2457)] = 22948, - [SMALL_STATE(2458)] = 22961, - [SMALL_STATE(2459)] = 22970, - [SMALL_STATE(2460)] = 22979, - [SMALL_STATE(2461)] = 22988, - [SMALL_STATE(2462)] = 23001, - [SMALL_STATE(2463)] = 23014, - [SMALL_STATE(2464)] = 23027, - [SMALL_STATE(2465)] = 23040, - [SMALL_STATE(2466)] = 23053, - [SMALL_STATE(2467)] = 23062, - [SMALL_STATE(2468)] = 23075, - [SMALL_STATE(2469)] = 23088, - [SMALL_STATE(2470)] = 23101, - [SMALL_STATE(2471)] = 23114, - [SMALL_STATE(2472)] = 23127, - [SMALL_STATE(2473)] = 23140, - [SMALL_STATE(2474)] = 23149, - [SMALL_STATE(2475)] = 23162, - [SMALL_STATE(2476)] = 23175, - [SMALL_STATE(2477)] = 23188, - [SMALL_STATE(2478)] = 23201, - [SMALL_STATE(2479)] = 23214, - [SMALL_STATE(2480)] = 23227, - [SMALL_STATE(2481)] = 23240, - [SMALL_STATE(2482)] = 23253, - [SMALL_STATE(2483)] = 23266, - [SMALL_STATE(2484)] = 23279, - [SMALL_STATE(2485)] = 23292, - [SMALL_STATE(2486)] = 23301, - [SMALL_STATE(2487)] = 23314, - [SMALL_STATE(2488)] = 23327, - [SMALL_STATE(2489)] = 23340, - [SMALL_STATE(2490)] = 23353, - [SMALL_STATE(2491)] = 23362, - [SMALL_STATE(2492)] = 23375, - [SMALL_STATE(2493)] = 23388, - [SMALL_STATE(2494)] = 23401, - [SMALL_STATE(2495)] = 23414, - [SMALL_STATE(2496)] = 23427, + [SMALL_STATE(2452)] = 22893, + [SMALL_STATE(2453)] = 22902, + [SMALL_STATE(2454)] = 22911, + [SMALL_STATE(2455)] = 22920, + [SMALL_STATE(2456)] = 22933, + [SMALL_STATE(2457)] = 22946, + [SMALL_STATE(2458)] = 22955, + [SMALL_STATE(2459)] = 22968, + [SMALL_STATE(2460)] = 22977, + [SMALL_STATE(2461)] = 22990, + [SMALL_STATE(2462)] = 23003, + [SMALL_STATE(2463)] = 23016, + [SMALL_STATE(2464)] = 23029, + [SMALL_STATE(2465)] = 23038, + [SMALL_STATE(2466)] = 23051, + [SMALL_STATE(2467)] = 23064, + [SMALL_STATE(2468)] = 23077, + [SMALL_STATE(2469)] = 23090, + [SMALL_STATE(2470)] = 23103, + [SMALL_STATE(2471)] = 23116, + [SMALL_STATE(2472)] = 23129, + [SMALL_STATE(2473)] = 23142, + [SMALL_STATE(2474)] = 23155, + [SMALL_STATE(2475)] = 23168, + [SMALL_STATE(2476)] = 23181, + [SMALL_STATE(2477)] = 23190, + [SMALL_STATE(2478)] = 23203, + [SMALL_STATE(2479)] = 23216, + [SMALL_STATE(2480)] = 23229, + [SMALL_STATE(2481)] = 23242, + [SMALL_STATE(2482)] = 23255, + [SMALL_STATE(2483)] = 23264, + [SMALL_STATE(2484)] = 23277, + [SMALL_STATE(2485)] = 23290, + [SMALL_STATE(2486)] = 23303, + [SMALL_STATE(2487)] = 23316, + [SMALL_STATE(2488)] = 23329, + [SMALL_STATE(2489)] = 23342, + [SMALL_STATE(2490)] = 23355, + [SMALL_STATE(2491)] = 23368, + [SMALL_STATE(2492)] = 23377, + [SMALL_STATE(2493)] = 23390, + [SMALL_STATE(2494)] = 23403, + [SMALL_STATE(2495)] = 23416, + [SMALL_STATE(2496)] = 23429, [SMALL_STATE(2497)] = 23440, - [SMALL_STATE(2498)] = 23453, - [SMALL_STATE(2499)] = 23466, - [SMALL_STATE(2500)] = 23479, + [SMALL_STATE(2498)] = 23449, + [SMALL_STATE(2499)] = 23462, + [SMALL_STATE(2500)] = 23475, [SMALL_STATE(2501)] = 23488, [SMALL_STATE(2502)] = 23501, [SMALL_STATE(2503)] = 23514, [SMALL_STATE(2504)] = 23527, [SMALL_STATE(2505)] = 23540, - [SMALL_STATE(2506)] = 23549, - [SMALL_STATE(2507)] = 23562, + [SMALL_STATE(2506)] = 23553, + [SMALL_STATE(2507)] = 23566, [SMALL_STATE(2508)] = 23575, [SMALL_STATE(2509)] = 23588, [SMALL_STATE(2510)] = 23601, @@ -183268,7 +181554,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2517)] = 23692, [SMALL_STATE(2518)] = 23705, [SMALL_STATE(2519)] = 23718, - [SMALL_STATE(2520)] = 23728, + [SMALL_STATE(2520)] = 23726, [SMALL_STATE(2521)] = 23736, [SMALL_STATE(2522)] = 23746, [SMALL_STATE(2523)] = 23756, @@ -183295,46 +181581,46 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2544)] = 23966, [SMALL_STATE(2545)] = 23976, [SMALL_STATE(2546)] = 23986, - [SMALL_STATE(2547)] = 23994, - [SMALL_STATE(2548)] = 24004, - [SMALL_STATE(2549)] = 24014, - [SMALL_STATE(2550)] = 24024, - [SMALL_STATE(2551)] = 24034, - [SMALL_STATE(2552)] = 24044, + [SMALL_STATE(2547)] = 23996, + [SMALL_STATE(2548)] = 24006, + [SMALL_STATE(2549)] = 24016, + [SMALL_STATE(2550)] = 24026, + [SMALL_STATE(2551)] = 24036, + [SMALL_STATE(2552)] = 24046, [SMALL_STATE(2553)] = 24054, [SMALL_STATE(2554)] = 24064, [SMALL_STATE(2555)] = 24074, [SMALL_STATE(2556)] = 24084, [SMALL_STATE(2557)] = 24094, - [SMALL_STATE(2558)] = 24104, - [SMALL_STATE(2559)] = 24114, - [SMALL_STATE(2560)] = 24124, - [SMALL_STATE(2561)] = 24134, - [SMALL_STATE(2562)] = 24144, - [SMALL_STATE(2563)] = 24154, - [SMALL_STATE(2564)] = 24164, - [SMALL_STATE(2565)] = 24174, - [SMALL_STATE(2566)] = 24184, - [SMALL_STATE(2567)] = 24194, - [SMALL_STATE(2568)] = 24204, - [SMALL_STATE(2569)] = 24214, - [SMALL_STATE(2570)] = 24224, - [SMALL_STATE(2571)] = 24234, - [SMALL_STATE(2572)] = 24244, - [SMALL_STATE(2573)] = 24254, - [SMALL_STATE(2574)] = 24264, - [SMALL_STATE(2575)] = 24274, - [SMALL_STATE(2576)] = 24284, - [SMALL_STATE(2577)] = 24294, - [SMALL_STATE(2578)] = 24302, - [SMALL_STATE(2579)] = 24312, - [SMALL_STATE(2580)] = 24322, - [SMALL_STATE(2581)] = 24332, - [SMALL_STATE(2582)] = 24342, - [SMALL_STATE(2583)] = 24352, - [SMALL_STATE(2584)] = 24362, - [SMALL_STATE(2585)] = 24372, - [SMALL_STATE(2586)] = 24382, + [SMALL_STATE(2558)] = 24102, + [SMALL_STATE(2559)] = 24112, + [SMALL_STATE(2560)] = 24122, + [SMALL_STATE(2561)] = 24130, + [SMALL_STATE(2562)] = 24140, + [SMALL_STATE(2563)] = 24150, + [SMALL_STATE(2564)] = 24160, + [SMALL_STATE(2565)] = 24170, + [SMALL_STATE(2566)] = 24180, + [SMALL_STATE(2567)] = 24190, + [SMALL_STATE(2568)] = 24200, + [SMALL_STATE(2569)] = 24210, + [SMALL_STATE(2570)] = 24220, + [SMALL_STATE(2571)] = 24230, + [SMALL_STATE(2572)] = 24240, + [SMALL_STATE(2573)] = 24250, + [SMALL_STATE(2574)] = 24260, + [SMALL_STATE(2575)] = 24270, + [SMALL_STATE(2576)] = 24280, + [SMALL_STATE(2577)] = 24290, + [SMALL_STATE(2578)] = 24300, + [SMALL_STATE(2579)] = 24310, + [SMALL_STATE(2580)] = 24320, + [SMALL_STATE(2581)] = 24330, + [SMALL_STATE(2582)] = 24340, + [SMALL_STATE(2583)] = 24350, + [SMALL_STATE(2584)] = 24360, + [SMALL_STATE(2585)] = 24370, + [SMALL_STATE(2586)] = 24380, [SMALL_STATE(2587)] = 24390, [SMALL_STATE(2588)] = 24400, [SMALL_STATE(2589)] = 24410, @@ -183363,25 +181649,25 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2612)] = 24634, [SMALL_STATE(2613)] = 24641, [SMALL_STATE(2614)] = 24648, - [SMALL_STATE(2615)] = 24655, - [SMALL_STATE(2616)] = 24662, - [SMALL_STATE(2617)] = 24669, - [SMALL_STATE(2618)] = 24676, - [SMALL_STATE(2619)] = 24683, - [SMALL_STATE(2620)] = 24690, - [SMALL_STATE(2621)] = 24697, - [SMALL_STATE(2622)] = 24704, - [SMALL_STATE(2623)] = 24711, - [SMALL_STATE(2624)] = 24718, - [SMALL_STATE(2625)] = 24725, - [SMALL_STATE(2626)] = 24732, - [SMALL_STATE(2627)] = 24739, - [SMALL_STATE(2628)] = 24746, - [SMALL_STATE(2629)] = 24753, - [SMALL_STATE(2630)] = 24760, - [SMALL_STATE(2631)] = 24767, - [SMALL_STATE(2632)] = 24774, - [SMALL_STATE(2633)] = 24781, + [SMALL_STATE(2615)] = 24653, + [SMALL_STATE(2616)] = 24660, + [SMALL_STATE(2617)] = 24667, + [SMALL_STATE(2618)] = 24674, + [SMALL_STATE(2619)] = 24681, + [SMALL_STATE(2620)] = 24688, + [SMALL_STATE(2621)] = 24695, + [SMALL_STATE(2622)] = 24702, + [SMALL_STATE(2623)] = 24709, + [SMALL_STATE(2624)] = 24716, + [SMALL_STATE(2625)] = 24723, + [SMALL_STATE(2626)] = 24730, + [SMALL_STATE(2627)] = 24737, + [SMALL_STATE(2628)] = 24744, + [SMALL_STATE(2629)] = 24751, + [SMALL_STATE(2630)] = 24758, + [SMALL_STATE(2631)] = 24765, + [SMALL_STATE(2632)] = 24772, + [SMALL_STATE(2633)] = 24779, [SMALL_STATE(2634)] = 24786, [SMALL_STATE(2635)] = 24793, [SMALL_STATE(2636)] = 24800, @@ -183393,9 +181679,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2642)] = 24842, [SMALL_STATE(2643)] = 24849, [SMALL_STATE(2644)] = 24856, - [SMALL_STATE(2645)] = 24863, - [SMALL_STATE(2646)] = 24870, - [SMALL_STATE(2647)] = 24877, + [SMALL_STATE(2645)] = 24861, + [SMALL_STATE(2646)] = 24868, + [SMALL_STATE(2647)] = 24875, [SMALL_STATE(2648)] = 24882, [SMALL_STATE(2649)] = 24889, [SMALL_STATE(2650)] = 24893, @@ -183556,3060 +181842,2911 @@ static const uint32_t ts_small_parse_table_map[] = { 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(1288), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [77] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1186), - [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(474), - [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(774), - [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(774), - [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(775), - [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(81), - [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(701), - [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1979), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(745), - [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(82), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(83), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(84), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(85), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(22), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2386), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(702), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(722), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1198), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1198), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1778), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(231), - [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(4), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(76), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2000), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(77), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(78), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(79), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(80), - [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2692), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2694), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2722), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2723), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2587), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2588), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(408), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(409), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1433), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(454), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(734), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(734), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(771), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(110), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(703), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1976), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(795), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(111), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(112), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(113), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(402), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(24), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2391), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(686), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(763), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1438), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1438), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1771), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(5), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(380), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(105), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(1968), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(106), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(107), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(108), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(109), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2714), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2715), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2783), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2784), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2589), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(2590), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(412), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(413), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1433), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(454), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(734), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(734), - [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(771), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(110), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(703), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1976), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(795), - [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(111), - [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(112), - [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(113), - [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(402), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(24), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2391), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(686), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(763), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1438), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1438), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1771), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(5), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(380), - [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(105), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(1968), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(106), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(107), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(108), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(109), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2714), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2715), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2783), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2784), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2589), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(2590), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(412), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, 0, 0), SHIFT(413), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1186), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(474), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(774), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(774), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(775), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(81), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(701), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1979), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(745), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(82), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(83), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(84), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(85), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(22), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2386), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(702), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(722), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1198), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1198), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(1778), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(231), - [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(4), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(76), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2000), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(77), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(78), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(79), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(80), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2692), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2694), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2722), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2723), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2587), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(2588), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(408), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, 0, 0), SHIFT(409), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(702), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1, 0, 0), SHIFT(686), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 2, 0, 0), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), - [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1288), - [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(458), - [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(752), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(752), - [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(727), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(67), - [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(687), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1975), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(799), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(69), - [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(71), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(72), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(74), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(23), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2335), - [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(688), - [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(710), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(800), - [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(800), - [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1763), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(16), - [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(3), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(86), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1965), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(261), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(350), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(60), - [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(61), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2724), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2786), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2659), - [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2707), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2563), - [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2574), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(427), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(404), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1186), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(474), - [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(774), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(774), - [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(775), - [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(81), - [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(701), - [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1979), - [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(745), - [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(82), - [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(83), - [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(84), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(85), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(22), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2386), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(702), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(722), - [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1198), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1198), - [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1778), - [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(231), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(4), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), - [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(76), - [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2000), - [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(77), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(78), - [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(79), - [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(80), - [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2692), - [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2694), - [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2722), - [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2723), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2587), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2588), - [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(408), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(409), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1433), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(454), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(734), - [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(734), - [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(771), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(110), - [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(703), - [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1976), - [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(795), - [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(111), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(112), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(113), - [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(402), - [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(24), - [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2391), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(686), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(763), - [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1438), - [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1438), - [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1771), - [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(5), - [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(380), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(105), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1968), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(106), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(107), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(108), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(109), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2714), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2715), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2783), - [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2784), - [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2589), - [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2590), - [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(412), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(413), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(735), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(735), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(742), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(140), - [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2397), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(794), - [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), - [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), - [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(6), - [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), - [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), - [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2591), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1292), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(471), - [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(714), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(714), - [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(715), - [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(345), - [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(690), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1982), - [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(765), - [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(346), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(347), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(348), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(349), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(32), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2437), - [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(691), - [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(766), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1201), - [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1201), - [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1781), - [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(18), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(19), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(340), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1981), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(341), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(342), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(343), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(344), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2720), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2721), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2662), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2668), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2604), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2605), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(444), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(445), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1112), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(467), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(759), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(759), - [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(760), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(286), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(697), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2002), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(717), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(287), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(288), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(289), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(290), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(30), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2425), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(698), - [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(719), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1034), - [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1034), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1779), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(400), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(8), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(281), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1998), - [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(282), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(283), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(284), - [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(285), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2688), - [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2689), - [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2655), - [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2667), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2601), - [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2519), - [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(436), - [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(437), - [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1197), - [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(469), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(761), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(761), - [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(707), - [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(315), - [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(683), - [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1970), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(746), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(316), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(317), - [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(318), - [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(319), - [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(31), - [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2430), - [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(684), - [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(748), - [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1115), - [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1115), - [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1780), - [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(9), - [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(401), - [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(310), - [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1969), - [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(311), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(312), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(313), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(314), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2704), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2705), - [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2696), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2699), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2602), - [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2603), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(440), - [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(441), - [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(696), - [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(772), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(169), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2402), - [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(718), - [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1611), - [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1611), - [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1770), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2754), - [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), - [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2691), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2670), - [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), - [2310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2594), - [2313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(421), - [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(747), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(681), - [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1966), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2407), - [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(682), - [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), - [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), - [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), - [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(13), - [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2793), - [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), - [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), - [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2747), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), - [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2596), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(424), - [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(425), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(955), - [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2413), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(14), - [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(15), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2009), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2656), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), - [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2795), - [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2796), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(428), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(429), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), - [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(256), - [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), - [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(257), - [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(258), - [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(259), - [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2420), - [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(692), - [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1786), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(253), - [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2672), - [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2654), - [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2600), - [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(432), - [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), - [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(744), - [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(375), - [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1993), - [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(767), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2444), - [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(694), - [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(768), - [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1297), - [2705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1297), - [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), - [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(20), - [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(370), - [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1992), - [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(371), - [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(373), - [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(374), - [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2736), - [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2737), - [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2676), - [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2679), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), - [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(449), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(714), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(714), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(690), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(765), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(347), - [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2437), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1201), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1201), - [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(18), - [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(19), - [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), - [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(341), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(343), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2720), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2721), - [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2668), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2604), - [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1, 0, 0), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), - [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(452), - [3483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(744), - [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), - [3494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1993), - [3500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(767), - [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2444), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(694), - [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(768), - [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1297), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1297), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(370), - [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1992), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(371), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(373), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(374), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2736), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2737), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2676), - [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2679), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), - [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), - [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1288), - [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(727), - [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(687), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2335), - [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(688), - [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(710), - [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [3625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1763), - [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1965), - [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [3640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [3646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2724), - [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2786), - [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2659), - [3658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2707), - [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), - [3664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2574), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_base, 1, 0, 0), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_base, 1, 0, 0), - [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1433), - [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [3679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(734), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(734), - [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1976), - [3694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), - [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(686), - [3718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(763), - [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), - [3724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), - [3727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(105), - [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), - [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(106), - [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [3742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2714), - [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2715), - [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), - [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), - [3763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2590), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(735), - [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(735), - [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(742), - [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(140), - [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2397), - [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(794), - [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), - [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), - [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), - [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), - [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), - [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), - [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), - [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), - [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2591), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(696), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(772), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(169), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2402), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(718), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1611), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1611), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1770), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2754), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), - [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2691), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2670), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2594), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(747), - [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(681), - [3978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1966), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2407), - [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(682), - [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), - [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), - [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2793), - [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), - [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), - [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2747), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), - [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2596), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(955), - [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [4061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [4064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [4067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [4070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [4073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [4076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [4079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [4082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [4085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [4091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [4094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2413), - [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [4100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), - [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2009), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [4130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2656), - [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), - [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2795), - [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2796), - [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), - [4145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), - [4153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [4156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [4159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [4162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [4165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(689), - [4168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), - [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [4174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(257), - [4177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(258), - [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(259), - [4183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [4186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2420), - [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(692), - [4195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [4198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [4201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1786), - [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(253), - [4219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2672), - [4228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), - [4231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), - [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2654), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2600), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [4251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), - [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(717), - [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [4272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [4281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2425), - [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(698), - [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(719), - [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1034), - [4296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1034), - [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), - [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1998), - [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(283), - [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2655), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), - [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2519), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), - [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [4346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(761), - [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(761), - [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [4355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), - [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(316), - [4367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(317), - [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(318), - [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [4376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [4379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2430), - [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [4385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(748), - [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), - [4391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), - [4394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1780), - [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [4400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [4409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [4412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [4415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2704), - [4418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2705), - [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2696), - [4424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2699), - [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), - [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), - [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(714), - [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(714), - [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [4450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(690), - [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), - [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(765), - [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(347), - [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [4471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [4474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2437), - [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [4480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [4483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1201), - [4486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1201), - [4489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), - [4492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), - [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(341), - [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [4504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(343), - [4507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2720), - [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2721), - [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), - [4519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2668), - [4522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2604), - [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1186), - [4535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [4538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(774), - [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(774), - [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [4547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1979), - [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(745), - [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [4559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [4562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2386), - [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), - [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), - [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2000), - [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(77), - [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [4604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(80), - [4607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), - [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), - [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2722), - [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2723), - [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2587), - [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2588), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, 30, 0), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, 30, 0), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, 10, 0), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, 10, 0), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, 30, 0), - [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, 30, 0), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, 0, 7), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, 0, 7), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, 10, 0), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, 10, 0), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, 30, 0), - [4655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, 30, 0), - [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, 30, 0), - [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, 30, 0), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, 10, 0), - [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, 10, 0), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, 10, 0), - [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, 10, 0), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, 30, 0), - [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, 30, 0), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, 10, 0), - [4675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, 10, 0), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, 30, 0), - [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, 30, 0), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, 10, 0), - [4683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, 10, 0), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 1, 10, 0), - [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 1, 10, 0), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 1, 10, 0), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 1, 10, 0), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 2, 0, 0), - [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 2, 0, 0), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, 10, 0), - [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 2, 10, 0), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), - [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 1, 0, 0), - [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 1, 0, 0), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 16), - [4799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 16), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 17), - [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 17), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 21), - [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 21), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 2, 0, 6), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 2, 0, 6), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backslash_escape, 1, 0, 0), - [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backslash_escape, 1, 0, 0), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1, 0, 0), - [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1, 0, 0), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1, 0, 1), - [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1, 0, 1), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strikeout, 2, 0, 0), - [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strikeout, 2, 0, 0), - [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_span, 2, 0, 0), - [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_span, 2, 0, 0), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_span, 2, 0, 0), - [4961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_span, 2, 0, 0), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 2, 0, 0), - [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 2, 0, 0), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 2, 0, 0), - [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 2, 0, 0), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 0), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 0), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 2), - [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 2), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 2, 0, 0), - [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 2, 0, 0), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, 0, 0), - [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, 0, 0), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 2, 0, 0), - [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 2, 0, 0), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 2, 0, 3), - [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 2, 0, 3), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 2, 0, 4), - [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 2, 0, 4), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 2, 0, 5), - [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 2, 0, 5), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2, 0, 0), - [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2, 0, 0), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2, 10, 0), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2, 10, 0), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, 0, 0), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, 1, 8), - [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, 1, 8), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, 1, 8), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, 1, 8), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strikeout, 3, 0, 0), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strikeout, 3, 0, 0), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_span, 3, 0, 9), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_span, 3, 0, 9), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_span, 3, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_span, 3, 0, 0), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, 0, 0), - [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, 0, 0), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, 0, 0), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, 0, 0), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 10), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 10), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 11), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 11), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, 2, 0), - [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, 2, 0), - [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, 2, 0), - [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, 2, 0), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 3, 10, 0), - [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 3, 10, 0), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, 0, 12), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, 0, 12), - [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), - [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), - [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 0), - [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 0), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 13), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 13), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 14), - [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 14), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 15), - [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 15), - [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_reference, 3, 0, 18), - [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_reference, 3, 0, 18), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 4, 0, 7), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 4, 0, 7), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 4, 1, 8), - [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 4, 1, 8), - [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 4, 1, 8), - [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 4, 1, 8), - [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), - [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 20), - [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 20), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 22), - [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 22), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), - [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 3, 0, 0), - [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 23), - [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language_attribute, 3, 1, 23), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), - [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), - [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 5, 0, 0), - [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 5, 0, 0), - [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), - [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), - [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 5, 0, 24), - [5141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 5, 0, 24), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), - [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 4, 0, 0), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 6, 0, 0), - [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 6, 0, 0), - [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), - [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), - [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), - [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 5, 0, 0), - [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), - [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 7, 0, 0), - [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 7, 0, 0), - [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 9, 10, 0), - [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 9, 10, 0), - [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 9, 30, 0), - [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 9, 30, 0), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1, 0, 0), - [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1791), - [5228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1792), - [5231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1797), - [5234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1797), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1798), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [5364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1803), - [5367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1789), - [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1788), - [5373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1788), - [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1795), - [5379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1809), - [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), - [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1803), - [5395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1745), - [5398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1791), - [5401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1791), - [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), - [5406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1792), - [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1797), - [5412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1797), - [5415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1803), - [5418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), - [5421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), - [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), - [5426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), - [5429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), - [5432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1803), - [5443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1789), - [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1788), - [5449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1788), - [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1795), - [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1809), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), - [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), - [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, 10, 0), - [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1803), - [5477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1750), - [5480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1788), - [5483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1788), - [5486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1795), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), - [5491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), - [5493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1803), - [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1751), - [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1824), - [5502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1824), - [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), - [5507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1792), - [5510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1797), - [5513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1797), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, 10, 0), - [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, 10, 0), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, 10, 0), - [5534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, 10, 0), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), - [5582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), - [5584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), - [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [5590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1803), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1774), - [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), - [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), - [5606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [5612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1829), - [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), - [5639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), - [5642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), - [5645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), - [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT_REPEAT(2612), - [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), - [5661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), - [5670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), - [5680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), - [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), - [5685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [5689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), - [5692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(sym_link_title, 2, 0, 0), - [5704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(sym_link_title, 2, 0, 0), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [5709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT_REPEAT(2612), - [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3, 0, 0), - [5714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3, 0, 0), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1838), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [5731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1838), - [5734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1836), - [5737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1802), - [5740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), - [5743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), - [5746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), - [5748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), SHIFT_REPEAT(2612), - [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), - [5753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), - [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3, 0, 0), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3, 0, 0), - [5773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), REDUCE(sym_link_title, 2, 0, 0), - [5776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), REDUCE(sym_link_title, 2, 0, 0), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3, 0, 0), - [5781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3, 0, 0), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [5785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), - [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [5790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), - [5793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), - [5796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1819), - [5799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), - [5802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), - [5805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), - [5808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), - [5811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1, 0, 0), - [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1, 0, 0), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3, 0, 0), - [5823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3, 0, 0), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_text_base, 1, 0, 0), - [5829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_text_base, 1, 0, 0), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_text_base, 2, 0, 0), - [5837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_text_base, 2, 0, 0), - [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 1, 0, 0), - [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 1, 0, 0), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 1, 0, 0), - [5845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 1, 0, 0), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 1, 0, 0), - [5855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 1, 0, 0), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2, 0, 0), - [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2, 0, 0), - [5863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [5865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), - [6288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [6343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), - [6346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2076), - [6349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2053), - [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 1, 0, 0), - [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 1, 0, 0), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [6516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(2333), - [6519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [6533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [6597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(2342), - [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [6616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(2632), - [6619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(2632), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [6636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [6638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), - [6641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), - [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), - [6646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), - [6654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), - [6664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), - [6666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(1977), - [6669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(1977), - [6672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), - [6674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), - [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), - [6678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2, 0, 0), - [6682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2, 0, 0), - [6684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), - [6686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), - [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3, 0, 0), - [6690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3, 0, 0), - [6692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 0), SHIFT(1977), - [6695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__shortcode_value, 1, 0, 0), SHIFT(1977), - [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_boolean, 1, 0, 0), - [6786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_boolean, 1, 0, 0), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_string, 1, 0, 0), - [6824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_string, 1, 0, 0), - [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), - [6828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), - [6836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 3, 0, 0), - [6844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 3, 0, 0), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 4, 0, 0), - [6852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 4, 0, 0), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 5, 0, 0), - [6872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 5, 0, 0), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), - [6908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, 30, 0), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, 0, 19), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [7176] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [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), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [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(1984), + [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(2736), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1, 0, 0), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 2, 0, 0), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [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(6), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [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(2679), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [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(11), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [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(2682), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [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(12), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [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(2700), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(911), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(469), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(760), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(760), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(722), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(241), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(697), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1972), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(774), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(300), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(330), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(360), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(15), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2440), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(702), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(735), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1262), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1262), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1784), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(147), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(16), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(44), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1963), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(64), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(94), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(124), + [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(153), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2787), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2754), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2730), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2650), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2578), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2553), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(405), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(406), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(891), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(464), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(721), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(721), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(704), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(59), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(689), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1999), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(767), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(60), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(61), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(62), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(63), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(4), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2349), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(695), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(768), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(917), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(917), + [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1785), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(380), + [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(381), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(54), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1995), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(55), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(56), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(57), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(58), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2795), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2652), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2685), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2686), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2588), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2589), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(410), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(411), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1348), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(470), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(765), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(765), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(766), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(89), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(684), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1990), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(778), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(90), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(91), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(92), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(93), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(5), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2359), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(685), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(779), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1355), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1355), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1773), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(382), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(383), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(84), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1982), + [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(85), + [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(86), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(87), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(88), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2735), + [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2748), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2654), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2662), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2590), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2591), + [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(414), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(415), + [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1446), + [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(777), + [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1989), + [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(787), + [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(122), + [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), + [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1763), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), + [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), + [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2679), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), + [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2746), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1229), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(458), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(741), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(741), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(742), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(325), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(703), + [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1973), + [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(761), + [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(326), + [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(327), + [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(328), + [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(329), + [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(13), + [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2432), + [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(680), + [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(762), + [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1133), + [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1133), + [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1759), + [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(398), + [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(399), + [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(320), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(1971), + [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(321), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(322), + [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(323), + [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(324), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2718), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2719), + [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2728), + [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2732), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2606), + [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(2607), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(446), + [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2, 0, 0), SHIFT_REPEAT(447), + [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1031), + [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(454), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(724), + [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(724), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(725), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(266), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(701), + [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1976), + [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(743), + [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(267), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(268), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(269), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(270), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(11), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2414), + [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(696), + [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(744), + [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(936), + [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(936), + [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1768), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(394), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(395), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(261), + [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(1970), + [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(262), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(263), + [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(264), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(265), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2682), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2683), + [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2711), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2716), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2602), + [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(2603), + [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(437), + [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2, 0, 0), SHIFT_REPEAT(438), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1126), + [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(456), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(733), + [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(733), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(734), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(295), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(698), + [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2011), + [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(754), + [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(296), + [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(297), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(298), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(299), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(12), + [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2423), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(700), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(755), + [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1035), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1035), + [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(1769), + [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(396), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(397), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(290), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2006), + [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(291), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(292), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(293), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(294), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2700), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2701), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2674), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2675), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2604), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(2605), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(441), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2, 0, 0), SHIFT_REPEAT(442), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(459), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(786), + [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), + [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(707), + [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2374), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1786), + [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(386), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(387), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2720), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2721), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), + [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2594), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(986), + [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(794), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2384), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(686), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(389), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2744), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2739), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2596), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), + [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(426), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(705), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(705), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(706), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1986), + [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(726), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2394), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1979), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2798), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2799), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(429), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(430), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(713), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(713), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), + [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2404), + [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(727), + [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2665), + [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2789), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2600), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(433), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1330), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(687), + [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2442), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(688), + [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), + [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), + [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), + [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(353), + [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2736), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2737), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), + [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2608), + [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2520), + [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(450), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(404), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(741), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(741), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(703), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1973), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(327), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(13), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2432), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(398), + [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(399), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(323), + [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2718), + [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2719), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2732), + [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), + [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), + [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(986), + [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(452), + [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(794), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), + [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2384), + [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(686), + [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), + [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), + [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), + [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), + [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2744), + [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2739), + [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2596), + [3127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_base, 1, 0, 0), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_base, 1, 0, 0), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1031), + [3141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(724), + [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(724), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [3153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(701), + [3156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1976), + [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(267), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(270), + [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2414), + [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(696), + [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(744), + [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1768), + [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(262), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(264), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2682), + [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2683), + [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2711), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2716), + [3225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(734), + [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), + [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(296), + [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(299), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2423), + [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [3278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), + [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), + [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2006), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(292), + [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(293), + [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(294), + [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2700), + [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2701), + [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2674), + [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2675), + [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2604), + [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), + [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(741), + [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(741), + [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(703), + [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1973), + [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(327), + [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(13), + [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2432), + [3372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [3378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [3381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), + [3387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [3393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(323), + [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2718), + [3408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2719), + [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), + [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2732), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), + [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1330), + [3428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [3431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [3434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [3440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(687), + [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), + [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [3452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [3455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2442), + [3467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(688), + [3470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [3473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), + [3476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), + [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), + [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), + [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [3494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(353), + [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [3500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2736), + [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2737), + [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), + [3509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), + [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2608), + [3515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2520), + [3518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(705), + [3527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(705), + [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(706), + [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1986), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(726), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2394), + [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), + [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1979), + [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2798), + [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2799), + [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), + [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), + [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(760), + [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(760), + [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [3628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(774), + [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(300), + [3640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [3646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2440), + [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(735), + [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), + [3664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), + [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1784), + [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), + [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [3679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [3688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2787), + [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2754), + [3694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2730), + [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), + [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2553), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(891), + [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(721), + [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(721), + [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [3723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(689), + [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1999), + [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(767), + [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(60), + [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(61), + [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [3741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [3759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1785), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [3774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2795), + [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2652), + [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), + [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2686), + [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2588), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), + [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [3807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(786), + [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(707), + [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2374), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1786), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2720), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2721), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), + [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2594), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [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(1348), + [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(765), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), + [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(778), + [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(91), + [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(92), + [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), + [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(779), + [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), + [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), + [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), + [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(87), + [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), + [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2748), + [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2654), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), + [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2590), + [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2591), + [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(1446), + [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(776), + [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(777), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1989), + [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(787), + [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(122), + [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), + [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1763), + [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), + [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2679), + [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), + [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), + [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2746), + [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), + [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), + [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(931), + [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(713), + [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(713), + [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), + [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2404), + [4130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [4133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(727), + [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [4139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), + [4145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), + [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), + [4166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2665), + [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2789), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2600), + [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, 10, 0), + [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, 10, 0), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, 10, 0), + [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, 10, 0), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, 30, 0), + [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, 30, 0), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, 10, 0), + [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, 10, 0), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, 30, 0), + [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, 30, 0), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 1, 10, 0), + [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 1, 10, 0), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 1, 10, 0), + [4215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 1, 10, 0), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 2, 0, 0), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 2, 0, 0), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, 10, 0), + [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 2, 10, 0), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, 0, 7), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, 0, 7), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, 30, 0), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, 30, 0), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, 10, 0), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, 10, 0), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, 30, 0), + [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, 30, 0), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, 10, 0), + [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, 10, 0), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, 30, 0), + [4249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, 30, 0), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, 10, 0), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, 10, 0), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, 30, 0), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, 30, 0), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 1, 0, 0), + [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 1, 0, 0), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 2, 0, 6), + [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 2, 0, 6), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 15), + [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 15), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 16), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 16), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 20), + [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 20), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 2, 0, 3), + [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 2, 0, 3), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 22), + [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language_attribute, 3, 1, 22), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), + [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 5, 0, 0), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 5, 0, 0), + [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 5, 0, 0), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), + [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 5, 0, 23), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 5, 0, 23), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 4, 0, 0), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strikeout, 2, 0, 0), + [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strikeout, 2, 0, 0), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), + [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 6, 0, 0), + [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 6, 0, 0), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), + [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), + [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 7, 0, 0), + [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 7, 0, 0), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1, 0, 0), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1, 0, 0), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 9, 10, 0), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 9, 10, 0), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 9, 30, 0), + [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 9, 30, 0), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backslash_escape, 1, 0, 0), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backslash_escape, 1, 0, 0), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 2, 0, 4), + [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 2, 0, 4), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_span, 2, 0, 0), + [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_span, 2, 0, 0), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1, 0, 0), + [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1, 0, 0), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 1, 0, 1), + [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 1, 0, 1), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 2, 0, 5), + [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 2, 0, 5), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_span, 2, 0, 0), + [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_span, 2, 0, 0), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 2, 0, 0), + [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 2, 0, 0), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 2, 0, 0), + [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 2, 0, 0), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 0), + [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 0), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 2), + [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 2), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 2, 0, 0), + [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 2, 0, 0), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, 0, 0), + [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, 0, 0), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), + [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 2, 0, 0), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 2, 0, 0), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2, 0, 0), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2, 0, 0), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 2, 10, 0), + [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 2, 10, 0), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, 0, 0), + [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, 0, 0), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, 1, 0), + [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, 1, 0), + [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, 1, 0), + [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, 1, 0), + [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strikeout, 3, 0, 0), + [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strikeout, 3, 0, 0), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_span, 3, 0, 8), + [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_span, 3, 0, 8), + [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_span, 3, 0, 0), + [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_span, 3, 0, 0), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 3, 0, 0), + [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 3, 0, 0), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, 0, 0), + [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, 0, 0), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 9), + [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 9), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 10), + [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 10), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, 2, 0), + [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, 2, 0), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, 2, 0), + [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, 2, 0), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 3, 10, 0), + [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text, 3, 10, 0), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, 0, 11), + [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, 0, 11), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), + [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 0), + [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 0), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 12), + [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 12), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 13), + [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 13), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 14), + [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 14), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_reference, 3, 0, 17), + [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_reference, 3, 0, 17), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 4, 0, 7), + [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 4, 0, 7), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 4, 1, 0), + [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 4, 1, 0), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 4, 1, 0), + [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 4, 1, 0), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), + [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 19), + [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 19), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 21), + [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 21), + [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), + [4741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_attribute, 3, 0, 0), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1787), + [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1794), + [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1797), + [4840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1797), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), SHIFT(1792), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1815), + [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1789), + [4926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1793), + [4929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1793), + [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1798), + [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT(1810), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1815), + [4947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1744), + [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1792), + [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1792), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), + [4958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1794), + [4961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1797), + [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), SHIFT_REPEAT(1797), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, 10, 0), + [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, 10, 0), + [4977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1815), + [4980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1789), + [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1793), + [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1793), + [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1798), + [4992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT(1810), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), + [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1815), + [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), + [5013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), + [5018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1794), + [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [5027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, 10, 0), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, 10, 0), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, 10, 0), + [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, 10, 0), + [5050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1815), + [5053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1755), + [5056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1793), + [5059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1793), + [5062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), SHIFT_REPEAT(1798), + [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), + [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1815), + [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1757), + [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1813), + [5078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1813), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), + [5083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1794), + [5086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1797), + [5089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), SHIFT_REPEAT(1797), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), + [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), + [5140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1794), + [5143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [5146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), + [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), + [5155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1829), + [5158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1829), + [5161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2, 0, 0), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1815), + [5183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1780), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), + [5188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1827), + [5191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1827), + [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [5197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), SHIFT_REPEAT(2645), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [5217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), + [5220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat1, 1, 0, 0), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), + [5228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), + [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [5245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), SHIFT_REPEAT(2645), + [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(sym_link_title, 2, 0, 0), + [5251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(sym_link_title, 2, 0, 0), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [5260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), + [5263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1, 0, 0), REDUCE(aux_sym_link_title_repeat2, 1, 0, 0), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), + [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), + [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), REDUCE(sym_link_title, 2, 0, 0), + [5275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2, 0, 0), REDUCE(sym_link_title, 2, 0, 0), + [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3, 0, 0), + [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3, 0, 0), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [5296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1, 0, 0), SHIFT_REPEAT(2645), + [5299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1836), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [5304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1836), + [5307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1834), + [5310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(1806), + [5313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), + [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [5318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), + [5321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), + [5324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), + [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3, 0, 0), + [5329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3, 0, 0), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3, 0, 0), + [5343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3, 0, 0), + [5345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), + [5348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), + [5351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), + [5354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), + [5357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2, 0, 0), + [5359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2, 0, 0), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [5363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), + [5366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2, 0, 0), REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), + [5369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2, 0, 0), + [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_text_base, 1, 0, 0), + [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_text_base, 1, 0, 0), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1, 0, 0), + [5379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1, 0, 0), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3, 0, 0), + [5385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3, 0, 0), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 1, 0, 0), + [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 1, 0, 0), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 1, 0, 0), + [5399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 1, 0, 0), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2, 0, 0), + [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2, 0, 0), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 1, 0, 0), + [5411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 1, 0, 0), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_text_base, 2, 0, 0), + [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_text_base, 2, 0, 0), + [5419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [5421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), + [5794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), + [5870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2146), + [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2053), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 2, 0, 0), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_latex_span_repeat1, 1, 0, 0), + [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_latex_span_repeat1, 1, 0, 0), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(2333), + [6075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(2373), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [6118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [6148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(2618), + [6151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(2618), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), + [6194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), + [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2, 0, 0), + [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2, 0, 0), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [6202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 0), SHIFT(2002), + [6205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__shortcode_value, 1, 0, 0), SHIFT(2002), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3, 0, 0), + [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3, 0, 0), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), + [6218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), + [6220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), + [6223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), + [6226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(2002), + [6229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(2002), + [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), + [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), + [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), + [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), + [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), + [6248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), + [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [6306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [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(997), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 3, 0, 0), + [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 3, 0, 0), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_string, 1, 0, 0), + [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_string, 1, 0, 0), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 4, 0, 0), + [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 4, 0, 0), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_keyword_param, 5, 0, 0), + [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_keyword_param, 5, 0, 0), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), + [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), + [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(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), + [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6528] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, 0, 18), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [6714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, 30, 0), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), }; enum ts_external_scanner_symbol_identifiers { @@ -186758,7 +184895,6 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [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, @@ -186773,10 +184909,10 @@ 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__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, @@ -186794,8 +184930,6 @@ 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, @@ -186816,8 +184950,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__emphasis_close_underscore] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__emphasis_close_star] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, @@ -186838,9 +184971,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_punctuation] = 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, @@ -186860,8 +184992,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_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, @@ -186875,18 +185007,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, }, [9] = { [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__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, @@ -186898,19 +185029,17 @@ 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, }, [10] = { [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__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__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, @@ -186926,14 +185055,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__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, @@ -186948,13 +185076,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_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, @@ -186964,13 +185090,13 @@ 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, }, [13] = { [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, @@ -186986,15 +185112,18 @@ 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, }, [14] = { [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__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, @@ -187011,13 +185140,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_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, [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, @@ -187032,13 +185162,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__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, + [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, @@ -187053,11 +185184,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__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, @@ -187074,12 +185206,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_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__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, @@ -187095,13 +185228,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__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, @@ -187116,6 +185250,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_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, @@ -187130,14 +185266,15 @@ 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, }, [21] = { [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__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, @@ -187152,14 +185289,14 @@ 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, }, [22] = { [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__strikeout_close] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, @@ -187179,13 +185316,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_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__single_quote_close] = 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, @@ -187206,8 +185343,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, @@ -187223,10 +185360,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__single_quote_close] = true, [ts_external_token__double_quote_open] = true, [ts_external_token__superscript_open] = true, [ts_external_token__subscript_open] = true, @@ -187239,15 +185377,14 @@ 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, }, [26] = { [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__strikeout_close] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, [ts_external_token__double_quote_open] = true, @@ -187267,7 +185404,6 @@ 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__last_token_whitespace] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, @@ -187283,20 +185419,20 @@ 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, }, [28] = { [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, @@ -187306,6 +185442,7 @@ 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, @@ -187315,6 +185452,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, @@ -187326,7 +185464,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, }, [30] = { @@ -187339,7 +185476,6 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [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, @@ -187350,13 +185486,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, }, [31] = { [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__last_token_punctuation] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__latex_span_start] = true, [ts_external_token__single_quote_open] = true, @@ -187371,6 +185507,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, }, [32] = { @@ -187384,22 +185521,22 @@ 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, }, [38] = { - [ts_external_token__shortcode_close_escaped] = true, [ts_external_token__shortcode_open] = true, + [ts_external_token__shortcode_close] = true, }, [39] = { + [ts_external_token__shortcode_close_escaped] = true, [ts_external_token__shortcode_open] = true, - [ts_external_token__shortcode_close] = true, }, [40] = { [ts_external_token__last_token_whitespace] = true, @@ -187423,18 +185560,18 @@ static const bool ts_external_scanner_states[51][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__latex_span_close] = true, }, [45] = { + [ts_external_token__last_token_whitespace] = true, [ts_external_token__shortcode_close_escaped] = true, }, [46] = { - [ts_external_token__shortcode_close] = true, + [ts_external_token__shortcode_close_escaped] = true, }, [47] = { - [ts_external_token__last_token_whitespace] = true, [ts_external_token__shortcode_close] = true, }, [48] = { [ts_external_token__last_token_whitespace] = true, - [ts_external_token__shortcode_close_escaped] = true, + [ts_external_token__shortcode_close] = true, }, [49] = { [ts_external_token__trigger_error] = true,